From 6d7eeb89dc29ebcfe0279d6ba20b978eaba6ad1d Mon Sep 17 00:00:00 2001 From: SoftFever Date: Sat, 27 Jun 2026 20:11:25 +0800 Subject: [PATCH] profiles: deterministic setting_id from vendor/type/name (#14432) * profiles: enforce globally-unique, per-vendor-namespaced setting_id Many non-Bambu vendors copied Bambu's generic setting_ids (GFSA04 alone appeared in 1557 files), so setting_id was not globally unique. This namespaces every vendor's ids and reserves Bambu/OrcaFilamentLibrary space. - Reserve "G*" (Bambu) and "O*" (OrcaFilamentLibrary) id spaces. - Assign each other vendor a 2-char prefix (first+last letter, collision resolved) and renumber every instantiated preset to . - Strip setting_id from base profiles (instantiation:false) per Bambu's convention; assign one to instantiated presets that lacked it. - Remove the pre-existing misspelled "settings_id" key (91 files). - filament_id is left untouched (it is a per-material id). - Add one-time migration script scripts/assign_vendor_setting_ids.py with a persisted registry resources/profiles/vendor_prefixes.json. Re-runs freeze existing ids; only new vendors/profiles get new ids. - Bump version in each changed vendor index file. - Extend scripts/orca_extra_profile_check.py with a CI guard: global uniqueness, in-namespace, no base setting_id, no gaps, no settings_id typo. 7425 profile files changed across 61 vendors; 0 cross-vendor collisions; validator clean; migration idempotent. BBL and OrcaFilamentLibrary id spaces untouched. * profiles: add setting_id authoring guide for new vendors / profiles * profiles: drop in-repo README; setting_id guide now lives in the wiki * profiles: derive setting_id deterministically from vendor/type/name * bump profile version --- .gitignore | 5 +- resources/profiles/Afinia.json | 2 +- .../profiles/Afinia/filament/Afinia ABS+.json | 2 +- .../Afinia/filament/Afinia ABS+@HS.json | 2 +- .../profiles/Afinia/filament/Afinia ABS.json | 2 +- .../Afinia/filament/Afinia ABS@HS.json | 2 +- .../profiles/Afinia/filament/Afinia PLA.json | 2 +- .../Afinia/filament/Afinia PLA@HS.json | 2 +- .../profiles/Afinia/filament/Afinia TPU.json | 1 + .../Afinia/filament/Afinia TPU@HS.json | 1 + .../Afinia/filament/Afinia Value ABS.json | 2 +- .../Afinia/filament/Afinia Value ABS@HS.json | 2 +- .../Afinia/filament/Afinia Value PLA.json | 2 +- .../Afinia/filament/Afinia Value PLA@HS.json | 2 +- .../machine/Afinia H+1(HS) 0.4 nozzle.json | 2 +- .../machine/Afinia H+1(HS) 0.6 nozzle.json | 2 +- .../process/0.12mm Fine @Afinia H+1(HS).json | 2 +- .../0.16mm Optimal @Afinia H+1(HS).json | 2 +- ....18mm Fine @Afinia H+1(HS) 0.6 nozzle.json | 2 +- .../0.20mm Standard @Afinia H+1(HS).json | 2 +- .../process/0.24mm Draft @Afinia H+1(HS).json | 2 +- ...m Standard @Afinia H+1(HS) 0.6 nozzle.json | 2 +- .../0.28mm Extra Draft @Afinia H+1(HS).json | 2 +- ...m Standard @Afinia H+1(HS) 0.6 nozzle.json | 2 +- ...m Strength @Afinia H+1(HS) 0.6 nozzle.json | 2 +- ...36mm Draft @Afinia H+1(HS) 0.6 nozzle.json | 2 +- ...xtra Draft @Afinia H+1(HS) 0.6 nozzle.json | 2 +- resources/profiles/Anker.json | 2 +- .../Anker Generic ABS 0.2 nozzle.json | 2 +- .../Anker Generic ABS 0.25 nozzle.json | 2 +- .../Anker/filament/Anker Generic ABS.json | 2 +- .../Anker Generic ASA 0.2 nozzle.json | 2 +- .../Anker Generic ASA 0.25 nozzle.json | 2 +- .../Anker/filament/Anker Generic ASA.json | 2 +- .../filament/Anker Generic PA 0.2 nozzle.json | 2 +- .../Anker Generic PA 0.25 nozzle.json | 2 +- .../Anker/filament/Anker Generic PA-CF.json | 2 +- .../Anker/filament/Anker Generic PA.json | 2 +- .../filament/Anker Generic PC 0.2 nozzle.json | 2 +- .../Anker Generic PC 0.25 nozzle.json | 2 +- .../Anker/filament/Anker Generic PC.json | 2 +- .../Anker Generic PETG 0.2 nozzle.json | 2 +- .../Anker Generic PETG 0.25 nozzle.json | 2 +- .../Anker/filament/Anker Generic PETG-CF.json | 2 +- .../Anker/filament/Anker Generic PETG.json | 2 +- .../Anker Generic PLA 0.2 nozzle.json | 2 +- .../Anker Generic PLA 0.25 nozzle.json | 2 +- .../Anker Generic PLA Silk 0.2 nozzle.json | 2 +- .../Anker Generic PLA Silk 0.25 nozzle.json | 2 +- .../filament/Anker Generic PLA Silk.json | 2 +- .../Anker Generic PLA+ 0.2 nozzle.json | 2 +- .../Anker Generic PLA+ 0.25 nozzle.json | 2 +- .../Anker/filament/Anker Generic PLA+.json | 2 +- .../Anker/filament/Anker Generic PLA-CF.json | 2 +- .../Anker/filament/Anker Generic PLA.json | 2 +- .../Anker/filament/Anker Generic PVA.json | 2 +- .../Anker/filament/Anker Generic TPU.json | 2 +- .../Anker/machine/Anker M5 0.2 nozzle.json | 2 +- .../Anker/machine/Anker M5 0.25 nozzle.json | 2 +- .../Anker/machine/Anker M5 0.4 nozzle.json | 2 +- .../Anker/machine/Anker M5 0.6 nozzle.json | 2 +- .../Anker M5 All-Metal 0.2 nozzle.json | 2 +- .../Anker M5 All-Metal 0.25 nozzle.json | 2 +- .../Anker M5 All-Metal 0.4 nozzle.json | 2 +- .../Anker M5 All-Metal 0.6 nozzle.json | 2 +- .../Anker/machine/Anker M5C 0.2 nozzle.json | 2 +- .../Anker/machine/Anker M5C 0.25 nozzle.json | 2 +- .../Anker/machine/Anker M5C 0.4 nozzle.json | 2 +- .../Anker/machine/Anker M5C 0.6 nozzle.json | 2 +- .../0.05mm Optimal 0.2 nozzle @Anker.json | 2 +- .../0.05mm Optimal 0.25 nozzle @Anker.json | 2 +- .../process/0.05mm Ultradetail @Anker.json | 2 +- .../Anker/process/0.10mm Detail @Anker.json | 2 +- .../0.10mm Standard 0.2 nozzle @Anker.json | 2 +- .../0.10mm Standard 0.25 nozzle @Anker.json | 2 +- .../0.15mm Detail 0.6 nozzle @Anker.json | 2 +- .../0.15mm Draft 0.2 nozzle @Anker.json | 2 +- .../0.15mm Draft 0.25 nozzle @Anker.json | 2 +- .../Anker/process/0.15mm Fast @Anker.json | 2 +- .../Anker/process/0.15mm Optimal @Anker.json | 2 +- .../Anker/process/0.20mm Fast @Anker.json | 2 +- .../0.20mm Optimal 0.6 nozzle @Anker.json | 2 +- .../Anker/process/0.20mm Standard @Anker.json | 2 +- .../Anker/process/0.25mm Draft @Anker.json | 2 +- .../Anker/process/0.25mm Fast @Anker.json | 2 +- .../0.30mm Standard 0.6mm nozzle @Anker.json | 2 +- .../process/0.30mm Superdraft @Anker.json | 2 +- .../0.35mm Draft 0.6mm nozzle @Anker.json | 2 +- ...0.40mm Superdraft 0.6mm nozzle @Anker.json | 2 +- resources/profiles/Anycubic.json | 2 +- ... ABS @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ... ABS @Anycubic Kobra 3 Max 0.6 nozzle.json | 2 +- ... ABS @Anycubic Kobra 3 Max 0.8 nozzle.json | 2 +- ...bic ABS @Anycubic Kobra S1 0.4 nozzle.json | 2 +- ...BS @Anycubic Kobra S1 Max 0.25 nozzle.json | 2 +- ...ABS @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...ABS @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...ABS @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...ubic ABS @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...ubic ASA @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ... ASA @Anycubic Kobra 3 Max 0.6 nozzle.json | 2 +- ... ASA @Anycubic Kobra 3 Max 0.8 nozzle.json | 2 +- ...bic ASA @Anycubic Kobra S1 0.4 nozzle.json | 2 +- ...SA @Anycubic Kobra S1 Max 0.25 nozzle.json | 2 +- ...ASA @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...ASA @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...ASA @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...ubic ASA @Anycubic Kobra X 0.4 nozzle.json | 2 +- .../filament/Anycubic Generic ABS.json | 2 +- .../filament/Anycubic Generic ASA.json | 2 +- .../filament/Anycubic Generic PA-CF.json | 2 +- .../filament/Anycubic Generic PA.json | 2 +- .../filament/Anycubic Generic PC.json | 2 +- .../filament/Anycubic Generic PETG.json | 2 +- .../filament/Anycubic Generic PLA-CF.json | 2 +- .../filament/Anycubic Generic PLA.json | 2 +- .../filament/Anycubic Generic PVA.json | 2 +- .../filament/Anycubic Generic TPU.json | 2 +- ... PA @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ... PA @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ... PA @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ... PC @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ... PC @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ... PC @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...-GF @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...-GF @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...-GF @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ... 95A @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...EBA @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...EBA @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...EBA @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...bic PETG @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...PETG @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...PETG @Anycubic Kobra 3 Max 0.6 nozzle.json | 2 +- ...PETG @Anycubic Kobra 3 Max 0.8 nozzle.json | 2 +- ...ic PETG @Anycubic Kobra S1 0.4 nozzle.json | 2 +- ...TG @Anycubic Kobra S1 Max 0.25 nozzle.json | 2 +- ...ETG @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...ETG @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...ETG @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...bic PETG @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ... PLA @Anycubic Kobra 2 Max 0.4 nozzle.json | 2 +- ... PLA @Anycubic Kobra 2 Neo 0.4 nozzle.json | 2 +- ...PLA @Anycubic Kobra 2 Plus 0.4 nozzle.json | 2 +- ... PLA @Anycubic Kobra 2 Pro 0.4 nozzle.json | 2 +- ...ubic PLA @Anycubic Kobra 3 0.2 nozzle.json | 2 +- ...ubic PLA @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...ubic PLA @Anycubic Kobra 3 0.6 nozzle.json | 2 +- ...ubic PLA @Anycubic Kobra 3 0.8 nozzle.json | 2 +- ... PLA @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ... PLA @Anycubic Kobra 3 Max 0.6 nozzle.json | 2 +- ... PLA @Anycubic Kobra 3 Max 0.8 nozzle.json | 2 +- ...ic PLA @Anycubic Kobra Neo 0.4 nozzle.json | 2 +- ...bic PLA @Anycubic Kobra S1 0.4 nozzle.json | 2 +- ...LA @Anycubic Kobra S1 Max 0.25 nozzle.json | 2 +- ...PLA @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...PLA @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...PLA @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...ubic PLA @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...PLA Glow @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...low @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...low @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...low @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...PLA Glow @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...gh Speed @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...peed @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...h Speed @Anycubic Kobra S1 0.4 nozzle.json | 2 +- ...eed @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...eed @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...eed @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...gh Speed @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...nous @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...LA Matte @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...atte @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...tte @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...tte @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...tte @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...LA Matte @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...c PLA SE @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...Silk @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...LA Silk @Anycubic Kobra S1 0.4 nozzle.json | 2 +- ...ilk @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...ilk @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...ilk @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...PLA Silk @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...PLA Slik @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...ent @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...bic PLA+ @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...PLA+ @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...ic PLA+ @Anycubic Kobra S1 0.4 nozzle.json | 2 +- ...LA+ @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...LA+ @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...LA+ @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...bic PLA+ @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...-CF @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...PVA @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...PVA @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...PVA @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...ubic PVA @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...95A @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...95A @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...95A @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ... TPU 95A @Anycubic Kobra X 0.4 nozzle.json | 2 +- ... TPU @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ... TPU @Anycubic Kobra 3 Max 0.6 nozzle.json | 2 +- ... TPU @Anycubic Kobra 3 Max 0.8 nozzle.json | 2 +- ...bic TPU @Anycubic Kobra S1 0.4 nozzle.json | 2 +- ...ACE @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...ACE @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...ACE @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ... for ACE @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...eric ABS @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...ETG @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...ric PETG @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...asic @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...eric TPU @Anycubic Kobra 3 0.4 nozzle.json | 2 +- .../Fiberon PA6-CF20 @Anycubic Kobra S1.json | 2 +- .../Panchroma PLA @Anycubic Kobra S1.json | 2 +- .../Polymaker PLA Pro @Anycubic Kobra S1.json | 2 +- ...r PLA Pro Metallic @Anycubic Kobra S1.json | 2 +- .../machine/Anycubic 4Max Pro 0.4 nozzle.json | 2 +- .../Anycubic 4Max Pro 2 0.4 nozzle.json | 2 +- .../machine/Anycubic Chiron 0.4 nozzle.json | 2 +- .../machine/Anycubic Kobra 0.4 nozzle.json | 2 +- .../machine/Anycubic Kobra 2 0.4 nozzle.json | 2 +- .../Anycubic Kobra 2 Max 0.4 nozzle.json | 2 +- .../Anycubic Kobra 2 Neo 0.4 nozzle.json | 2 +- .../Anycubic Kobra 2 Plus 0.4 nozzle.json | 2 +- .../Anycubic Kobra 2 Pro 0.4 nozzle.json | 2 +- .../machine/Anycubic Kobra 3 0.2 nozzle.json | 2 +- .../machine/Anycubic Kobra 3 0.4 nozzle.json | 2 +- .../machine/Anycubic Kobra 3 0.6 nozzle.json | 2 +- .../machine/Anycubic Kobra 3 0.8 nozzle.json | 2 +- .../Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- .../Anycubic Kobra 3 Max 0.6 nozzle.json | 2 +- .../Anycubic Kobra 3 Max 0.8 nozzle.json | 2 +- .../Anycubic Kobra Max 0.4 nozzle.json | 2 +- .../Anycubic Kobra Neo 0.4 nozzle.json | 2 +- .../Anycubic Kobra Plus 0.4 nozzle.json | 2 +- .../machine/Anycubic Kobra S1 0.4 nozzle.json | 2 +- .../Anycubic Kobra S1 Max 0.25 nozzle.json | 2 +- .../Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- .../Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- .../Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- .../machine/Anycubic Kobra X 0.4 nozzle.json | 2 +- .../machine/Anycubic Predator 0.4 nozzle.json | 2 +- .../machine/Anycubic Vyper 0.4 nozzle.json | 2 +- .../Anycubic i3 Mega S 0.4 nozzle.json | 2 +- ...rd @Anycubic Kobra S1 Max 0.25 nozzle.json | 2 +- ...ghDetail @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...rd @Anycubic Kobra S1 Max 0.25 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...Standard @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...m Detail @Anycubic Kobra 3 0.2 nozzle.json | 2 +- ...rd @Anycubic Kobra S1 Max 0.25 nozzle.json | 2 +- ...tail @Anycubic Kobra 2 Neo 0.4 nozzle.json | 2 +- ...m Detail @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...Detail @Anycubic Kobra Neo 0.4 nozzle.json | 2 +- ... Quality @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...rd @Anycubic Kobra S1 Max 0.25 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...Standard @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...rd @Anycubic Kobra S1 Max 0.25 nozzle.json | 2 +- .../0.15mm Optimal @Anycubic 4MaxPro2.json | 2 +- .../0.15mm Optimal @Anycubic Chiron.json | 2 +- .../0.15mm Optimal @Anycubic Kobra.json | 2 +- .../0.15mm Optimal @Anycubic Kobra2.json | 2 +- .../0.15mm Optimal @Anycubic KobraMax.json | 2 +- .../0.15mm Optimal @Anycubic KobraPlus.json | 2 +- .../0.15mm Optimal @Anycubic Vyper.json | 2 +- .../0.15mm Optimal @Anycubic i3MegaS.json | 2 +- ...ity @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ... Quality @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...imal @Anycubic Kobra 2 Pro 0.4 nozzle.json | 2 +- ... Optimal @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 2 Neo 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...andard @Anycubic Kobra Neo 0.4 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...Standard @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.6 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...ity @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ... Quality @Anycubic Kobra X 0.4 nozzle.json | 2 +- .../0.20mm Standard @Anycubic 4MaxPro.json | 2 +- .../0.20mm Standard @Anycubic 4MaxPro2.json | 2 +- .../0.20mm Standard @Anycubic Chiron.json | 2 +- ...dard @Anycubic Kobra 2 Max 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 2 Neo 0.4 nozzle.json | 2 +- ...ard @Anycubic Kobra 2 Plus 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 2 Pro 0.4 nozzle.json | 2 +- ...Standard @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.8 nozzle.json | 2 +- ...andard @Anycubic Kobra Neo 0.4 nozzle.json | 2 +- ...tandard @Anycubic Kobra S1 0.4 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...Standard @Anycubic Kobra X 0.4 nozzle.json | 2 +- .../0.20mm Standard @Anycubic Kobra.json | 2 +- .../0.20mm Standard @Anycubic Kobra2.json | 2 +- .../0.20mm Standard @Anycubic KobraMax.json | 2 +- .../0.20mm Standard @Anycubic KobraPlus.json | 2 +- .../0.20mm Standard @Anycubic Predator.json | 2 +- .../0.20mm Standard @Anycubic Vyper.json | 2 +- .../0.20mm Standard @Anycubic i3MegaS.json | 2 +- ...mm Draft @Anycubic Kobra 3 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.6 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.8 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...Standard @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...raft @Anycubic Kobra 2 Pro 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 2 Neo 0.4 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.4 nozzle.json | 2 +- ...andard @Anycubic Kobra Neo 0.4 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.4 nozzle.json | 2 +- ...Standard @Anycubic Kobra X 0.4 nozzle.json | 2 +- ...perDraft @Anycubic Kobra 3 0.4 nozzle.json | 2 +- .../0.30mm Draft @Anycubic 4MaxPro2.json | 2 +- .../0.30mm Draft @Anycubic Chiron.json | 2 +- .../process/0.30mm Draft @Anycubic Kobra.json | 2 +- .../0.30mm Draft @Anycubic Kobra2.json | 2 +- .../0.30mm Draft @Anycubic KobraMax.json | 2 +- .../0.30mm Draft @Anycubic KobraPlus.json | 2 +- .../process/0.30mm Draft @Anycubic Vyper.json | 2 +- .../0.30mm Draft @Anycubic i3MegaS.json | 2 +- ...Standard @Anycubic Kobra 3 0.6 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.6 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.8 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.6 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...Standard @Anycubic Kobra 3 0.8 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.8 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.6 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.6 nozzle.json | 2 +- ...dard @Anycubic Kobra 3 Max 0.8 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- ...ard @Anycubic Kobra S1 Max 0.8 nozzle.json | 2 +- resources/profiles/Artillery.json | 2 +- ...lery ABS @Artillery M1 Pro 0.2 nozzle.json | 1 + ...lery ABS @Artillery M1 Pro 0.4 nozzle.json | 1 + ...lery ABS @Artillery M1 Pro 0.6 nozzle.json | 1 + ...lery ABS @Artillery M1 Pro 0.8 nozzle.json | 1 + .../Artillery/filament/Artillery ABS.json | 1 + ...lery ASA @Artillery M1 Pro 0.2 nozzle.json | 1 + ...lery ASA @Artillery M1 Pro 0.4 nozzle.json | 1 + ...lery ASA @Artillery M1 Pro 0.6 nozzle.json | 1 + ...lery ASA @Artillery M1 Pro 0.8 nozzle.json | 1 + .../filament/Artillery Generic ABS.json | 2 +- .../filament/Artillery Generic ASA.json | 2 +- .../filament/Artillery Generic PETG.json | 2 +- .../filament/Artillery Generic PLA-CF.json | 2 +- .../filament/Artillery Generic PLA.json | 2 +- .../filament/Artillery Generic TPU.json | 2 +- ...llery PA @Artillery M1 Pro 0.4 nozzle.json | 1 + ...ry PA-CF @Artillery M1 Pro 0.4 nozzle.json | 1 + ...llery PC @Artillery M1 Pro 0.4 nozzle.json | 1 + ...lery PET @Artillery M1 Pro 0.2 nozzle.json | 1 + ...lery PET @Artillery M1 Pro 0.4 nozzle.json | 1 + ...lery PET @Artillery M1 Pro 0.6 nozzle.json | 1 + ...lery PET @Artillery M1 Pro 0.8 nozzle.json | 1 + ...ery PETG @Artillery M1 Pro 0.2 nozzle.json | 1 + ...ery PETG @Artillery M1 Pro 0.4 nozzle.json | 1 + ...ery PETG @Artillery M1 Pro 0.6 nozzle.json | 1 + ...ery PETG @Artillery M1 Pro 0.8 nozzle.json | 1 + ...TG Basic @Artillery M1 Pro 0.2 nozzle.json | 1 + ...TG Basic @Artillery M1 Pro 0.4 nozzle.json | 1 + ...TG Basic @Artillery M1 Pro 0.6 nozzle.json | 1 + ...TG Basic @Artillery M1 Pro 0.8 nozzle.json | 1 + ... PETG-CF @Artillery M1 Pro 0.4 nozzle.json | 1 + .../Artillery/filament/Artillery PETG.json | 1 + ...lery PLA @Artillery M1 Pro 0.2 nozzle.json | 1 + ...lery PLA @Artillery M1 Pro 0.6 nozzle.json | 1 + ...lery PLA @Artillery M1 Pro 0.8 nozzle.json | 1 + ...LA Basic @Artillery M1 Pro 0.2 nozzle.json | 1 + ...LA Basic @Artillery M1 Pro 0.4 nozzle.json | 1 + ...LA Basic @Artillery M1 Pro 0.6 nozzle.json | 1 + ...LA Basic @Artillery M1 Pro 0.8 nozzle.json | 1 + ...A Basic+ @Artillery M1 Pro 0.4 nozzle.json | 1 + .../filament/Artillery PLA Basic.json | 1 + ...LA Matte @Artillery M1 Pro 0.2 nozzle.json | 1 + ...LA Matte @Artillery M1 Pro 0.4 nozzle.json | 1 + ...LA Matte @Artillery M1 Pro 0.6 nozzle.json | 1 + ...LA Matte @Artillery M1 Pro 0.8 nozzle.json | 1 + .../filament/Artillery PLA Matte.json | 1 + ...PLA Silk @Artillery M1 Pro 0.2 nozzle.json | 1 + ...PLA Silk @Artillery M1 Pro 0.4 nozzle.json | 1 + ...PLA Silk @Artillery M1 Pro 0.6 nozzle.json | 1 + ...PLA Silk @Artillery M1 Pro 0.8 nozzle.json | 1 + .../filament/Artillery PLA Silk.json | 1 + .../filament/Artillery PLA Tough.json | 1 + ...y PLA-CF @Artillery M1 Pro 0.4 nozzle.json | 1 + ...lery PVA @Artillery M1 Pro 0.2 nozzle.json | 1 + ...lery PVA @Artillery M1 Pro 0.4 nozzle.json | 1 + ...lery PVA @Artillery M1 Pro 0.6 nozzle.json | 1 + ...lery PVA @Artillery M1 Pro 0.8 nozzle.json | 1 + ...lery TPU @Artillery M1 Pro 0.4 nozzle.json | 1 + ...lery TPU @Artillery M1 Pro 0.6 nozzle.json | 1 + ...lery TPU @Artillery M1 Pro 0.8 nozzle.json | 1 + .../Artillery/filament/Artillery TPU.json | 1 + .../machine/Artillery Genius 0.4 nozzle.json | 2 +- .../Artillery Genius Pro 0.4 nozzle.json | 2 +- .../machine/Artillery Hornet 0.4 nozzle.json | 2 +- .../machine/Artillery M1 Pro 0.2 nozzle.json | 1 + .../machine/Artillery M1 Pro 0.4 nozzle.json | 2 +- .../machine/Artillery M1 Pro 0.6 nozzle.json | 1 + .../machine/Artillery M1 Pro 0.8 nozzle.json | 1 + .../Artillery Sidewinder X1 0.4 nozzle.json | 2 +- .../Artillery Sidewinder X2 0.4 nozzle.json | 2 +- ...tillery Sidewinder X3 Plus 0.4 nozzle.json | 2 +- ...rtillery Sidewinder X3 Pro 0.4 nozzle.json | 2 +- ...tillery Sidewinder X4 Plus 0.4 nozzle.json | 2 +- ...rtillery Sidewinder X4 Pro 0.4 nozzle.json | 2 +- ... Quality @Artillery M1 Pro 0.2 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.2 nozzle.json | 1 + ...tra Fine @Artillery M1 Pro 0.4 nozzle.json | 1 + ...tra Fine @Artillery X4Plus 0.4 nozzle.json | 1 + ...xtra Fine @Artillery X4Pro 0.4 nozzle.json | 1 + ... Quality @Artillery M1 Pro 0.2 nozzle.json | 1 + ... Quality @Artillery M1 Pro 0.4 nozzle.json | 1 + ... Quality @Artillery X4Plus 0.4 nozzle.json | 1 + ...h Quality @Artillery X4Pro 0.4 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.2 nozzle.json | 1 + ... Quality @Artillery M1 Pro 0.2 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.2 nozzle.json | 1 + ...2mm Fine @Artillery M1 Pro 0.4 nozzle.json | 1 + ...2mm Fine @Artillery X4Plus 0.4 nozzle.json | 1 + ...12mm Fine @Artillery X4Pro 0.4 nozzle.json | 1 + ... Quality @Artillery M1 Pro 0.4 nozzle.json | 1 + ... Quality @Artillery X4Plus 0.4 nozzle.json | 1 + ...h Quality @Artillery X4Pro 0.4 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.2 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.2 nozzle.json | 1 + .../0.15mm Optimal @Artillery Genius Pro.json | 2 +- .../0.15mm Optimal @Artillery Genius.json | 2 +- ... Quality @Artillery M1 Pro 0.4 nozzle.json | 1 + ... Quality @Artillery X4Plus 0.4 nozzle.json | 1 + ...h Quality @Artillery X4Pro 0.4 nozzle.json | 1 + .../0.16mm Optimal @Artillery Hornet.json | 2 +- ... Optimal @Artillery M1 Pro 0.4 nozzle.json | 1 + .../process/0.16mm Optimal @Artillery X1.json | 2 +- ... Optimal @Artillery X4Plus 0.4 nozzle.json | 1 + ...m Optimal @Artillery X4Pro 0.4 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.6 nozzle.json | 1 + ...0.20mm Standard @Artillery Genius Pro.json | 2 +- .../0.20mm Standard @Artillery Genius.json | 2 +- .../0.20mm Standard @Artillery Hornet.json | 2 +- ...Standard @Artillery M1 Pro 0.4 nozzle.json | 1 + .../0.20mm Standard @Artillery X1.json | 2 +- .../0.20mm Standard @Artillery X2.json | 2 +- ...Standard @Artillery X3Plus 0.4 nozzle.json | 1 + ... Standard @Artillery X3Pro 0.4 nozzle.json | 1 + ...Standard @Artillery X4Plus 0.4 nozzle.json | 1 + ... Standard @Artillery X4Pro 0.4 nozzle.json | 1 + ...Strength @Artillery M1 Pro 0.4 nozzle.json | 1 + ...Strength @Artillery X4Plus 0.4 nozzle.json | 1 + ... Strength @Artillery X4Pro 0.4 nozzle.json | 1 + .../0.24mm Draft @Artillery Hornet.json | 2 +- ...mm Draft @Artillery M1 Pro 0.4 nozzle.json | 1 + ...mm Draft @Artillery M1 Pro 0.6 nozzle.json | 1 + ...mm Draft @Artillery M1 Pro 0.8 nozzle.json | 1 + .../process/0.24mm Draft @Artillery X1.json | 2 +- ...mm Draft @Artillery X4Plus 0.4 nozzle.json | 1 + ...4mm Draft @Artillery X4Pro 0.4 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.6 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.8 nozzle.json | 1 + .../0.25mm Draft @Artillery Genius Pro.json | 2 +- .../0.25mm Draft @Artillery Genius.json | 2 +- ...ra Draft @Artillery M1 Pro 0.4 nozzle.json | 1 + ...ra Draft @Artillery X4Plus 0.4 nozzle.json | 1 + ...tra Draft @Artillery X4Pro 0.4 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.6 nozzle.json | 1 + ...Strength @Artillery M1 Pro 0.6 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.8 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.6 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.8 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.6 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.8 nozzle.json | 1 + ...Standard @Artillery M1 Pro 0.8 nozzle.json | 1 + resources/profiles/BBL.json | 2 +- .../BBL/filament/AliZ/AliZ PA-CF @P1-X1.json | 2 +- .../BBL/filament/AliZ/AliZ PETG @P1-X1.json | 2 +- .../filament/AliZ/AliZ PETG-CF @P1-X1.json | 2 +- .../filament/AliZ/AliZ PETG-Metal @P1-X1.json | 2 +- .../BBL/filament/AliZ/AliZ PLA @P1-X1.json | 2 +- resources/profiles/BIQU.json | 2 +- .../BIQU/machine/BIQU B1 (0.4 nozzle).json | 2 +- .../BIQU/machine/BIQU BX (0.4 nozzle).json | 2 +- .../machine/BIQU Hurakan (0.4 nozzle).json | 2 +- .../0.12mm Fine @BIQU B1 (0.4 nozzle).json | 2 +- .../0.12mm Fine @BIQU BX (0.4 nozzle).json | 2 +- ....12mm Fine @BIQU Hurakan (0.4 nozzle).json | 2 +- .../0.15mm Optimal @BIQU B1 (0.4 nozzle).json | 2 +- .../0.15mm Optimal @BIQU BX (0.4 nozzle).json | 2 +- ...mm Optimal @BIQU Hurakan (0.4 nozzle).json | 2 +- ...0.20mm Standard @BIQU B1 (0.4 nozzle).json | 2 +- ...0.20mm Standard @BIQU BX (0.4 nozzle).json | 2 +- ...m Standard @BIQU Hurakan (0.4 nozzle).json | 2 +- .../0.24mm Draft @BIQU B1 (0.4 nozzle).json | 2 +- .../0.24mm Draft @BIQU BX (0.4 nozzle).json | 2 +- ...24mm Draft @BIQU Hurakan (0.4 nozzle).json | 2 +- resources/profiles/Blocks.json | 2 +- .../Blocks/filament/Blocks Generic ABS.json | 2 +- .../filament/Blocks Generic ASA-CF.json | 2 +- .../Blocks/filament/Blocks Generic ASA.json | 2 +- .../Blocks/filament/Blocks Generic PA-CF.json | 2 +- .../Blocks/filament/Blocks Generic PA.json | 2 +- .../Blocks/filament/Blocks Generic PC.json | 2 +- .../Blocks/filament/Blocks Generic PETG.json | 2 +- .../filament/Blocks Generic PLA-CF.json | 2 +- .../Blocks/filament/Blocks Generic PLA.json | 2 +- .../Blocks/filament/Blocks Generic PVA.json | 2 +- .../Blocks/filament/Blocks Generic TPU.json | 2 +- .../machine/BLOCKS Pro S100 0.4 nozzle.json | 2 +- .../machine/BLOCKS Pro S100 0.6 nozzle.json | 2 +- .../machine/BLOCKS Pro S100 0.8 nozzle.json | 2 +- .../machine/BLOCKS Pro S100 1.0 nozzle.json | 2 +- .../machine/BLOCKS Pro S100 1.2 nozzle.json | 2 +- .../machine/BLOCKS RD50 V2 0.4 nozzle.json | 2 +- .../machine/BLOCKS RD50 V2 0.6 nozzle.json | 2 +- .../machine/BLOCKS RD50 V2 0.8 nozzle.json | 2 +- .../machine/BLOCKS RF50 0.4 nozzle.json | 2 +- .../machine/BLOCKS RF50 0.6 nozzle.json | 2 +- .../machine/BLOCKS RF50 0.8 nozzle.json | 2 +- ....12mm Fine 0.4 nozzle @Blocks_RD50_V2.json | 2 +- .../0.12mm Fine 0.4 nozzle @Blocks_RF50.json | 2 +- ...mm Optimal 0.4 nozzle @Blocks_RD50_V2.json | 2 +- ....16mm Optimal 0.4 nozzle @Blocks_RF50.json | 2 +- ...mm Optimal 0.6 nozzle @Blocks_RD50_V2.json | 2 +- ....20mm Optimal 0.6 nozzle @Blocks_RF50.json | 2 +- .../0.20mm Standard 0.4 nozzle @Blocks.json | 2 +- ...m Standard 0.4 nozzle @Blocks_RD50_V2.json | 2 +- ...20mm Standard 0.4 nozzle @Blocks_RF50.json | 2 +- .../0.24mm Draft 0.4 nozzle @Blocks.json | 2 +- ...24mm Draft 0.4 nozzle @Blocks_RD50_V2.json | 2 +- .../0.24mm Draft 0.4 nozzle @Blocks_RF50.json | 2 +- ...m Standard 0.6 nozzle @Blocks_RD50_V2.json | 2 +- ...26mm Standard 0.6 nozzle @Blocks_RF50.json | 2 +- ...xtra Draft 0.4 nozzle @Blocks_RD50_V2.json | 2 +- ...m Extra Draft 0.4 nozzle @Blocks_RF50.json | 2 +- ...0.30mm Extra Draft 0.4 nozzle @Blocks.json | 2 +- .../0.30mm Optimal 0.8 nozzle @Blocks.json | 2 +- ...mm Optimal 0.8 nozzle @Blocks_RD50_V2.json | 2 +- ....30mm Optimal 0.8 nozzle @Blocks_RF50.json | 2 +- .../0.30mm Optimal 1.0 nozzle @Blocks.json | 2 +- .../0.30mm Standard 0.6 nozzle @Blocks.json | 2 +- ...32mm Draft 0.6 nozzle @Blocks_RD50_V2.json | 2 +- .../0.32mm Draft 0.6 nozzle @Blocks_RF50.json | 2 +- ...xtra Draft 0.6 nozzle @Blocks_RD50_V2.json | 2 +- ...m Extra Draft 0.6 nozzle @Blocks_RF50.json | 2 +- ...m Standard 0.8 nozzle @Blocks_RD50_V2.json | 2 +- ...38mm Standard 0.8 nozzle @Blocks_RF50.json | 2 +- .../0.40mm Draft 0.6 nozzle @Blocks.json | 2 +- .../0.40mm Standard 0.8 nozzle @Blocks.json | 2 +- ...46mm Draft 0.8 nozzle @Blocks_RD50_V2.json | 2 +- .../0.46mm Draft 0.8 nozzle @Blocks_RF50.json | 2 +- .../0.50mm Draft 0.8 nozzle @Blocks.json | 2 +- .../0.50mm Optimal 1.2 nozzle @Blocks.json | 2 +- .../0.50mm Standard 1.0 nozzle @Blocks.json | 2 +- ...xtra Draft 0.8 nozzle @Blocks_RD50_V2.json | 2 +- ...m Extra Draft 0.8 nozzle @Blocks_RF50.json | 2 +- .../0.60mm Draft 1.0 nozzle @Blocks.json | 2 +- .../0.60mm Standard 1.2 nozzle @Blocks.json | 2 +- .../0.70mm Draft 1.2 nozzle @Blocks.json | 2 +- ...0.70mm Extra Draft 1.0 nozzle @Blocks.json | 2 +- ...0.80mm Extra Draft 1.2 nozzle @Blocks.json | 2 +- resources/profiles/CONSTRUCT3D.json | 2 +- .../filament/C1 Generic High Flow PETG.json | 2 +- .../CONSTRUCT3D/filament/C1 Generic PETG.json | 2 +- .../CONSTRUCT3D/filament/C1 Generic PLA.json | 2 +- .../machine/Construct 1 0.4 nozzle.json | 2 +- .../machine/Construct 1 XL 0.6 nozzle.json | 2 +- .../process/0.14mm Quality @Construct 1.json | 2 +- .../0.20mm Quality @Construct 1 XL.json | 2 +- .../process/0.22mm Standard @Construct 1.json | 2 +- .../0.25mm Industrial @Construct 1.json | 2 +- .../process/0.30mm Draft @Construct 1.json | 2 +- .../0.30mm Industrial @Construct 1 XL.json | 2 +- .../0.30mm Standard @Construct 1 XL.json | 2 +- .../process/0.38mm Draft @Construct 1 XL.json | 2 +- resources/profiles/Chuanying.json | 2 +- ...uanying ABS @Chuanying X1 0.25 Nozzle.json | 2 +- ...uanying ASA @Chuanying X1 0.25 Nozzle.json | 2 +- .../filament/Chuanying Generic ABS.json | 2 +- .../filament/Chuanying Generic ASA.json | 2 +- .../filament/Chuanying Generic HIPS.json | 2 +- .../filament/Chuanying Generic HS PLA.json | 2 +- .../filament/Chuanying Generic PETG-CF10.json | 2 +- .../filament/Chuanying Generic PETG.json | 2 +- .../filament/Chuanying Generic PLA-CF10.json | 2 +- .../filament/Chuanying Generic PLA-Silk.json | 2 +- .../filament/Chuanying Generic PLA.json | 2 +- .../filament/Chuanying Generic PVA.json | 2 +- .../filament/Chuanying Generic TPU.json | 2 +- ...ying HS PLA @Chuanying X1 0.25 Nozzle.json | 2 +- ...anying PETG @Chuanying X1 0.25 Nozzle.json | 2 +- ...uanying PLA @Chuanying X1 0.25 Nozzle.json | 2 +- ...ng PLA-SILK @Chuanying X1 0.25 Nozzle.json | 2 +- .../machine/Chuanying X1 0.25 Nozzle.json | 2 +- .../machine/Chuanying X1 0.4 Nozzle.json | 2 +- .../machine/Chuanying X1 0.6 Nozzle.json | 2 +- .../machine/Chuanying X1 0.8 Nozzle.json | 2 +- ...mm Standard @Chuanying X1 0.25 Nozzle.json | 2 +- ...0mm Standard @Chuanying X1 0.4 Nozzle.json | 2 +- ...0mm Standard @Chuanying X1 0.6 Nozzle.json | 2 +- ...0mm Standard @Chuanying X1 0.8 Nozzle.json | 2 +- resources/profiles/Co Print.json | 2 +- .../filament/CoPrint Generic ABS.json | 2 +- .../filament/CoPrint Generic PETG.json | 2 +- .../filament/CoPrint Generic PLA.json | 2 +- .../filament/CoPrint Generic TPU.json | 2 +- ...hromaSet 0.4 nozzle - Ender-3 V3 Plus.json | 2 +- ...int ChromaSet 0.4 nozzle - Ender-3 V3.json | 2 +- .../Co Print ChromaSet 0.4 nozzle fast.json | 2 +- .../Co Print ChromaSet 0.4 nozzle.json | 2 +- .../0.2mm Fast @Co Print ChromaSet 0.4.json | 2 +- ....2mm Standard @Co Print ChromaSet 0.4.json | 2 +- resources/profiles/CoLiDo.json | 2 +- .../filament/CoLiDo ABS @CoLiDo SR1.json | 2 +- .../CoLiDo Generic ABS @CoLiDo DIY 4.0.json | 2 +- .../CoLiDo Generic ABS @CoLiDo X16.json | 2 +- .../CoLiDo Generic PETG @CoLiDo DIY 4.0.json | 2 +- .../CoLiDo Generic PETG @CoLiDo X16.json | 2 +- .../CoLiDo Generic PLA @CoLiDo DIY 4.0.json | 2 +- .../CoLiDo Generic PLA @CoLiDo X16.json | 2 +- .../CoLiDo Generic TPU @CoLiDo DIY 4.0.json | 2 +- .../CoLiDo Generic TPU @CoLiDo X16.json | 2 +- .../filament/CoLiDo PETG @CoLiDo SR1.json | 2 +- .../filament/CoLiDo PLA @CoLiDo SR1.json | 2 +- .../filament/CoLiDo PLA Silk @CoLiDo SR1.json | 2 +- .../CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json | 2 +- .../machine/CoLiDo 160 V2 0.4 nozzle.json | 2 +- .../machine/CoLiDo DIY 4.0 0.4 nozzle.json | 2 +- .../machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json | 2 +- .../CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json | 2 +- .../CoLiDo/machine/CoLiDo X16 0.4 nozzle.json | 2 +- .../0.08mm Extra Fine @CoLiDo 160 V2.json | 2 +- .../0.08mm Extra Fine @CoLiDo DIY 4.0.json | 2 +- .../0.08mm Extra Fine @CoLiDo SR1.json | 2 +- .../0.08mm Extra Fine @CoLiDo X16.json | 2 +- .../process/0.12mm Fine @CoLiDo 160 V2.json | 2 +- .../process/0.12mm Fine @CoLiDo DIY 4.0.json | 2 +- .../process/0.12mm Fine @CoLiDo SR1.json | 2 +- .../process/0.12mm Fine @CoLiDo X16.json | 2 +- .../0.15mm Optimal @CoLiDo 160 V2.json | 2 +- .../0.15mm Optimal @CoLiDo DIY 4.0.json | 2 +- .../process/0.15mm Optimal @CoLiDo SR1.json | 2 +- .../process/0.15mm Optimal @CoLiDo X16.json | 2 +- .../process/0.16mm Optimal @CoLiDo SR1.json | 2 +- .../0.20mm Standard @CoLiDo 160 V2.json | 2 +- .../0.20mm Standard @CoLiDo DIY 4.0 V2.json | 2 +- .../0.20mm Standard @CoLiDo DIY 4.0.json | 2 +- .../process/0.20mm Standard @CoLiDo SR1.json | 2 +- .../process/0.20mm Standard @CoLiDo X16.json | 2 +- .../process/0.24mm Draft @CoLiDo 160 V2.json | 2 +- .../process/0.24mm Draft @CoLiDo DIY 4.0.json | 2 +- .../process/0.24mm Draft @CoLiDo SR1.json | 2 +- .../process/0.24mm Draft @CoLiDo X16.json | 2 +- .../0.28mm Extra Draft @CoLiDo 160 V2.json | 2 +- .../0.28mm Extra Draft @CoLiDo DIY 4.0.json | 2 +- .../0.28mm Extra Draft @CoLiDo SR1.json | 2 +- .../0.28mm Extra Draft @CoLiDo X16.json | 2 +- .../process/0.32mm Standard @CoLiDo SR1.json | 2 +- resources/profiles/Comgrow.json | 2 +- .../Comgrow/filament/Comgrow Generic ABS.json | 2 +- .../filament/Comgrow Generic PETG.json | 2 +- .../Comgrow/filament/Comgrow Generic PLA.json | 2 +- .../Comgrow/filament/Comgrow T300 PLA.json | 2 +- .../machine/Comgrow T300 0.4 nozzle.json | 2 +- .../machine/Comgrow T500 0.4 nozzle.json | 2 +- .../machine/Comgrow T500 0.6 nozzle.json | 2 +- .../machine/Comgrow T500 0.8 nozzle.json | 2 +- .../0.16mm Opitmal @Comgrow T500 0.6.json | 2 +- .../0.16mm Optimal @Comgrow T500 0.4.json | 2 +- .../process/0.18mm Optimal @Comgrow T500.json | 2 +- ... Optimal @Comgrow T300 0.4 - official.json | 2 +- .../0.20mm Standard @Comgrow T500 0.4.json | 2 +- .../0.20mm Standard @Comgrow T500 0.6.json | 2 +- .../0.20mm Standard @Comgrow T500 1.0.json | 2 +- .../0.20mm Standard @Comgrow T500.json | 2 +- .../0.24mm Draft @Comgrow T500 0.4.json | 2 +- .../0.24mm Draft @Comgrow T500 0.6.json | 2 +- .../0.24mm Optimal @Comgrow T500 0.8.json | 2 +- .../0.28mm SuperDraft @Comgrow T500 0.4.json | 2 +- .../0.28mm SuperDraft @Comgrow T500 0.6.json | 2 +- .../0.32mm Standard @Comgrow T500 0.8.json | 2 +- .../0.40mm Draft @Comgrow T500 0.8.json | 2 +- .../0.48mm Draft @Comgrow T500 0.8.json | 2 +- .../0.56mm SuperDraft @Comgrow T500 0.8.json | 2 +- resources/profiles/Creality.json | 2 +- .../filament/CR-ABS @Ender-3 V4-all.json | 2 +- .../filament/CR-ABS @Ender-5 Max-all.json | 2 +- .../Creality/filament/CR-ABS @Hi-all.json | 2 +- .../filament/CR-ABS @K1 Max_CFS-C-all.json | 2 +- .../Creality/filament/CR-ABS @K1 SE-all.json | 2 +- .../filament/CR-ABS @K1 SE_CFS-C-all.json | 2 +- .../Creality/filament/CR-ABS @K1C-all.json | 2 +- .../filament/CR-ABS @K1C_CFS-C-all.json | 2 +- .../filament/CR-ABS @K1_CFS-C-all.json | 2 +- .../filament/CR-ABS @K2 Plus-all.json | 2 +- .../Creality/filament/CR-ABS @K2 Pro-all.json | 2 +- .../Creality/filament/CR-ABS @K2 SE-all.json | 2 +- .../Creality/filament/CR-ABS @K2-all.json | 2 +- .../filament/CR-Nylon @Ender-5 Max-all.json | 2 +- .../filament/CR-Nylon @K1 Max_CFS-C-all.json | 2 +- .../Creality/filament/CR-Nylon @K1C-all.json | 2 +- .../filament/CR-Nylon @K1C_CFS-C-all.json | 2 +- .../filament/CR-Nylon @K1_CFS-C-all.json | 2 +- .../filament/CR-Nylon @K2 Plus-all.json | 2 +- .../filament/CR-PETG @Ender-3 V4-all.json | 2 +- .../filament/CR-PETG @Ender-5 Max-all.json | 2 +- .../Creality/filament/CR-PETG @Hi-all.json | 2 +- .../filament/CR-PETG @K1 Max_CFS-C-all.json | 2 +- .../Creality/filament/CR-PETG @K1 SE-all.json | 2 +- .../filament/CR-PETG @K1 SE_CFS-C-all.json | 2 +- .../Creality/filament/CR-PETG @K1C-all.json | 2 +- .../filament/CR-PETG @K1C_CFS-C-all.json | 2 +- .../filament/CR-PETG @K1_CFS-C-all.json | 2 +- .../filament/CR-PETG @K2 Plus-all.json | 2 +- .../filament/CR-PETG @K2 Pro-all.json | 2 +- .../Creality/filament/CR-PETG @K2 SE-all.json | 2 +- .../Creality/filament/CR-PETG @K2-all.json | 2 +- .../filament/CR-PETG @SPARKX i7-all.json | 2 +- .../filament/CR-PLA @Ender-3 V4-all.json | 2 +- .../filament/CR-PLA @Ender-5 Max-all.json | 2 +- .../Creality/filament/CR-PLA @Hi-all.json | 2 +- .../filament/CR-PLA @K1 Max_CFS-C-all.json | 2 +- .../Creality/filament/CR-PLA @K1 SE-all.json | 2 +- .../filament/CR-PLA @K1 SE_CFS-C-all.json | 2 +- .../Creality/filament/CR-PLA @K1C-all.json | 2 +- .../filament/CR-PLA @K1C_CFS-C-all.json | 2 +- .../filament/CR-PLA @K1_CFS-C-all.json | 2 +- .../filament/CR-PLA @K2 Plus-all.json | 2 +- .../Creality/filament/CR-PLA @K2 Pro-all.json | 2 +- .../Creality/filament/CR-PLA @K2 SE-all.json | 2 +- .../Creality/filament/CR-PLA @K2-all.json | 2 +- .../filament/CR-PLA @SPARKX i7-all.json | 2 +- .../CR-PLA Carbon @K1 Max_CFS-C-all.json | 2 +- .../filament/CR-PLA Carbon @K1C-all.json | 2 +- .../CR-PLA Carbon @K1C_CFS-C-all.json | 2 +- .../filament/CR-PLA Carbon @K1_CFS-C-all.json | 2 +- .../filament/CR-PLA Carbon @K2 Plus-all.json | 2 +- .../CR-PLA Fluo @K1 Max_CFS-C-all.json | 2 +- .../filament/CR-PLA Fluo @K1C-all.json | 2 +- .../filament/CR-PLA Fluo @K1C_CFS-C-all.json | 2 +- .../filament/CR-PLA Fluo @K1_CFS-C-all.json | 2 +- .../filament/CR-PLA Fluo @K2 Plus-all.json | 2 +- .../filament/CR-PLA Fluo @K2 Pro-all.json | 2 +- .../filament/CR-PLA Fluo @K2-all.json | 2 +- .../filament/CR-PLA Fluo @SPARKX i7-all.json | 2 +- .../CR-PLA Matte @Ender-3 V4-all.json | 2 +- .../CR-PLA Matte @K1 Max_CFS-C-all.json | 2 +- .../filament/CR-PLA Matte @K1C-all.json | 2 +- .../filament/CR-PLA Matte @K1C_CFS-C-all.json | 2 +- .../filament/CR-PLA Matte @K1_CFS-C-all.json | 2 +- .../filament/CR-PLA Matte @K2 Plus-all.json | 2 +- .../filament/CR-PLA Matte @K2 Pro-all.json | 2 +- .../filament/CR-PLA Matte @K2-all.json | 2 +- .../filament/CR-PLA Matte @SPARKX i7-all.json | 2 +- .../filament/CR-Silk @Ender-3 V4-all.json | 2 +- .../filament/CR-Silk @Ender-5 Max-all.json | 2 +- .../Creality/filament/CR-Silk @Hi-all.json | 2 +- .../filament/CR-Silk @K1 Max_CFS-C-all.json | 2 +- .../Creality/filament/CR-Silk @K1 SE-all.json | 2 +- .../filament/CR-Silk @K1 SE_CFS-C-all.json | 2 +- .../Creality/filament/CR-Silk @K1C-all.json | 2 +- .../filament/CR-Silk @K1C_CFS-C-all.json | 2 +- .../filament/CR-Silk @K1_CFS-C-all.json | 2 +- .../filament/CR-Silk @K2 Plus-all.json | 2 +- .../filament/CR-Silk @K2 Pro-all.json | 2 +- .../Creality/filament/CR-Silk @K2 SE-all.json | 2 +- .../Creality/filament/CR-Silk @K2-all.json | 2 +- .../filament/CR-Silk @SPARKX i7-all.json | 2 +- .../filament/CR-TPU @K1 Max_CFS-C-all.json | 2 +- .../Creality/filament/CR-TPU @K1C-all.json | 2 +- .../filament/CR-TPU @K1C_CFS-C-all.json | 2 +- .../filament/CR-TPU @K1_CFS-C-all.json | 2 +- .../filament/CR-TPU @K2 Plus-all.json | 2 +- .../Creality/filament/CR-TPU @K2 Pro-all.json | 2 +- .../Creality/filament/CR-TPU @K2-all.json | 2 +- .../filament/CR-TPU @SPARKX i7-all.json | 2 +- .../filament/CR-Wood @K1 Max_CFS-C-all.json | 2 +- .../Creality/filament/CR-Wood @K1C-all.json | 2 +- .../filament/CR-Wood @K1C_CFS-C-all.json | 2 +- .../filament/CR-Wood @K1_CFS-C-all.json | 2 +- .../filament/CR-Wood @K2 Plus-all.json | 2 +- .../Creality Generic ABS @Ender-3V3-all.json | 2 +- .../Creality Generic ABS @Ender-5Max-all.json | 2 +- .../Creality Generic ABS @Hi-all.json | 2 +- .../Creality Generic ABS @K1-all.json | 2 +- .../Creality Generic ABS @K2-all.json | 2 +- .../filament/Creality Generic ABS.json | 2 +- .../Creality Generic ASA @Ender-3V3-all.json | 2 +- .../Creality Generic ASA @Ender-5Max-all.json | 2 +- .../Creality Generic ASA @Hi-all.json | 2 +- .../Creality Generic ASA @K1-all.json | 2 +- .../Creality Generic ASA @K2-all.json | 2 +- .../Creality Generic ASA-CF @Hi-all.json | 2 +- .../filament/Creality Generic ASA.json | 2 +- .../Creality Generic PA @Ender-5Max-all.json | 2 +- ...Creality Generic PA-CF @Ender-3V3-all.json | 2 +- .../Creality Generic PA-CF @K1-all.json | 2 +- .../Creality Generic PA-CF @K2-all.json | 2 +- .../filament/Creality Generic PA-CF.json | 2 +- .../filament/Creality Generic PC @K1-all.json | 2 +- .../Creality Generic PETG @Ender-3V3-all.json | 2 +- ...Creality Generic PETG @Ender-5Max-all.json | 2 +- .../Creality Generic PETG @Hi-all.json | 2 +- .../Creality Generic PETG @K1-all.json | 2 +- .../Creality Generic PETG @K2-all.json | 2 +- .../Creality Generic PETG-CF @Hi-all.json | 2 +- .../filament/Creality Generic PETG.json | 2 +- .../Creality Generic PLA @Ender-3V3-all.json | 2 +- .../Creality Generic PLA @Ender-5Max-all.json | 2 +- .../Creality Generic PLA @Hi-all.json | 2 +- .../Creality Generic PLA @K1-all.json | 2 +- .../Creality Generic PLA @K2-all.json | 2 +- ...Generic PLA High Speed @Ender-3V3-all.json | 2 +- ...eality Generic PLA High Speed @Hi-all.json | 2 +- ...eality Generic PLA High Speed @K1-all.json | 2 +- ...eality Generic PLA High Speed @K2-all.json | 2 +- ...lity Generic PLA Matte @Ender-3V3-all.json | 2 +- .../Creality Generic PLA Matte @Hi-all.json | 2 +- .../Creality Generic PLA Matte @K1-all.json | 2 +- .../Creality Generic PLA Matte @K2-all.json | 2 +- ...ality Generic PLA Silk @Ender-3V3-all.json | 2 +- .../Creality Generic PLA Silk @Hi-all.json | 2 +- .../Creality Generic PLA Silk @K1-all.json | 2 +- .../Creality Generic PLA Silk @K2-all.json | 2 +- .../Creality Generic PLA Wood @Hi-all.json | 2 +- .../Creality Generic PLA-CF @Hi-all.json | 2 +- .../Creality Generic PLA-CF @K1-all.json | 2 +- .../Creality Generic PLA-CF @K2-all.json | 2 +- .../filament/Creality Generic PLA-CF.json | 1 + .../filament/Creality Generic PLA.json | 2 +- .../Creality Generic TPU @Ender-3V3-all.json | 2 +- .../Creality Generic TPU @Ender-5Max-all.json | 2 +- .../Creality Generic TPU @Hi-all.json | 2 +- .../Creality Generic TPU @K1-all.json | 2 +- .../Creality Generic TPU @K2-all.json | 2 +- .../filament/Creality Generic TPU.json | 2 +- .../filament/Creality HF Generic PLA.json | 2 +- .../Creality HF Generic Speed PLA.json | 2 +- .../Creality Hyper ABS @Ender-5Max-all.json | 2 +- .../Creality Hyper PLA @Ender-5Max-all.json | 2 +- ...Creality Hyper PLA-CF @Ender-5Max-all.json | 2 +- .../Creality Silk PLA @Ender-5Max-all.json | 2 +- .../filament/EN-PLA+ @K1 Max_CFS-C-all.json | 2 +- .../Creality/filament/EN-PLA+ @K1C-all.json | 2 +- .../filament/EN-PLA+ @K1C_CFS-C-all.json | 2 +- .../filament/EN-PLA+ @K1_CFS-C-all.json | 2 +- .../filament/EN-PLA+ @K2 Plus-all.json | 2 +- .../filament/EN-PLA+ @K2 Pro-all.json | 2 +- .../Creality/filament/EN-PLA+ @K2-all.json | 2 +- .../filament/EN-PLA+ @SPARKX i7-all.json | 2 +- .../filament/ENDER FAST PLA @Hi-all.json | 2 +- .../filament/ENDER FAST PLA @K2 Plus-all.json | 2 +- .../filament/ENDER FAST PLA @K2 Pro-all.json | 2 +- .../filament/ENDER FAST PLA @K2-all.json | 2 +- .../ENDER FAST PLA @SPARKX i7-all.json | 2 +- .../filament/Ender-PLA @Ender-3 V4-all.json | 2 +- .../Creality/filament/Ender-PLA @Hi-all.json | 2 +- .../filament/Ender-PLA @K1 Max_CFS-C-all.json | 2 +- .../Creality/filament/Ender-PLA @K1C-all.json | 2 +- .../filament/Ender-PLA @K1C_CFS-C-all.json | 2 +- .../filament/Ender-PLA @K1_CFS-C-all.json | 2 +- .../filament/Ender-PLA @K2 Plus-all.json | 2 +- .../filament/Ender-PLA @K2 Pro-all.json | 2 +- .../Creality/filament/Ender-PLA @K2-all.json | 2 +- .../filament/Ender-PLA @SPARKX i7-all.json | 2 +- .../filament/Generic ABS @Ender-3 V4-all.json | 2 +- .../Generic ABS @Ender-5 Max-all.json | 2 +- .../filament/Generic ABS @Hi-all.json | 2 +- .../Generic ABS @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic ABS @K1 SE-all.json | 2 +- .../Generic ABS @K1 SE_CFS-C-all.json | 2 +- .../filament/Generic ABS @K1C-all.json | 2 +- .../filament/Generic ABS @K1C_CFS-C-all.json | 2 +- .../filament/Generic ABS @K1_CFS-C-all.json | 2 +- .../filament/Generic ABS @K2 Plus-all.json | 2 +- .../filament/Generic ABS @K2 Pro-all.json | 2 +- .../filament/Generic ABS @K2 SE-all.json | 2 +- .../filament/Generic ABS @K2-all.json | 2 +- .../Generic ASA @Ender-5 Max-all.json | 2 +- .../Generic ASA @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic ASA @K1 SE-all.json | 2 +- .../Generic ASA @K1 SE_CFS-C-all.json | 2 +- .../filament/Generic ASA @K1C-all.json | 2 +- .../filament/Generic ASA @K1C_CFS-C-all.json | 2 +- .../filament/Generic ASA @K1_CFS-C-all.json | 2 +- .../filament/Generic ASA @K2 Plus-all.json | 2 +- .../filament/Generic ASA @K2 Pro-all.json | 2 +- .../filament/Generic ASA @K2 SE-all.json | 2 +- .../filament/Generic ASA @K2-all.json | 2 +- .../filament/Generic ASA-CF @K2 Plus-all.json | 2 +- .../filament/Generic BVOH @Hi-all.json | 2 +- .../Generic BVOH @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic BVOH @K1C-all.json | 2 +- .../filament/Generic BVOH @K1C_CFS-C-all.json | 2 +- .../filament/Generic BVOH @K1_CFS-C-all.json | 2 +- .../filament/Generic BVOH @K2 Plus-all.json | 2 +- .../filament/Generic BVOH @K2 Pro-all.json | 2 +- .../filament/Generic BVOH @K2-all.json | 2 +- .../Generic HIPS @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic HIPS @K1C-all.json | 2 +- .../filament/Generic HIPS @K1C_CFS-C-all.json | 2 +- .../filament/Generic HIPS @K1_CFS-C-all.json | 2 +- .../filament/Generic HIPS @K2 Plus-all.json | 2 +- .../Generic PA @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PA @K1C-all.json | 2 +- .../filament/Generic PA @K1C_CFS-C-all.json | 2 +- .../filament/Generic PA @K1_CFS-C-all.json | 2 +- .../filament/Generic PA @K2 Plus-all.json | 2 +- .../filament/Generic PA @K2 Pro-all.json | 2 +- .../Creality/filament/Generic PA @K2-all.json | 2 +- .../Generic PA-CF @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PA-CF @K1C-all.json | 2 +- .../Generic PA-CF @K1C_CFS-C-all.json | 2 +- .../filament/Generic PA-CF @K1_CFS-C-all.json | 2 +- .../filament/Generic PA-CF @K2 Plus-all.json | 2 +- .../Generic PA12-CF @K2 Plus-all.json | 2 +- .../Generic PA6-CF @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PA6-CF @K1C-all.json | 2 +- .../Generic PA6-CF @K1C_CFS-C-all.json | 2 +- .../Generic PA6-CF @K1_CFS-C-all.json | 2 +- .../filament/Generic PA6-CF @K2 Plus-all.json | 2 +- .../filament/Generic PA6-CF @K2 Pro-all.json | 2 +- .../filament/Generic PA6-GF @K2 Plus-all.json | 2 +- .../Generic PA612-CF @K2 Plus-all.json | 2 +- .../Generic PA612-CF @K2 Pro-all.json | 2 +- .../Generic PAHT-CF @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PAHT-CF @K1C-all.json | 2 +- .../Generic PAHT-CF @K1C_CFS-C-all.json | 2 +- .../Generic PAHT-CF @K1_CFS-C-all.json | 2 +- .../Generic PAHT-CF @K2 Plus-all.json | 2 +- .../filament/Generic PAHT-CF @K2 Pro-all.json | 2 +- .../filament/Generic PAHT-CF @K2-all.json | 2 +- .../Generic PC @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PC @K1C-all.json | 2 +- .../filament/Generic PC @K1C_CFS-C-all.json | 2 +- .../filament/Generic PC @K1_CFS-C-all.json | 2 +- .../filament/Generic PC @K2 Plus-all.json | 2 +- .../filament/Generic PC @K2 Pro-all.json | 2 +- .../filament/Generic PCTG @K2 Plus-all.json | 2 +- .../Generic PET @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PET @K1C-all.json | 2 +- .../filament/Generic PET @K1C_CFS-C-all.json | 2 +- .../filament/Generic PET @K1_CFS-C-all.json | 2 +- .../filament/Generic PET @K2 Plus-all.json | 2 +- .../filament/Generic PET @K2 Pro-all.json | 2 +- .../filament/Generic PET @K2-all.json | 2 +- .../Generic PET-CF @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PET-CF @K1C-all.json | 2 +- .../Generic PET-CF @K1C_CFS-C-all.json | 2 +- .../Generic PET-CF @K1_CFS-C-all.json | 2 +- .../filament/Generic PET-CF @K2 Plus-all.json | 2 +- .../filament/Generic PET-CF @K2 Pro-all.json | 2 +- .../Generic PETG @Ender-3 V4-all.json | 2 +- .../Generic PETG @Ender-5 Max-all.json | 2 +- .../filament/Generic PETG @Hi-all.json | 2 +- .../Generic PETG @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PETG @K1 SE-all.json | 2 +- .../Generic PETG @K1 SE_CFS-C-all.json | 2 +- .../filament/Generic PETG @K1C-all.json | 2 +- .../filament/Generic PETG @K1C_CFS-C-all.json | 2 +- .../filament/Generic PETG @K1_CFS-C-all.json | 2 +- .../filament/Generic PETG @K2 Plus-all.json | 2 +- .../filament/Generic PETG @K2 Pro-all.json | 2 +- .../filament/Generic PETG @K2 SE-all.json | 2 +- .../filament/Generic PETG @K2-all.json | 2 +- .../filament/Generic PETG @SPARKX i7-all.json | 2 +- .../Generic PETG-CF @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PETG-CF @K1C-all.json | 2 +- .../Generic PETG-CF @K1C_CFS-C-all.json | 2 +- .../Generic PETG-CF @K1_CFS-C-all.json | 2 +- .../Generic PETG-CF @K2 Plus-all.json | 2 +- .../filament/Generic PETG-CF @K2 Pro-all.json | 2 +- .../filament/Generic PETG-CF @K2-all.json | 2 +- .../Generic PETG-CF @SPARKX i7-all.json | 2 +- .../Generic PETG-GF @K2 Plus-all.json | 2 +- .../filament/Generic PETG-GF @K2 Pro-all.json | 2 +- .../filament/Generic PETG-GF @K2-all.json | 2 +- .../filament/Generic PLA @Ender-3 V4-all.json | 2 +- .../Generic PLA @Ender-5 Max-all.json | 2 +- .../filament/Generic PLA @Hi-all.json | 2 +- .../Generic PLA @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PLA @K1 SE-all.json | 2 +- .../Generic PLA @K1 SE_CFS-C-all.json | 2 +- .../filament/Generic PLA @K1C-all.json | 2 +- .../filament/Generic PLA @K1C_CFS-C-all.json | 2 +- .../filament/Generic PLA @K1_CFS-C-all.json | 2 +- .../filament/Generic PLA @K2 Plus-all.json | 2 +- .../filament/Generic PLA @K2 Pro-all.json | 2 +- .../filament/Generic PLA @K2 SE-all.json | 2 +- .../filament/Generic PLA @K2-all.json | 2 +- .../filament/Generic PLA @SPARKX i7-all.json | 2 +- .../Generic PLA-CF @Ender-3 V4-all.json | 2 +- .../Generic PLA-CF @Ender-5 Max-all.json | 2 +- .../Generic PLA-CF @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PLA-CF @K1 SE-all.json | 2 +- .../Generic PLA-CF @K1 SE_CFS-C-all.json | 2 +- .../filament/Generic PLA-CF @K1C-all.json | 2 +- .../Generic PLA-CF @K1C_CFS-C-all.json | 2 +- .../Generic PLA-CF @K1_CFS-C-all.json | 2 +- .../filament/Generic PLA-CF @K2 Plus-all.json | 2 +- .../filament/Generic PLA-CF @K2 Pro-all.json | 2 +- .../filament/Generic PLA-CF @K2 SE-all.json | 2 +- .../filament/Generic PLA-CF @K2-all.json | 2 +- .../Generic PLA-CF @SPARKX i7-all.json | 2 +- .../Generic PLA-Silk @Ender-3 V4-all.json | 2 +- .../Generic PLA-Silk @Ender-5 Max-all.json | 2 +- .../filament/Generic PLA-Silk @Hi-all.json | 2 +- .../Generic PLA-Silk @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PLA-Silk @K1 SE-all.json | 2 +- .../Generic PLA-Silk @K1 SE_CFS-C-all.json | 2 +- .../filament/Generic PLA-Silk @K1C-all.json | 2 +- .../Generic PLA-Silk @K1C_CFS-C-all.json | 2 +- .../Generic PLA-Silk @K1_CFS-C-all.json | 2 +- .../Generic PLA-Silk @K2 Plus-all.json | 2 +- .../Generic PLA-Silk @K2 Pro-all.json | 2 +- .../filament/Generic PLA-Silk @K2 SE-all.json | 2 +- .../filament/Generic PLA-Silk @K2-all.json | 2 +- .../Generic PLA-Silk @SPARKX i7-all.json | 2 +- .../Generic PP @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PP @K1C-all.json | 2 +- .../filament/Generic PP @K1C_CFS-C-all.json | 2 +- .../filament/Generic PP @K1_CFS-C-all.json | 2 +- .../filament/Generic PP @K2 Plus-all.json | 2 +- .../filament/Generic PP @K2 Pro-all.json | 2 +- .../Creality/filament/Generic PP @K2-all.json | 2 +- .../filament/Generic PP-CF @K2 Plus-all.json | 2 +- .../Generic PPS @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PPS @K1C-all.json | 2 +- .../filament/Generic PPS @K1C_CFS-C-all.json | 2 +- .../filament/Generic PPS @K1_CFS-C-all.json | 2 +- .../filament/Generic PPS @K2 Plus-all.json | 2 +- .../Generic PPS-CF @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PPS-CF @K1C-all.json | 2 +- .../Generic PPS-CF @K1C_CFS-C-all.json | 2 +- .../Generic PPS-CF @K1_CFS-C-all.json | 2 +- .../filament/Generic PPS-CF @K2 Plus-all.json | 2 +- .../filament/Generic PVA @Hi-all.json | 2 +- .../Generic PVA @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic PVA @K1C-all.json | 2 +- .../filament/Generic PVA @K1C_CFS-C-all.json | 2 +- .../filament/Generic PVA @K1_CFS-C-all.json | 2 +- .../filament/Generic PVA @K2 Plus-all.json | 2 +- .../filament/Generic PVA @K2 Pro-all.json | 2 +- .../filament/Generic PVA @K2-all.json | 2 +- .../Generic Support for PA @K2 Plus-all.json | 2 +- .../Generic Support for PLA @K2 Plus-all.json | 2 +- .../Generic TPU 64D @K2 Plus-all.json | 2 +- .../Generic TPU 64D @SPARKX i7-all.json | 2 +- .../filament/Generic TPU @Ender-3 V4-all.json | 2 +- .../Generic TPU @Ender-5 Max-all.json | 2 +- .../Generic TPU @K1 Max_CFS-C-all.json | 2 +- .../filament/Generic TPU @K1 SE-all.json | 2 +- .../Generic TPU @K1 SE_CFS-C-all.json | 2 +- .../filament/Generic TPU @K1C-all.json | 2 +- .../filament/Generic TPU @K1C_CFS-C-all.json | 2 +- .../filament/Generic TPU @K1_CFS-C-all.json | 2 +- .../filament/Generic TPU @K2 Plus-all.json | 2 +- .../filament/Generic TPU @K2 Pro-all.json | 2 +- .../filament/Generic TPU @K2 SE-all.json | 2 +- .../filament/Generic TPU @K2-all.json | 2 +- .../filament/Generic TPU @SPARKX i7-all.json | 2 +- .../HP Ultra PLA @K1 Max_CFS-C-all.json | 2 +- .../filament/HP Ultra PLA @K1C-all.json | 2 +- .../filament/HP Ultra PLA @K1C_CFS-C-all.json | 2 +- .../filament/HP Ultra PLA @K1_CFS-C-all.json | 2 +- .../filament/HP Ultra PLA @K2 Plus-all.json | 2 +- .../filament/HP-ASA @Ender-5 Max-all.json | 2 +- .../filament/HP-ASA @K1 Max_CFS-C-all.json | 2 +- .../Creality/filament/HP-ASA @K1C-all.json | 2 +- .../filament/HP-ASA @K1C_CFS-C-all.json | 2 +- .../filament/HP-ASA @K1_CFS-C-all.json | 2 +- .../filament/HP-ASA @K2 Plus-all.json | 2 +- .../Creality/filament/HP-ASA @K2 Pro-all.json | 2 +- .../Creality/filament/HP-ASA @K2 SE-all.json | 2 +- .../Creality/filament/HP-ASA @K2-all.json | 2 +- .../filament/HP-TPU @Ender-3 V4-all.json | 2 +- .../filament/HP-TPU @Ender-5 Max-all.json | 2 +- .../Creality/filament/HP-TPU @Hi-all.json | 2 +- .../filament/HP-TPU @K1 Max_CFS-C-all.json | 2 +- .../Creality/filament/HP-TPU @K1 SE-all.json | 2 +- .../filament/HP-TPU @K1 SE_CFS-C-all.json | 2 +- .../Creality/filament/HP-TPU @K1C-all.json | 2 +- .../filament/HP-TPU @K1C_CFS-C-all.json | 2 +- .../filament/HP-TPU @K1_CFS-C-all.json | 2 +- .../filament/HP-TPU @K2 Plus-all.json | 2 +- .../Creality/filament/HP-TPU @K2 Pro-all.json | 2 +- .../Creality/filament/HP-TPU @K2 SE-all.json | 2 +- .../Creality/filament/HP-TPU @K2-all.json | 2 +- .../filament/HP-TPU @SPARKX i7-all.json | 2 +- .../filament/Hyper ABS @Ender-3 V4-all.json | 2 +- .../filament/Hyper ABS @Ender-5 Max-all.json | 2 +- .../Creality/filament/Hyper ABS @Hi-all.json | 2 +- .../filament/Hyper ABS @K1 Max_CFS-C-all.json | 2 +- .../filament/Hyper ABS @K1 SE-all.json | 2 +- .../filament/Hyper ABS @K1 SE_CFS-C-all.json | 2 +- .../Creality/filament/Hyper ABS @K1C-all.json | 2 +- .../filament/Hyper ABS @K1C_CFS-C-all.json | 2 +- .../filament/Hyper ABS @K1_CFS-C-all.json | 2 +- .../filament/Hyper ABS @K2 Plus-all.json | 2 +- .../filament/Hyper ABS @K2 Pro-all.json | 2 +- .../filament/Hyper ABS @K2 SE-all.json | 2 +- .../Creality/filament/Hyper ABS @K2-all.json | 2 +- .../filament/Hyper L-W PLA @Hi-all.json | 2 +- .../Hyper L-W PLA @K1 Max_CFS-C-all.json | 2 +- .../filament/Hyper L-W PLA @K1 SE-all.json | 2 +- .../Hyper L-W PLA @K1 SE_CFS-C-all.json | 2 +- .../filament/Hyper L-W PLA @K1C-all.json | 2 +- .../Hyper L-W PLA @K1C_CFS-C-all.json | 2 +- .../filament/Hyper L-W PLA @K1_CFS-C-all.json | 2 +- .../filament/Hyper L-W PLA @K2 Plus-all.json | 2 +- .../filament/Hyper L-W PLA @K2 Pro-all.json | 2 +- .../filament/Hyper L-W PLA @K2-all.json | 2 +- .../filament/Hyper Luminous @Hi-all.json | 2 +- .../filament/Hyper Luminous @K1C-all.json | 2 +- .../filament/Hyper Luminous @K2 Plus-all.json | 2 +- .../filament/Hyper Luminous @K2 Pro-all.json | 2 +- .../filament/Hyper Luminous @K2-all.json | 2 +- .../Hyper Luminous @SPARKX i7-all.json | 2 +- .../filament/Hyper Marble @Hi-all.json | 2 +- .../Hyper Marble @K1 Max_CFS-C-all.json | 2 +- .../filament/Hyper Marble @K1C-all.json | 2 +- .../filament/Hyper Marble @K1C_CFS-C-all.json | 2 +- .../filament/Hyper Marble @K1_CFS-C-all.json | 2 +- .../filament/Hyper Marble @K2 Plus-all.json | 2 +- .../filament/Hyper Marble @K2 Pro-all.json | 2 +- .../filament/Hyper Marble @K2 SE-all.json | 2 +- .../filament/Hyper Marble @K2-all.json | 2 +- .../filament/Hyper Marble @SPARKX i7-all.json | 2 +- .../filament/Hyper PA6-CF @K2 Plus-all.json | 2 +- .../filament/Hyper PA6-CF @K2 Pro-all.json | 2 +- .../filament/Hyper PA612-CF @K2 Plus-all.json | 2 +- .../filament/Hyper PA612-CF @K2 Pro-all.json | 2 +- .../Hyper PAHT-CF @K1 Max_CFS-C-all.json | 2 +- .../filament/Hyper PAHT-CF @K1C-all.json | 2 +- .../Hyper PAHT-CF @K1C_CFS-C-all.json | 2 +- .../filament/Hyper PAHT-CF @K1_CFS-C-all.json | 2 +- .../filament/Hyper PAHT-CF @K2 Plus-all.json | 2 +- .../filament/Hyper PAHT-CF @K2 Pro-all.json | 2 +- .../filament/Hyper PAHT-CF @K2-all.json | 2 +- .../filament/Hyper PC @K2 Plus-all.json | 2 +- .../filament/Hyper PC @K2 Pro-all.json | 2 +- .../filament/Hyper PETG @Ender-3 V4-all.json | 2 +- .../filament/Hyper PETG @Ender-5 Max-all.json | 2 +- .../Creality/filament/Hyper PETG @Hi-all.json | 2 +- .../Hyper PETG @K1 Max_CFS-C-all.json | 2 +- .../filament/Hyper PETG @K1 SE-all.json | 2 +- .../filament/Hyper PETG @K1 SE_CFS-C-all.json | 2 +- .../filament/Hyper PETG @K1C-all.json | 2 +- .../filament/Hyper PETG @K1C_CFS-C-all.json | 2 +- .../filament/Hyper PETG @K1_CFS-C-all.json | 2 +- .../filament/Hyper PETG @K2 Plus-all.json | 2 +- .../filament/Hyper PETG @K2 Pro-all.json | 2 +- .../filament/Hyper PETG @K2 SE-all.json | 2 +- .../Creality/filament/Hyper PETG @K2-all.json | 2 +- .../filament/Hyper PETG @SPARKX i7-all.json | 2 +- .../Hyper PETG-CF @K1 Max_CFS-C-all.json | 2 +- .../filament/Hyper PETG-CF @K1C-all.json | 2 +- .../Hyper PETG-CF @K1C_CFS-C-all.json | 2 +- .../filament/Hyper PETG-CF @K1_CFS-C-all.json | 2 +- .../filament/Hyper PETG-CF @K2 Plus-all.json | 2 +- .../filament/Hyper PETG-CF @K2 Pro-all.json | 2 +- .../filament/Hyper PETG-CF @K2-all.json | 2 +- .../Hyper PETG-CF @SPARKX i7-all.json | 2 +- .../filament/Hyper PETG-GF @K1C-all.json | 2 +- .../filament/Hyper PETG-GF @K2 Plus-all.json | 2 +- .../filament/Hyper PETG-GF @K2 Pro-all.json | 2 +- .../filament/Hyper PETG-GF @K2-all.json | 2 +- .../filament/Hyper PLA @Ender-3 V4-all.json | 2 +- .../filament/Hyper PLA @Ender-5 Max-all.json | 2 +- .../Creality/filament/Hyper PLA @Hi-all.json | 2 +- .../filament/Hyper PLA @K1 Max_CFS-C-all.json | 2 +- .../filament/Hyper PLA @K1 SE-all.json | 2 +- .../filament/Hyper PLA @K1 SE_CFS-C-all.json | 2 +- .../Creality/filament/Hyper PLA @K1C-all.json | 2 +- .../filament/Hyper PLA @K1C_CFS-C-all.json | 2 +- .../filament/Hyper PLA @K1_CFS-C-all.json | 2 +- .../filament/Hyper PLA @K2 Plus-all.json | 2 +- .../filament/Hyper PLA @K2 Pro-all.json | 2 +- .../filament/Hyper PLA @K2 SE-all.json | 2 +- .../Creality/filament/Hyper PLA @K2-all.json | 2 +- .../filament/Hyper PLA @SPARKX i7-all.json | 2 +- .../Hyper PLA-CF @Ender-3 V4-all.json | 2 +- .../Hyper PLA-CF @Ender-5 Max-all.json | 2 +- .../filament/Hyper PLA-CF @Hi-all.json | 2 +- .../Hyper PLA-CF @K1 Max_CFS-C-all.json | 2 +- .../filament/Hyper PLA-CF @K1 SE-all.json | 2 +- .../Hyper PLA-CF @K1 SE_CFS-C-all.json | 2 +- .../filament/Hyper PLA-CF @K1C-all.json | 2 +- .../filament/Hyper PLA-CF @K1C_CFS-C-all.json | 2 +- .../filament/Hyper PLA-CF @K1_CFS-C-all.json | 2 +- .../filament/Hyper PLA-CF @K2 Plus-all.json | 2 +- .../filament/Hyper PLA-CF @K2 Pro-all.json | 2 +- .../filament/Hyper PLA-CF @K2 SE-all.json | 2 +- .../filament/Hyper PLA-CF @K2-all.json | 2 +- .../filament/Hyper PLA-CF @SPARKX i7-all.json | 2 +- .../filament/Hyper PPA-CF @K2 Plus-all.json | 2 +- .../filament/Hyper PPA-CF @K2 Pro-all.json | 2 +- .../filament/Hyper Stardust @Hi-all.json | 2 +- .../Hyper Stardust @K1 Max_CFS-C-all.json | 2 +- .../filament/Hyper Stardust @K1C-all.json | 2 +- .../Hyper Stardust @K1C_CFS-C-all.json | 2 +- .../Hyper Stardust @K1_CFS-C-all.json | 2 +- .../filament/Hyper Stardust @K2 Plus-all.json | 2 +- .../filament/Hyper Stardust @K2 Pro-all.json | 2 +- .../filament/Hyper Stardust @K2 SE-all.json | 2 +- .../filament/Hyper Stardust @K2-all.json | 2 +- .../Hyper Stardust @SPARKX i7-all.json | 2 +- .../Panchroma PLA Matte @K2 Plus-all.json | 2 +- .../Panchroma PLA Satin @K2 Plus-all.json | 2 +- .../filament/PolySonic PLA @K2 Plus-all.json | 2 +- .../PolySonic PLA Pro @K2 Plus-all.json | 2 +- .../filament/Soleyin Basic PETG @Hi-all.json | 2 +- .../filament/Soleyin Basic PETG @K1C-all.json | 2 +- .../Soleyin Basic PETG @K2 Plus-all.json | 2 +- .../Soleyin Basic PETG @K2 Pro-all.json | 2 +- .../filament/Soleyin Basic PETG @K2-all.json | 2 +- .../Soleyin Basic PETG @SPARKX i7-all.json | 2 +- .../Soleyin Ultra PLA @Ender-3 V4-all.json | 2 +- .../filament/Soleyin Ultra PLA @Hi-all.json | 2 +- .../Soleyin Ultra PLA @K1 Max_CFS-C-all.json | 2 +- .../filament/Soleyin Ultra PLA @K1C-all.json | 2 +- .../Soleyin Ultra PLA @K1C_CFS-C-all.json | 2 +- .../Soleyin Ultra PLA @K1_CFS-C-all.json | 2 +- .../Soleyin Ultra PLA @K2 Plus-all.json | 2 +- .../Soleyin Ultra PLA @K2 Pro-all.json | 2 +- .../Soleyin Ultra PLA @K2 SE-all.json | 2 +- .../filament/Soleyin Ultra PLA @K2-all.json | 2 +- .../Soleyin Ultra PLA @SPARKX i7-all.json | 2 +- .../filament/eSUN ABS+ @K2 Plus-all.json | 2 +- .../filament/eSUN ASA+ @K2 Plus-all.json | 2 +- .../filament/eSUN PET-Basic @K2 Plus-all.json | 2 +- .../filament/eSUN PETG @K2 Plus-all.json | 2 +- .../filament/eSUN PETG+HS @K2 Plus-all.json | 2 +- .../eSUN PETG-Basic @K2 Plus-all.json | 2 +- .../filament/eSUN PLA+ @K2 Plus-all.json | 2 +- .../filament/eSUN PLA-CF @K2 Plus-all.json | 2 +- .../filament/eSUN PLA-HS @K2 Plus-all.json | 2 +- .../filament/eSUN PLA-LW @K2 Plus-all.json | 2 +- .../filament/eSUN PLA-Lite @K2 Plus-all.json | 2 +- .../filament/eSUN PLA-Matte @K2 Plus-all.json | 2 +- .../filament/eSUN PLA-Silk @K2 Plus-all.json | 2 +- .../Creality CR-10 Max 0.4 nozzle.json | 2 +- .../machine/Creality CR-10 SE 0.2 nozzle.json | 2 +- .../machine/Creality CR-10 SE 0.4 nozzle.json | 2 +- .../machine/Creality CR-10 SE 0.6 nozzle.json | 2 +- .../machine/Creality CR-10 SE 0.8 nozzle.json | 2 +- .../machine/Creality CR-10 V2 0.4 nozzle.json | 2 +- .../machine/Creality CR-10 V3 0.4 nozzle.json | 2 +- .../machine/Creality CR-10 V3 0.6 nozzle.json | 2 +- .../machine/Creality CR-6 Max 0.2 nozzle.json | 2 +- .../machine/Creality CR-6 Max 0.4 nozzle.json | 2 +- .../machine/Creality CR-6 Max 0.6 nozzle.json | 2 +- .../machine/Creality CR-6 Max 0.8 nozzle.json | 2 +- .../machine/Creality CR-6 SE 0.2 nozzle.json | 2 +- .../machine/Creality CR-6 SE 0.4 nozzle.json | 2 +- .../machine/Creality CR-6 SE 0.6 nozzle.json | 2 +- .../machine/Creality CR-6 SE 0.8 nozzle.json | 2 +- .../machine/Creality CR-M4 0.4 nozzle.json | 2 +- .../machine/Creality Ender-3 0.2 nozzle.json | 2 +- .../machine/Creality Ender-3 0.4 nozzle.json | 2 +- .../machine/Creality Ender-3 0.6 nozzle.json | 2 +- .../machine/Creality Ender-3 0.8 nozzle.json | 2 +- .../Creality Ender-3 Pro 0.2 nozzle.json | 2 +- .../Creality Ender-3 Pro 0.4 nozzle.json | 2 +- .../Creality Ender-3 Pro 0.6 nozzle.json | 2 +- .../Creality Ender-3 Pro 0.8 nozzle.json | 2 +- .../Creality Ender-3 S1 0.4 nozzle.json | 2 +- .../Creality Ender-3 S1 Plus 0.2 nozzle.json | 2 +- .../Creality Ender-3 S1 Plus 0.4 nozzle.json | 2 +- .../Creality Ender-3 S1 Plus 0.6 nozzle.json | 2 +- .../Creality Ender-3 S1 Plus 0.8 nozzle.json | 2 +- .../Creality Ender-3 S1 Pro 0.4 nozzle.json | 2 +- .../Creality Ender-3 V2 0.4 nozzle.json | 2 +- .../Creality Ender-3 V2 Neo 0.4 nozzle.json | 2 +- .../Creality Ender-3 V3 0.4 nozzle.json | 2 +- .../Creality Ender-3 V3 0.6 nozzle.json | 2 +- .../Creality Ender-3 V3 KE 0.2 nozzle.json | 2 +- .../Creality Ender-3 V3 KE 0.4 nozzle.json | 2 +- .../Creality Ender-3 V3 KE 0.6 nozzle.json | 2 +- .../Creality Ender-3 V3 KE 0.8 nozzle.json | 2 +- .../Creality Ender-3 V3 Plus 0.4 nozzle.json | 2 +- .../Creality Ender-3 V3 Plus 0.6 nozzle.json | 2 +- .../Creality Ender-3 V3 SE 0.2 nozzle.json | 2 +- .../Creality Ender-3 V3 SE 0.4 nozzle.json | 2 +- .../Creality Ender-3 V3 SE 0.6 nozzle.json | 2 +- .../Creality Ender-3 V3 SE 0.8 nozzle.json | 2 +- .../Creality Ender-3 V4 0.4 nozzle.json | 2 +- .../machine/Creality Ender-5 0.4 nozzle.json | 2 +- .../Creality Ender-5 Max 0.4 nozzle.json | 2 +- .../Creality Ender-5 Max 0.6 nozzle.json | 2 +- .../Creality Ender-5 Max 0.8 nozzle.json | 2 +- .../Creality Ender-5 Plus 0.4 nozzle.json | 2 +- ...reality Ender-5 Pro (2019) 0.2 nozzle.json | 2 +- ...eality Ender-5 Pro (2019) 0.25 nozzle.json | 2 +- ...reality Ender-5 Pro (2019) 0.3 nozzle.json | 2 +- ...reality Ender-5 Pro (2019) 0.4 nozzle.json | 2 +- ...reality Ender-5 Pro (2019) 0.5 nozzle.json | 2 +- ...reality Ender-5 Pro (2019) 0.6 nozzle.json | 2 +- ...reality Ender-5 Pro (2019) 0.8 nozzle.json | 2 +- ...reality Ender-5 Pro (2019) 1.0 nozzle.json | 2 +- .../Creality Ender-5 S1 0.4 nozzle.json | 2 +- .../machine/Creality Ender-5S 0.4 nozzle.json | 2 +- .../machine/Creality Ender-6 0.4 nozzle.json | 2 +- .../machine/Creality Hi 0.2 nozzle.json | 2 +- .../machine/Creality Hi 0.4 nozzle.json | 2 +- .../machine/Creality Hi 0.6 nozzle.json | 2 +- .../machine/Creality Hi 0.8 nozzle.json | 2 +- .../machine/Creality K1 (0.4 nozzle).json | 2 +- .../machine/Creality K1 (0.6 nozzle).json | 2 +- .../machine/Creality K1 (0.8 nozzle).json | 2 +- .../machine/Creality K1 Max (0.4 nozzle).json | 2 +- .../machine/Creality K1 Max (0.6 nozzle).json | 2 +- .../machine/Creality K1 Max (0.8 nozzle).json | 2 +- .../Creality K1 Max_CFS-C 0.4 nozzle.json | 2 +- .../machine/Creality K1 SE 0.4 nozzle.json | 2 +- .../machine/Creality K1 SE 0.6 nozzle.json | 2 +- .../machine/Creality K1 SE 0.8 nozzle.json | 2 +- .../Creality K1 SE_CFS-C 0.4 nozzle.json | 2 +- .../machine/Creality K1C 0.4 nozzle.json | 2 +- .../machine/Creality K1C 0.6 nozzle.json | 2 +- .../machine/Creality K1C 0.8 nozzle.json | 2 +- .../Creality K1C_CFS-C 0.4 nozzle.json | 2 +- .../machine/Creality K1_CFS-C 0.4 nozzle.json | 2 +- .../machine/Creality K2 0.2 nozzle.json | 2 +- .../machine/Creality K2 0.4 nozzle.json | 3 +- .../machine/Creality K2 0.6 nozzle.json | 2 +- .../machine/Creality K2 0.8 nozzle.json | 2 +- .../machine/Creality K2 Plus 0.2 nozzle.json | 2 +- .../machine/Creality K2 Plus 0.4 nozzle.json | 2 +- .../machine/Creality K2 Plus 0.6 nozzle.json | 2 +- .../machine/Creality K2 Plus 0.8 nozzle.json | 2 +- .../machine/Creality K2 Pro 0.2 nozzle.json | 2 +- .../machine/Creality K2 Pro 0.4 nozzle.json | 2 +- .../machine/Creality K2 Pro 0.6 nozzle.json | 2 +- .../machine/Creality K2 Pro 0.8 nozzle.json | 2 +- .../machine/Creality K2 SE 0.4 nozzle.json | 2 +- .../Creality SPARKX i7 0.2 nozzle.json | 2 +- .../Creality SPARKX i7 0.4 nozzle.json | 2 +- .../Creality SPARKX i7 0.6 nozzle.json | 2 +- .../Creality SPARKX i7 0.8 nozzle.json | 2 +- .../Creality Sermoon V1 0.4 nozzle.json | 2 +- ...erDetail @Creality K2 Plus 0.2 nozzle.json | 2 +- ...08mm HueForge @Creality Hi 0.4 nozzle.json | 2 +- ...08mm HueForge @Creality K2 0.4 nozzle.json | 2 +- ...HueForge @Creality K2 Plus 0.4 nozzle.json | 2 +- ... HueForge @Creality K2 Pro 0.4 nozzle.json | 2 +- ...eForge @Creality SPARKX i7 0.4 nozzle.json | 2 +- ...0.08mm SuperDetail @Creality CR-6 0.2.json | 2 +- ...Detail @Creality Ender5Pro (2019) 0.2.json | 2 +- ...etail @Creality Ender5Pro (2019) 0.25.json | 2 +- ...Detail @Creality Ender5Pro (2019) 0.3.json | 2 +- ...m SuperDetail @Creality Hi 0.4 nozzle.json | 2 +- ...SuperDetail @Creality K1 (0.4 nozzle).json | 2 +- ...ail @Creality K1 Max_CFS-C 0.4 nozzle.json | 2 +- ... SuperDetail @Creality K1C 0.4 nozzle.json | 2 +- ...Detail @Creality K1C_CFS-C 0.4 nozzle.json | 2 +- ...erDetail @Creality K1Max (0.4 nozzle).json | 2 +- ...rDetail @Creality K1_CFS-C 0.4 nozzle.json | 2 +- ...m SuperDetail @Creality K2 0.2 nozzle.json | 2 +- ...m SuperDetail @Creality K2 0.4 nozzle.json | 2 +- ...erDetail @Creality K2 Plus 0.2 nozzle.json | 2 +- ...erDetail @Creality K2 Plus 0.4 nozzle.json | 2 +- ...perDetail @Creality K2 Pro 0.2 nozzle.json | 2 +- ...perDetail @Creality K2 Pro 0.4 nozzle.json | 2 +- ...Detail @Creality SPARKX i7 0.4 nozzle.json | 2 +- .../0.10mm HighDetail @Creality CR-6 0.4.json | 2 +- .../0.10mm HighDetail @Creality CR-M4.json | 2 +- ...Detail @Creality Ender5Pro (2019) 0.2.json | 2 +- ...etail @Creality Ender5Pro (2019) 0.25.json | 2 +- ...Detail @Creality Ender5Pro (2019) 0.3.json | 2 +- ...mm HighDetail @Creality K2 0.2 nozzle.json | 2 +- ...ghDetail @Creality K2 Plus 0.2 nozzle.json | 2 +- ...ighDetail @Creality K2 Pro 0.2 nozzle.json | 2 +- ...Detail @Creality SPARKX i7 0.2 nozzle.json | 2 +- .../0.12mm Detail @Creality CR-6 0.2.json | 2 +- .../0.12mm Detail @Creality CR-6 0.4.json | 2 +- ...Detail @Creality Ender5Pro (2019) 0.2.json | 2 +- ...etail @Creality Ender5Pro (2019) 0.25.json | 2 +- ...Detail @Creality Ender5Pro (2019) 0.3.json | 2 +- ...Detail @Creality Ender5Pro (2019) 0.5.json | 2 +- ...0.12mm Detail @Creality K2 0.2 nozzle.json | 2 +- ...0.12mm Detail @Creality K2 0.4 nozzle.json | 2 +- ...m Detail @Creality K2 Plus 0.2 nozzle.json | 2 +- ...m Detail @Creality K2 Plus 0.4 nozzle.json | 2 +- ...mm Detail @Creality K2 Pro 0.2 nozzle.json | 2 +- ...mm Detail @Creality K2 Pro 0.4 nozzle.json | 2 +- .../0.12mm Fine @Creality CR10Max.json | 2 +- .../0.12mm Fine @Creality CR10SE 0.2.json | 2 +- .../0.12mm Fine @Creality CR10SE 0.4.json | 2 +- .../0.12mm Fine @Creality CR10SE 0.6.json | 2 +- .../0.12mm Fine @Creality CR10SE 0.8.json | 2 +- .../0.12mm Fine @Creality Ender3 0.2.json | 2 +- .../0.12mm Fine @Creality Ender3 0.4.json | 2 +- .../0.12mm Fine @Creality Ender3 0.6.json | 2 +- .../0.12mm Fine @Creality Ender3 0.8.json | 2 +- .../0.12mm Fine @Creality Ender3 Pro 0.2.json | 2 +- .../0.12mm Fine @Creality Ender3 Pro 0.4.json | 2 +- .../0.12mm Fine @Creality Ender3 Pro 0.6.json | 2 +- .../0.12mm Fine @Creality Ender3 Pro 0.8.json | 2 +- .../0.12mm Fine @Creality Ender3V2.json | 2 +- .../0.12mm Fine @Creality Ender3V2Neo.json | 2 +- ...mm Fine @Creality Ender3V3 0.4 nozzle.json | 2 +- .../0.12mm Fine @Creality Ender3V3KE.json | 2 +- ...ine @Creality Ender3V3Plus 0.4 nozzle.json | 2 +- .../0.12mm Fine @Creality Ender3V3SE 0.2.json | 2 +- .../0.12mm Fine @Creality Ender3V3SE 0.4.json | 2 +- .../0.12mm Fine @Creality Ender3V3SE 0.6.json | 2 +- .../0.12mm Fine @Creality Ender3V3SE 0.8.json | 2 +- ....12mm Fine @Creality Ender5Pro (2019).json | 2 +- .../0.12mm Fine @Creality Hi 0.4 nozzle.json | 2 +- ...0.12mm Fine @Creality K1 (0.4 nozzle).json | 2 +- ....12mm Fine @Creality K1 SE 0.4 nozzle.json | 2 +- .../0.12mm Fine @Creality K1C 0.4 nozzle.json | 2 +- ...2mm Fine @Creality K1Max (0.4 nozzle).json | 2 +- ...m Fine @Creality SPARKX i7 0.4 nozzle.json | 2 +- ....14mm Optimal @Creality K2 0.2 nozzle.json | 2 +- ... Optimal @Creality K2 Plus 0.2 nozzle.json | 2 +- ...m Optimal @Creality K2 Pro 0.2 nozzle.json | 2 +- .../0.15mm Detail @Creality CR-M4.json | 2 +- .../0.15mm Optimal @Creality CR10Max.json | 2 +- .../0.15mm Optimal @Creality Ender3V2.json | 2 +- ...mm Optimal @Creality Ender5Pro (2019).json | 2 +- ... Fine @Creality Ender-3 V4 0.4 nozzle.json | 2 +- .../0.16mm Optimal @Creality CR-6 0.2.json | 2 +- .../0.16mm Optimal @Creality CR-6 0.4.json | 2 +- .../0.16mm Optimal @Creality CR-6 0.6.json | 2 +- .../0.16mm Optimal @Creality CR10SE 0.2.json | 2 +- .../0.16mm Optimal @Creality CR10SE 0.4.json | 2 +- .../0.16mm Optimal @Creality CR10SE 0.6.json | 2 +- .../0.16mm Optimal @Creality CR10SE 0.8.json | 2 +- .../0.16mm Optimal @Creality CR10V2.json | 2 +- .../0.16mm Optimal @Creality Ender3 0.2.json | 2 +- .../0.16mm Optimal @Creality Ender3 0.4.json | 2 +- .../0.16mm Optimal @Creality Ender3 0.6.json | 2 +- .../0.16mm Optimal @Creality Ender3 0.8.json | 2 +- ...16mm Optimal @Creality Ender3 Pro 0.2.json | 2 +- ...16mm Optimal @Creality Ender3 Pro 0.4.json | 2 +- ...16mm Optimal @Creality Ender3 Pro 0.6.json | 2 +- ...16mm Optimal @Creality Ender3 Pro 0.8.json | 2 +- .../0.16mm Optimal @Creality Ender3S1.json | 2 +- ...mm Optimal @Creality Ender3S1Plus 0.2.json | 2 +- ...mm Optimal @Creality Ender3S1Plus 0.4.json | 2 +- ...mm Optimal @Creality Ender3S1Plus 0.6.json | 2 +- ...mm Optimal @Creality Ender3S1Plus 0.8.json | 2 +- .../0.16mm Optimal @Creality Ender3S1Pro.json | 2 +- .../0.16mm Optimal @Creality Ender3V2Neo.json | 2 +- ...Optimal @Creality Ender3V3 0.4 nozzle.json | 2 +- .../0.16mm Optimal @Creality Ender3V3KE.json | 2 +- ...mal @Creality Ender3V3Plus 0.4 nozzle.json | 2 +- ...16mm Optimal @Creality Ender3V3SE 0.2.json | 2 +- ...16mm Optimal @Creality Ender3V3SE 0.4.json | 2 +- ...16mm Optimal @Creality Ender3V3SE 0.6.json | 2 +- ...16mm Optimal @Creality Ender3V3SE 0.8.json | 2 +- .../0.16mm Optimal @Creality Ender5.json | 2 +- .../0.16mm Optimal @Creality Ender5Plus.json | 2 +- ...ptimal @Creality Ender5Pro (2019) 0.2.json | 2 +- ...timal @Creality Ender5Pro (2019) 0.25.json | 2 +- ...ptimal @Creality Ender5Pro (2019) 0.3.json | 2 +- ...ptimal @Creality Ender5Pro (2019) 0.5.json | 2 +- ...ptimal @Creality Ender5Pro (2019) 0.6.json | 2 +- .../0.16mm Optimal @Creality Ender5S.json | 2 +- .../0.16mm Optimal @Creality Ender5S1.json | 2 +- .../0.16mm Optimal @Creality Ender6.json | 2 +- ....16mm Optimal @Creality Hi 0.4 nozzle.json | 2 +- ...6mm Optimal @Creality K1 (0.4 nozzle).json | 2 +- ...mal @Creality K1 Max_CFS-C 0.4 nozzle.json | 2 +- ...mm Optimal @Creality K1 SE 0.4 nozzle.json | 2 +- ...imal @Creality K1 SE_CFS-C 0.4 nozzle.json | 2 +- ...16mm Optimal @Creality K1C 0.4 nozzle.json | 2 +- ...ptimal @Creality K1C_CFS-C 0.4 nozzle.json | 2 +- ... Optimal @Creality K1Max (0.4 nozzle).json | 2 +- ...Optimal @Creality K1_CFS-C 0.4 nozzle.json | 2 +- ....16mm Optimal @Creality K2 0.4 nozzle.json | 2 +- ... Optimal @Creality K2 Plus 0.4 nozzle.json | 2 +- ...m Optimal @Creality K2 Pro 0.4 nozzle.json | 2 +- ...ptimal @Creality SPARKX i7 0.4 nozzle.json | 2 +- .../0.16mm Optimal @Creality Sermoon V1.json | 1 + ...m Standard @Creality K2 SE 0.4 nozzle.json | 2 +- ...0.18mm Detail @Creality K2 0.6 nozzle.json | 2 +- ...m Detail @Creality K2 Plus 0.6 nozzle.json | 2 +- ...mm Detail @Creality K2 Pro 0.6 nozzle.json | 2 +- ....1mm Standard @Creality Hi 0.2 nozzle.json | 2 +- ... Quality @Creality K2 Plus 0.4 nozzle.json | 2 +- .../0.20mm Standard @Creality CR-6 0.4.json | 2 +- .../0.20mm Standard @Creality CR-6 0.6.json | 2 +- .../0.20mm Standard @Creality CR-M4.json | 2 +- .../0.20mm Standard @Creality CR10Max.json | 2 +- .../0.20mm Standard @Creality CR10SE 0.2.json | 2 +- .../0.20mm Standard @Creality CR10SE 0.4.json | 2 +- .../0.20mm Standard @Creality CR10SE 0.6.json | 2 +- .../0.20mm Standard @Creality CR10SE 0.8.json | 2 +- .../0.20mm Standard @Creality CR10V2.json | 2 +- .../0.20mm Standard @Creality CR10V3 0.4.json | 2 +- .../0.20mm Standard @Creality CR10V3 0.6.json | 2 +- ...ndard @Creality Ender-3 V4 0.4 nozzle.json | 2 +- ...rd @Creality Ender-5 Max 0.4mm nozzle.json | 2 +- .../0.20mm Standard @Creality Ender3 0.2.json | 2 +- .../0.20mm Standard @Creality Ender3 0.4.json | 2 +- .../0.20mm Standard @Creality Ender3 0.6.json | 2 +- .../0.20mm Standard @Creality Ender3 0.8.json | 2 +- ...0mm Standard @Creality Ender3 Pro 0.2.json | 2 +- ...0mm Standard @Creality Ender3 Pro 0.4.json | 2 +- ...0mm Standard @Creality Ender3 Pro 0.6.json | 2 +- ...0mm Standard @Creality Ender3 Pro 0.8.json | 2 +- .../0.20mm Standard @Creality Ender3.json | 2 +- .../0.20mm Standard @Creality Ender3S1.json | 2 +- ...m Standard @Creality Ender3S1Plus 0.2.json | 2 +- ...m Standard @Creality Ender3S1Plus 0.4.json | 2 +- ...m Standard @Creality Ender3S1Plus 0.6.json | 2 +- ...m Standard @Creality Ender3S1Plus 0.8.json | 2 +- ...0.20mm Standard @Creality Ender3S1Pro.json | 2 +- .../0.20mm Standard @Creality Ender3V2.json | 2 +- ...0.20mm Standard @Creality Ender3V2Neo.json | 2 +- ...tandard @Creality Ender3V3 0.4 nozzle.json | 2 +- .../0.20mm Standard @Creality Ender3V3KE.json | 2 +- ...ard @Creality Ender3V3Plus 0.4 nozzle.json | 2 +- ...0mm Standard @Creality Ender3V3SE 0.2.json | 2 +- ...0mm Standard @Creality Ender3V3SE 0.4.json | 2 +- ...0mm Standard @Creality Ender3V3SE 0.6.json | 2 +- ...0mm Standard @Creality Ender3V3SE 0.8.json | 2 +- .../0.20mm Standard @Creality Ender5.json | 2 +- .../0.20mm Standard @Creality Ender5Plus.json | 2 +- ...ndard @Creality Ender5Pro (2019) 0.25.json | 2 +- ...andard @Creality Ender5Pro (2019) 0.3.json | 2 +- ...andard @Creality Ender5Pro (2019) 0.5.json | 2 +- ...andard @Creality Ender5Pro (2019) 0.6.json | 2 +- ...andard @Creality Ender5Pro (2019) 0.8.json | 2 +- ...m Standard @Creality Ender5Pro (2019).json | 2 +- .../0.20mm Standard @Creality Ender5S.json | 2 +- .../0.20mm Standard @Creality Ender5S1.json | 2 +- .../0.20mm Standard @Creality Ender6.json | 2 +- ...20mm Standard @Creality Hi 0.4 nozzle.json | 2 +- ...mm Standard @Creality K1 (0.4 nozzle).json | 2 +- ...ard @Creality K1 Max_CFS-C 0.4 nozzle.json | 2 +- .../0.20mm Standard @Creality K1 SE 0.4.json | 2 +- ...dard @Creality K1 SE_CFS-C 0.4 nozzle.json | 2 +- ...0mm Standard @Creality K1C 0.4 nozzle.json | 2 +- ...andard @Creality K1C_CFS-C 0.4 nozzle.json | 2 +- ...Standard @Creality K1Max (0.4 nozzle).json | 2 +- ...tandard @Creality K1_CFS-C 0.4 nozzle.json | 2 +- ...20mm Standard @Creality K2 0.4 nozzle.json | 2 +- ...Standard @Creality K2 Plus 0.4 nozzle.json | 2 +- ... Standard @Creality K2 Pro 0.4 nozzle.json | 2 +- ...m Standard @Creality K2 SE 0.4 nozzle.json | 2 +- ...andard @Creality SPARKX i7 0.4 nozzle.json | 2 +- .../0.20mm Standard @Creality Sermoon V1.json | 1 + ...Strength @Creality K2 Plus 0.4 nozzle.json | 2 +- ...st @Creality Ender-5 Max 0.4mm nozzle.json | 2 +- ...0.24mm Detail @Creality K2 0.8 nozzle.json | 2 +- ...m Detail @Creality K2 Plus 0.8 nozzle.json | 2 +- ...mm Detail @Creality K2 Pro 0.8 nozzle.json | 2 +- .../0.24mm Draft @Creality CR-6 0.4.json | 2 +- .../0.24mm Draft @Creality CR-6 0.6.json | 2 +- .../0.24mm Draft @Creality CR10Max.json | 2 +- .../0.24mm Draft @Creality CR10SE 0.2.json | 2 +- .../0.24mm Draft @Creality CR10SE 0.4.json | 2 +- .../0.24mm Draft @Creality CR10SE 0.6.json | 2 +- .../0.24mm Draft @Creality CR10SE 0.8.json | 2 +- ...Draft @Creality Ender-3 V4 0.4 nozzle.json | 2 +- .../0.24mm Draft @Creality Ender3 0.2.json | 2 +- .../0.24mm Draft @Creality Ender3 0.4.json | 2 +- .../0.24mm Draft @Creality Ender3 0.6.json | 2 +- .../0.24mm Draft @Creality Ender3 0.8.json | 2 +- ...0.24mm Draft @Creality Ender3 Pro 0.2.json | 2 +- ...0.24mm Draft @Creality Ender3 Pro 0.4.json | 2 +- ...0.24mm Draft @Creality Ender3 Pro 0.6.json | 2 +- ...0.24mm Draft @Creality Ender3 Pro 0.8.json | 2 +- ...24mm Draft @Creality Ender3S1Plus 0.2.json | 2 +- ...24mm Draft @Creality Ender3S1Plus 0.4.json | 2 +- ...24mm Draft @Creality Ender3S1Plus 0.6.json | 2 +- ...24mm Draft @Creality Ender3S1Plus 0.8.json | 2 +- .../0.24mm Draft @Creality Ender3V2.json | 2 +- .../0.24mm Draft @Creality Ender3V2Neo.json | 2 +- ...m Draft @Creality Ender3V3 0.4 nozzle.json | 2 +- .../0.24mm Draft @Creality Ender3V3KE.json | 2 +- ...aft @Creality Ender3V3Plus 0.4 nozzle.json | 2 +- ...0.24mm Draft @Creality Ender3V3SE 0.2.json | 2 +- ...0.24mm Draft @Creality Ender3V3SE 0.4.json | 2 +- ...0.24mm Draft @Creality Ender3V3SE 0.6.json | 2 +- ...0.24mm Draft @Creality Ender3V3SE 0.8.json | 2 +- ... Draft @Creality Ender5Pro (2019) 0.3.json | 2 +- ... Draft @Creality Ender5Pro (2019) 0.5.json | 2 +- ... Draft @Creality Ender5Pro (2019) 0.6.json | 2 +- ... Draft @Creality Ender5Pro (2019) 0.8.json | 2 +- ...24mm Draft @Creality Ender5Pro (2019).json | 2 +- .../0.24mm Draft @Creality Hi 0.4 nozzle.json | 2 +- ....24mm Draft @Creality K1 (0.4 nozzle).json | 2 +- ...aft @Creality K1 Max_CFS-C 0.4 nozzle.json | 2 +- ...24mm Draft @Creality K1 SE 0.4 nozzle.json | 2 +- ...raft @Creality K1 SE_CFS-C 0.4 nozzle.json | 2 +- ...0.24mm Draft @Creality K1C 0.4 nozzle.json | 2 +- ... Draft @Creality K1C_CFS-C 0.4 nozzle.json | 2 +- ...mm Draft @Creality K1Max (0.4 nozzle).json | 2 +- ...m Draft @Creality K1_CFS-C 0.4 nozzle.json | 2 +- .../0.24mm Draft @Creality K2 0.4 nozzle.json | 2 +- ...mm Draft @Creality K2 Plus 0.4 nozzle.json | 2 +- ...4mm Draft @Creality K2 Pro 0.4 nozzle.json | 2 +- ... Draft @Creality SPARKX i7 0.4 nozzle.json | 2 +- .../0.24mm Optimal @Creality CR-6 0.8.json | 2 +- ...Optimal @Creality Ender3V3 0.6 nozzle.json | 2 +- ...mal @Creality Ender3V3Plus 0.6 nozzle.json | 2 +- ....24mm Optimal @Creality Hi 0.6 nozzle.json | 2 +- ...4mm Optimal @Creality K1 (0.6 nozzle).json | 2 +- ...24mm Optimal @Creality K1C 0.6 nozzle.json | 2 +- ... Optimal @Creality K1Max (0.6 nozzle).json | 2 +- ....24mm Optimal @Creality K2 0.6 nozzle.json | 2 +- ... Optimal @Creality K2 Plus 0.6 nozzle.json | 2 +- ...m Optimal @Creality K2 Pro 0.6 nozzle.json | 2 +- ...m Standard @Creality K2 SE 0.4 nozzle.json | 2 +- .../0.28mm Standard @Creality Sermoon V1.json | 1 + .../0.28mm SuperDraft @Creality CR-6 0.4.json | 2 +- .../0.28mm SuperDraft @Creality CR-6 0.6.json | 2 +- ...Draft @Creality Ender-3 V4 0.4 nozzle.json | 2 +- ....28mm SuperDraft @Creality Ender3 0.2.json | 2 +- ....28mm SuperDraft @Creality Ender3 0.4.json | 2 +- ....28mm SuperDraft @Creality Ender3 0.6.json | 2 +- ....28mm SuperDraft @Creality Ender3 0.8.json | 2 +- ...m SuperDraft @Creality Ender3 Pro 0.2.json | 2 +- ...m SuperDraft @Creality Ender3 Pro 0.4.json | 2 +- ...m SuperDraft @Creality Ender3 Pro 0.6.json | 2 +- ...m SuperDraft @Creality Ender3 Pro 0.8.json | 2 +- ...rDraft @Creality Ender5Pro (2019) 0.5.json | 2 +- ...rDraft @Creality Ender5Pro (2019) 0.6.json | 2 +- ...rDraft @Creality Ender5Pro (2019) 0.8.json | 2 +- ...rDraft @Creality Ender5Pro (2019) 1.0.json | 2 +- ...mm SuperDraft @Creality Hi 0.4 nozzle.json | 2 +- ...mm SuperDraft @Creality K2 0.4 nozzle.json | 2 +- ...perDraft @Creality K2 Plus 0.4 nozzle.json | 2 +- ...uperDraft @Creality K2 Pro 0.4 nozzle.json | 2 +- ...rDraft @Creality SPARKX i7 0.4 nozzle.json | 2 +- ...dard @Creality Ender-5 Max 0.4 nozzle.json | 2 +- ...fast @Creality Ender-5 Max 0.4 nozzle.json | 2 +- ...dard @Creality Ender-5 Max 0.6 nozzle.json | 2 +- ...tandard @Creality Ender3V3 0.6 nozzle.json | 2 +- ...ard @Creality Ender3V3Plus 0.6 nozzle.json | 2 +- ...30mm Standard @Creality Hi 0.6 nozzle.json | 2 +- ...mm Standard @Creality K1 (0.6 nozzle).json | 2 +- ...m Standard @Creality K1 SE 0.6 nozzle.json | 2 +- ...0mm Standard @Creality K1C 0.6 nozzle.json | 2 +- ...Standard @Creality K1Max (0.6 nozzle).json | 2 +- ...30mm Standard @Creality K2 0.6 nozzle.json | 2 +- ...Standard @Creality K2 Plus 0.6 nozzle.json | 2 +- ... Standard @Creality K2 Pro 0.6 nozzle.json | 2 +- ...andard @Creality SPARKX i7 0.6 nozzle.json | 2 +- ...Strength @Creality K2 Plus 0.6 nozzle.json | 2 +- .../0.32mm Chunky @Creality CR-6 0.6.json | 2 +- ...2mm Optimal @Creality K1 (0.8 nozzle).json | 2 +- ...32mm Optimal @Creality K1C 0.8 nozzle.json | 2 +- ... Optimal @Creality K1Max (0.8 nozzle).json | 2 +- ....32mm Optimal @Creality K2 0.8 nozzle.json | 2 +- ... Optimal @Creality K2 Plus 0.8 nozzle.json | 2 +- ...m Optimal @Creality K2 Pro 0.8 nozzle.json | 2 +- .../0.32mm Standard @Creality CR-6 0.8.json | 2 +- ...Chunky @Creality Ender5Pro (2019) 0.5.json | 2 +- ...Chunky @Creality Ender5Pro (2019) 0.6.json | 2 +- ...Chunky @Creality Ender5Pro (2019) 0.8.json | 2 +- ...Chunky @Creality Ender5Pro (2019) 1.0.json | 2 +- ...m Draft @Creality Ender3V3 0.6 nozzle.json | 2 +- ...aft @Creality Ender3V3Plus 0.6 nozzle.json | 2 +- .../0.36mm Draft @Creality Hi 0.6 nozzle.json | 2 +- ....36mm Draft @Creality K1 (0.6 nozzle).json | 2 +- ...0.36mm Draft @Creality K1C 0.6 nozzle.json | 2 +- ...mm Draft @Creality K1Max (0.6 nozzle).json | 2 +- .../0.36mm Draft @Creality K2 0.6 nozzle.json | 2 +- ...mm Draft @Creality K2 Plus 0.6 nozzle.json | 2 +- ...6mm Draft @Creality K2 Pro 0.6 nozzle.json | 2 +- ...0.36mm SuperChunky @Creality CR-6 0.6.json | 2 +- .../0.40mm Draft @Creality CR-6 0.8.json | 2 +- ...dard @Creality Ender-5 Max 0.8 nozzle.json | 2 +- ...40mm Standard @Creality Hi 0.8 nozzle.json | 2 +- ...mm Standard @Creality K1 (0.8 nozzle).json | 2 +- ...0mm Standard @Creality K1C 0.8 nozzle.json | 2 +- ...Standard @Creality K1Max (0.8 nozzle).json | 2 +- ...40mm Standard @Creality K2 0.8 nozzle.json | 2 +- ...Standard @Creality K2 Plus 0.8 nozzle.json | 2 +- ... Standard @Creality K2 Pro 0.8 nozzle.json | 2 +- ...andard @Creality SPARKX i7 0.8 nozzle.json | 2 +- ...Strength @Creality K2 Plus 0.8 nozzle.json | 2 +- ...mm SuperDraft @Creality K2 0.6 nozzle.json | 2 +- ...perDraft @Creality K2 Plus 0.6 nozzle.json | 2 +- ...uperDraft @Creality K2 Pro 0.6 nozzle.json | 2 +- ...m SuperExtraChunky @Creality CR-6 0.6.json | 2 +- .../0.48mm Chunky @Creality CR-6 0.8.json | 2 +- .../0.48mm Draft @Creality CR-6 0.8.json | 2 +- ....48mm Draft @Creality K1 (0.8 nozzle).json | 2 +- ...0.48mm Draft @Creality K1C 0.8 nozzle.json | 2 +- ...mm Draft @Creality K1Max (0.8 nozzle).json | 2 +- .../0.48mm Draft @Creality K2 0.8 nozzle.json | 2 +- ...mm Draft @Creality K2 Plus 0.8 nozzle.json | 2 +- ...8mm Draft @Creality K2 Pro 0.8 nozzle.json | 2 +- ...0.56mm SuperChunky @Creality CR-6 0.8.json | 2 +- ...mm SuperDraft @Creality K2 0.8 nozzle.json | 2 +- ...perDraft @Creality K2 Plus 0.8 nozzle.json | 2 +- ...uperDraft @Creality K2 Pro 0.8 nozzle.json | 2 +- resources/profiles/Cubicon.json | 2 +- ...icon ABS @Cubicon xCeler-I 0.4 nozzle.json | 1 + ...n ABS @Cubicon xCeler-Mini 0.4 nozzle.json | 1 + ...n ABS @Cubicon xCeler-Plus 0.4 nozzle.json | 1 + .../Cubicon/filament/Cubicon ABS @base.json | 1 + ...ABS-A100 @Cubicon xCeler-I 0.4 nozzle.json | 1 + ...-A100 @Cubicon xCeler-Mini 0.4 nozzle.json | 1 + ...-A100 @Cubicon xCeler-Plus 0.4 nozzle.json | 1 + .../filament/Cubicon ABS-A100 @base.json | 1 + ...con ABSk @Cubicon xCeler-I 0.4 nozzle.json | 1 + ... ABSk @Cubicon xCeler-Mini 0.4 nozzle.json | 1 + ... ABSk @Cubicon xCeler-Plus 0.4 nozzle.json | 1 + .../Cubicon/filament/Cubicon ABSk @base.json | 1 + ...on PA-CF @Cubicon xCeler-I 0.4 nozzle.json | 1 + ...PA-CF @Cubicon xCeler-Mini 0.4 nozzle.json | 1 + ...PA-CF @Cubicon xCeler-Plus 0.4 nozzle.json | 1 + .../Cubicon/filament/Cubicon PA-CF @base.json | 1 + ...bicon PC @Cubicon xCeler-I 0.4 nozzle.json | 1 + ...on PC @Cubicon xCeler-Mini 0.4 nozzle.json | 1 + ...on PC @Cubicon xCeler-Plus 0.4 nozzle.json | 1 + .../Cubicon/filament/Cubicon PC @base.json | 1 + ...con PETG @Cubicon xCeler-I 0.4 nozzle.json | 1 + ... PETG @Cubicon xCeler-Mini 0.4 nozzle.json | 1 + ... PETG @Cubicon xCeler-Plus 0.4 nozzle.json | 1 + .../Cubicon/filament/Cubicon PETG @base.json | 1 + ...icon PLA @Cubicon xCeler-I 0.4 nozzle.json | 1 + ...n PLA @Cubicon xCeler-Mini 0.4 nozzle.json | 1 + ...n PLA @Cubicon xCeler-Plus 0.4 nozzle.json | 1 + .../Cubicon/filament/Cubicon PLA @base.json | 1 + ...con PLA+ @Cubicon xCeler-I 0.4 nozzle.json | 1 + ... PLA+ @Cubicon xCeler-Mini 0.4 nozzle.json | 1 + ... PLA+ @Cubicon xCeler-Plus 0.4 nozzle.json | 1 + .../Cubicon/filament/Cubicon PLA+ @base.json | 1 + ...n PLAi21 @Cubicon xCeler-I 0.4 nozzle.json | 1 + ...LAi21 @Cubicon xCeler-Mini 0.4 nozzle.json | 1 + ...LAi21 @Cubicon xCeler-Plus 0.4 nozzle.json | 1 + .../filament/Cubicon PLAi21 @base.json | 1 + .../machine/Cubicon xCeler-I 0.4 nozzle.json | 1 + .../Cubicon xCeler-Mini 0.4 nozzle.json | 1 + .../Cubicon xCeler-Plus 0.4 nozzle.json | 1 + ... default @Cubicon xCeler-I 0.4 nozzle.json | 1 + ...fault @Cubicon xCeler-Mini 0.4 nozzle.json | 1 + ...fault @Cubicon xCeler-Plus 0.4 nozzle.json | 1 + resources/profiles/Custom.json | 2 +- .../filament/Generic ABS @MyToolChanger.json | 2 +- .../filament/Generic ASA @MyToolChanger.json | 2 +- .../filament/Generic PA @MyToolChanger.json | 2 +- .../Generic PA-CF @MyToolChanger.json | 2 +- .../filament/Generic PC @MyToolChanger.json | 2 +- .../filament/Generic PETG @MyToolChanger.json | 2 +- .../filament/Generic PLA @MyToolChanger.json | 2 +- .../Generic PLA-CF @MyToolChanger.json | 2 +- .../filament/Generic PVA @MyToolChanger.json | 2 +- .../filament/Generic TPU @MyToolChanger.json | 2 +- .../Custom/machine/MyKlipper 0.2 nozzle.json | 2 +- .../Custom/machine/MyKlipper 0.4 nozzle.json | 2 +- .../Custom/machine/MyKlipper 0.6 nozzle.json | 2 +- .../Custom/machine/MyKlipper 0.8 nozzle.json | 2 +- .../Custom/machine/MyMarlin 0.4 nozzle.json | 2 +- .../Custom/machine/MyRRF 0.4 nozzle.json | 2 +- .../Custom/machine/MyRepetier 0.4 nozzle.json | 2 +- .../machine/MyToolChanger 0.2 nozzle.json | 2 +- .../machine/MyToolChanger 0.4 nozzle.json | 2 +- .../machine/MyToolChanger 0.6 nozzle.json | 2 +- .../machine/MyToolChanger 0.8 nozzle.json | 2 +- .../process/0.08mm Extra Fine @MyKlipper.json | 2 +- .../process/0.08mm Extra Fine @MyMarlin.json | 2 +- .../process/0.08mm Extra Fine @MyRRF.json | 2 +- .../0.08mm Extra Fine @MyToolChanger.json | 2 +- .../process/0.12mm Fine @MyKlipper.json | 2 +- .../Custom/process/0.12mm Fine @MyMarlin.json | 2 +- .../Custom/process/0.12mm Fine @MyRRF.json | 2 +- .../process/0.12mm Fine @MyToolChanger.json | 2 +- .../process/0.15mm Optimal @MyKlipper.json | 2 +- .../process/0.15mm Optimal @MyMarlin.json | 2 +- .../Custom/process/0.15mm Optimal @MyRRF.json | 2 +- .../0.15mm Optimal @MyToolChanger.json | 2 +- .../process/0.16mm Optimal @MyKlipper.json | 2 +- .../0.16mm Optimal @MyToolChanger.json | 2 +- .../process/0.20mm Standard @MyKlipper.json | 2 +- .../process/0.20mm Standard @MyMarlin.json | 2 +- .../process/0.20mm Standard @MyRRF.json | 2 +- .../process/0.20mm Standard @MyRepetier.json | 2 +- .../0.20mm Standard @MyToolChanger.json | 2 +- .../process/0.24mm Draft @MyKlipper.json | 2 +- .../process/0.24mm Draft @MyMarlin.json | 2 +- .../Custom/process/0.24mm Draft @MyRRF.json | 2 +- .../process/0.24mm Draft @MyToolChanger.json | 2 +- .../0.28mm Extra Draft @MyKlipper.json | 2 +- .../process/0.28mm Extra Draft @MyMarlin.json | 2 +- .../process/0.28mm Extra Draft @MyRRF.json | 2 +- .../0.28mm Extra Draft @MyToolChanger.json | 2 +- .../0.32mm Extra Draft @MyKlipper.json | 2 +- .../0.32mm Extra Draft @MyToolChanger.json | 2 +- .../0.40mm Extra Draft @MyKlipper.json | 2 +- .../0.40mm Extra Draft @MyToolChanger.json | 2 +- .../0.56mm Extra Draft @MyKlipper.json | 2 +- .../0.56mm Extra Draft @MyToolChanger.json | 2 +- resources/profiles/DeltaMaker.json | 2 +- .../filament/DeltaMaker Brand PLA.json | 2 +- .../filament/DeltaMaker Generic PETG.json | 2 +- .../filament/DeltaMaker Generic PLA.json | 2 +- .../filament/DeltaMaker Generic TPU.json | 2 +- .../machine/DeltaMaker 2 0.35 nozzle.json | 2 +- .../machine/DeltaMaker 2T 0.5 nozzle.json | 2 +- .../machine/DeltaMaker 2XT 0.5 nozzle.json | 2 +- .../process/0.12mm Fine @DeltaMaker.json | 2 +- .../process/0.18mm Standard @DeltaMaker.json | 2 +- .../process/0.25mm Draft @DeltaMaker.json | 2 +- resources/profiles/Dremel.json | 2 +- .../Dremel Generic PLA @3D20 all.json | 2 +- .../Dremel Generic PLA @3D40 all.json | 2 +- .../Dremel Generic PLA @3D45 all.json | 2 +- .../Dremel/filament/Dremel Generic PLA.json | 2 +- .../machine/Dremel 3D20 0.4 nozzle.json | 2 +- .../machine/Dremel 3D40 0.4 nozzle.json | 2 +- .../machine/Dremel 3D45 0.4 nozzle.json | 2 +- .../.05mm Super Detail @Dremel 3D40 0.4.json | 1 + .../.05mm Super Detail @Dremel 3D45 0.4.json | 1 + .../.10mm Detail @Dremel 3D20 0.4.json | 1 + .../.10mm Detail @Dremel 3D40 0.4.json | 1 + .../.10mm Detail @Dremel 3D45 0.4.json | 1 + .../.20mm Standard @Dremel 3D20 0.4.json | 1 + .../.20mm Standard @Dremel 3D40 0.4.json | 1 + .../.20mm Standard @Dremel 3D45 0.4.json | 1 + .../process/.30mm Draft @Dremel 3D20 0.4.json | 1 + .../process/.30mm Draft @Dremel 3D40 0.4.json | 1 + .../process/.30mm Draft @Dremel 3D45 0.4.json | 1 + .../.34mm SuperDraft @Dremel 3D40 0.4.json | 1 + .../.34mm SuperDraft @Dremel 3D45 0.4.json | 1 + resources/profiles/Elegoo.json | 2 +- .../Elegoo/filament/EC/Elegoo ABS @EC.json | 2 +- .../Elegoo/filament/EC/Elegoo ASA @EC.json | 2 +- .../filament/EC/Elegoo PAHT-CF @EC.json | 2 +- .../Elegoo/filament/EC/Elegoo PC @EC.json | 2 +- .../Elegoo/filament/EC/Elegoo PC-FR @EC.json | 2 +- .../Elegoo/filament/EC/Elegoo PETG @EC.json | 2 +- .../filament/EC/Elegoo PETG PRO @EC.json | 2 +- .../EC/Elegoo PETG Translucent @EC.json | 2 +- .../filament/EC/Elegoo PETG-CF @EC.json | 2 +- .../filament/EC/Elegoo PETG-GF @EC.json | 2 +- .../Elegoo/filament/EC/Elegoo PLA @EC.json | 2 +- .../filament/EC/Elegoo PLA Basic @EC.json | 2 +- .../filament/EC/Elegoo PLA Galaxy @EC.json | 2 +- .../filament/EC/Elegoo PLA Marble @EC.json | 2 +- .../filament/EC/Elegoo PLA Matte @EC.json | 2 +- .../filament/EC/Elegoo PLA PRO @EC.json | 2 +- .../filament/EC/Elegoo PLA Silk @EC.json | 2 +- .../filament/EC/Elegoo PLA Sparkle @EC.json | 2 +- .../filament/EC/Elegoo PLA Wood @EC.json | 2 +- .../Elegoo/filament/EC/Elegoo PLA+ @EC.json | 2 +- .../filament/EC/Elegoo Rapid PETG @EC.json | 2 +- .../filament/EC/Elegoo Rapid PLA+ @EC.json | 2 +- .../filament/EC/Elegoo Rapid TPU 95A @EC.json | 2 +- .../filament/EC/Elegoo TPU 95A @EC.json | 2 +- .../Elegoo/filament/EC2/Elegoo ABS @EC2.json | 2 +- .../Elegoo/filament/EC2/Elegoo ASA @EC2.json | 2 +- .../filament/EC2/Elegoo ASA-CF @EC2.json | 2 +- .../filament/EC2/Elegoo PAHT-CF @EC2.json | 2 +- .../Elegoo/filament/EC2/Elegoo PC @EC2.json | 2 +- .../filament/EC2/Elegoo PC-FR @EC2.json | 2 +- .../filament/EC2/Elegoo PET-CF @EC2.json | 2 +- .../Elegoo/filament/EC2/Elegoo PETG @EC2.json | 2 +- .../filament/EC2/Elegoo PETG HF @EC2.json | 2 +- .../filament/EC2/Elegoo PETG PRO @EC2.json | 2 +- .../EC2/Elegoo PETG Translucent @EC2.json | 2 +- .../filament/EC2/Elegoo PETG-CF @EC2.json | 2 +- .../filament/EC2/Elegoo PETG-GF @EC2.json | 2 +- .../Elegoo/filament/EC2/Elegoo PLA @EC2.json | 2 +- .../filament/EC2/Elegoo PLA Basic @EC2.json | 2 +- .../filament/EC2/Elegoo PLA Galaxy @EC2.json | 2 +- .../filament/EC2/Elegoo PLA Glow @EC2.json | 2 +- .../filament/EC2/Elegoo PLA Marble @EC2.json | 2 +- .../filament/EC2/Elegoo PLA Matte @EC2.json | 2 +- .../filament/EC2/Elegoo PLA PRO @EC2.json | 2 +- .../filament/EC2/Elegoo PLA Silk @EC2.json | 2 +- .../filament/EC2/Elegoo PLA Sparkle @EC2.json | 2 +- .../EC2/Elegoo PLA Translucent2 @EC2.json | 2 +- .../filament/EC2/Elegoo PLA Wood @EC2.json | 2 +- .../Elegoo/filament/EC2/Elegoo PLA+ @EC2.json | 2 +- .../filament/EC2/Elegoo PLA-CF @EC2.json | 2 +- .../filament/EC2/Elegoo Rapid PETG @EC2.json | 2 +- .../filament/EC2/Elegoo Rapid PLA+ @EC2.json | 2 +- .../EC2/Elegoo Rapid TPU 95A @EC2.json | 2 +- .../filament/EC2/Elegoo TPU 95A @EC2.json | 2 +- .../Elegoo/filament/ECC/Elegoo ABS @ECC.json | 2 +- .../Elegoo/filament/ECC/Elegoo ASA @ECC.json | 2 +- .../filament/ECC/Elegoo PAHT-CF @ECC.json | 2 +- .../Elegoo/filament/ECC/Elegoo PC @ECC.json | 2 +- .../filament/ECC/Elegoo PC-FR @ECC.json | 2 +- .../Elegoo/filament/ECC/Elegoo PETG @ECC.json | 2 +- .../filament/ECC/Elegoo PETG PRO @ECC.json | 2 +- .../ECC/Elegoo PETG Translucent @ECC.json | 2 +- .../filament/ECC/Elegoo PETG-CF @ECC.json | 2 +- .../filament/ECC/Elegoo PETG-GF @ECC.json | 2 +- .../Elegoo/filament/ECC/Elegoo PLA @ECC.json | 2 +- .../filament/ECC/Elegoo PLA Basic @ECC.json | 2 +- .../filament/ECC/Elegoo PLA Galaxy @ECC.json | 2 +- .../filament/ECC/Elegoo PLA Marble @ECC.json | 2 +- .../filament/ECC/Elegoo PLA Matte @ECC.json | 2 +- .../filament/ECC/Elegoo PLA PRO @ECC.json | 2 +- .../filament/ECC/Elegoo PLA Silk @ECC.json | 2 +- .../filament/ECC/Elegoo PLA Sparkle @ECC.json | 2 +- .../filament/ECC/Elegoo PLA Wood @ECC.json | 2 +- .../Elegoo/filament/ECC/Elegoo PLA+ @ECC.json | 2 +- .../filament/ECC/Elegoo PLA-CF @ECC.json | 2 +- .../filament/ECC/Elegoo Rapid PETG @ECC.json | 2 +- .../filament/ECC/Elegoo Rapid PLA+ @ECC.json | 2 +- .../ECC/Elegoo Rapid TPU 95A @ECC.json | 2 +- .../filament/ECC/Elegoo TPU 95A @ECC.json | 2 +- .../filament/ECC2/Elegoo ABS @ECC2.json | 2 +- .../filament/ECC2/Elegoo ASA @ECC2.json | 2 +- .../filament/ECC2/Elegoo ASA-CF @ECC2.json | 2 +- .../filament/ECC2/Elegoo PAHT-CF @ECC2.json | 2 +- .../Elegoo/filament/ECC2/Elegoo PC @ECC2.json | 2 +- .../filament/ECC2/Elegoo PC-FR @ECC2.json | 2 +- .../filament/ECC2/Elegoo PET-CF @ECC2.json | 2 +- .../filament/ECC2/Elegoo PETG @ECC2.json | 2 +- .../filament/ECC2/Elegoo PETG HF @ECC2.json | 2 +- .../filament/ECC2/Elegoo PETG PRO @ECC2.json | 2 +- .../ECC2/Elegoo PETG Translucent @ECC2.json | 2 +- .../filament/ECC2/Elegoo PETG-CF @ECC2.json | 2 +- .../filament/ECC2/Elegoo PETG-GF @ECC2.json | 2 +- .../filament/ECC2/Elegoo PLA @ECC2.json | 2 +- .../filament/ECC2/Elegoo PLA Basic @ECC2.json | 2 +- .../ECC2/Elegoo PLA Galaxy @ECC2.json | 2 +- .../filament/ECC2/Elegoo PLA Glow @ECC2.json | 2 +- .../ECC2/Elegoo PLA Marble @ECC2.json | 2 +- .../filament/ECC2/Elegoo PLA Matte @ECC2.json | 2 +- .../filament/ECC2/Elegoo PLA PRO @ECC2.json | 2 +- .../filament/ECC2/Elegoo PLA Silk @ECC2.json | 2 +- .../ECC2/Elegoo PLA Sparkle @ECC2.json | 2 +- .../ECC2/Elegoo PLA Translucent2 @ECC2.json | 2 +- .../filament/ECC2/Elegoo PLA Wood @ECC2.json | 2 +- .../filament/ECC2/Elegoo PLA+ @ECC2.json | 2 +- .../filament/ECC2/Elegoo PLA-CF @ECC2.json | 2 +- .../ECC2/Elegoo Rapid PETG @ECC2.json | 2 +- .../ECC2/Elegoo Rapid PLA+ @ECC2.json | 2 +- .../ECC2/Elegoo Rapid TPU 95A @ECC2.json | 2 +- .../filament/ECC2/Elegoo TPU 95A @ECC2.json | 2 +- .../Elegoo ABS @0.2 nozzle.json | 2 +- .../Elegoo ASA @0.2 nozzle.json | 2 +- .../Elegoo PC @0.2 nozzle.json | 2 +- .../Elegoo PC-FR @0.2 nozzle.json | 2 +- .../Elegoo PETG @0.2 nozzle.json | 2 +- .../Elegoo PETG PRO @0.2 nozzle.json | 2 +- .../Elegoo PETG Translucent @0.2 nozzle.json | 2 +- .../Elegoo PLA @0.2 nozzle.json | 2 +- .../Elegoo PLA Basic @0.2 nozzle.json | 2 +- .../Elegoo PLA Matte @0.2 nozzle.json | 2 +- .../Elegoo PLA PRO @0.2 nozzle.json | 2 +- .../Elegoo PLA Silk @0.2 nozzle.json | 2 +- .../Elegoo PLA+ @0.2 nozzle.json | 2 +- .../Elegoo Rapid PETG @0.2 nozzle.json | 2 +- .../Elegoo Rapid PLA+ @0.2 nozzle.json | 2 +- .../EN2SERIES/Elegoo ASA @EN2 Series.json | 2 +- .../EN2SERIES/Elegoo PETG @EN2 Series.json | 2 +- .../Elegoo PETG PRO @EN2 Series.json | 2 +- .../Elegoo PETG Translucent @EN2 Series.json | 2 +- .../EN2SERIES/Elegoo PETG-CF @EN2 Series.json | 2 +- .../EN2SERIES/Elegoo PETG-GF @EN2 Series.json | 2 +- .../EN2SERIES/Elegoo PLA @EN2 Series.json | 2 +- .../Elegoo PLA Basic @EN2 Series.json | 2 +- .../Elegoo PLA Galaxy @EN2 Series.json | 2 +- .../Elegoo PLA Marble @EN2 Series.json | 2 +- .../Elegoo PLA Matte @EN2 Series.json | 2 +- .../EN2SERIES/Elegoo PLA PRO @EN2 Series.json | 2 +- .../Elegoo PLA Silk @EN2 Series.json | 2 +- .../Elegoo PLA Sparkle @EN2 Series.json | 2 +- .../Elegoo PLA Wood @EN2 Series.json | 2 +- .../EN2SERIES/Elegoo PLA+ @EN2 Series.json | 2 +- .../EN2SERIES/Elegoo PLA-CF @EN2 Series.json | 2 +- .../Elegoo Rapid PETG @EN2 Series.json | 2 +- .../Elegoo Rapid PLA+ @EN2 Series.json | 2 +- .../Elegoo Rapid TPU 95A @EN2 Series.json | 2 +- .../EN3SERIES/Elegoo ASA @EN3 Series.json | 2 +- .../EN3SERIES/Elegoo PETG @EN3 Series.json | 2 +- .../Elegoo PETG PRO @EN3 Series.json | 2 +- .../Elegoo PETG Translucent @EN3 Series.json | 2 +- .../EN3SERIES/Elegoo PETG-CF @EN3 Series.json | 2 +- .../EN3SERIES/Elegoo PETG-GF @EN3 Series.json | 2 +- .../EN3SERIES/Elegoo PLA @EN3 Series.json | 2 +- .../Elegoo PLA Basic @EN3 Series.json | 2 +- .../Elegoo PLA Galaxy @EN3 Series.json | 2 +- .../Elegoo PLA Marble @EN3 Series.json | 2 +- .../Elegoo PLA Matte @EN3 Series.json | 2 +- .../EN3SERIES/Elegoo PLA PRO @EN3 Series.json | 2 +- .../Elegoo PLA Silk @EN3 Series.json | 2 +- .../Elegoo PLA Sparkle @EN3 Series.json | 2 +- .../Elegoo PLA Wood @EN3 Series.json | 2 +- .../EN3SERIES/Elegoo PLA+ @EN3 Series.json | 2 +- .../EN3SERIES/Elegoo PLA-CF @EN3 Series.json | 2 +- .../Elegoo Rapid PETG @EN3 Series.json | 2 +- .../Elegoo Rapid PLA+ @EN3 Series.json | 2 +- .../Elegoo Rapid TPU 95A @EN3 Series.json | 2 +- .../EN3SERIES/Elegoo TPU 95A @EN3 Series.json | 2 +- .../EN4SERIES/Elegoo ASA @EN4 Series.json | 2 +- .../EN4SERIES/Elegoo PETG @EN4 Series.json | 2 +- .../Elegoo PETG PRO @EN4 Series.json | 2 +- .../Elegoo PETG Translucent @EN4 Series.json | 2 +- .../EN4SERIES/Elegoo PETG-CF @EN4 Series.json | 2 +- .../EN4SERIES/Elegoo PETG-GF @EN4 Series.json | 2 +- .../EN4SERIES/Elegoo PLA @EN4 Series.json | 2 +- .../Elegoo PLA Basic @EN4 Series.json | 2 +- .../Elegoo PLA Galaxy @EN4 Series.json | 2 +- .../Elegoo PLA Marble @EN4 Series.json | 2 +- .../Elegoo PLA Matte @EN4 Series.json | 2 +- .../EN4SERIES/Elegoo PLA PRO @EN4 Series.json | 2 +- .../Elegoo PLA Silk @EN4 Series.json | 2 +- .../Elegoo PLA Sparkle @EN4 Series.json | 2 +- .../Elegoo PLA Wood @EN4 Series.json | 2 +- .../EN4SERIES/Elegoo PLA+ @EN4 Series.json | 2 +- .../EN4SERIES/Elegoo PLA-CF @EN4 Series.json | 2 +- .../Elegoo Rapid PETG @EN4 Series.json | 2 +- .../Elegoo Rapid PLA+ @EN4 Series.json | 2 +- .../Elegoo Rapid TPU 95A @EN4 Series.json | 2 +- .../EN4SERIES/Elegoo TPU 95A @EN4 Series.json | 2 +- .../EOSGIGA/Elegoo ASA @Elegoo Giga.json | 2 +- .../EOSGIGA/Elegoo PETG @Elegoo Giga.json | 2 +- .../EOSGIGA/Elegoo PETG PRO @Elegoo Giga.json | 2 +- .../Elegoo PETG Translucent @Elegoo Giga.json | 2 +- .../EOSGIGA/Elegoo PETG-CF @Elegoo Giga.json | 2 +- .../EOSGIGA/Elegoo PETG-GF @Elegoo Giga.json | 2 +- .../EOSGIGA/Elegoo PLA @Elegoo Giga.json | 2 +- .../Elegoo PLA Basic @Elegoo Giga.json | 2 +- .../Elegoo PLA Galaxy @Elegoo Giga.json | 2 +- .../Elegoo PLA Marble @Elegoo Giga.json | 2 +- .../Elegoo PLA Matte @Elegoo Giga.json | 2 +- .../Elegoo PLA Sparkle @Elegoo Giga.json | 2 +- .../EOSGIGA/Elegoo PLA Wood @Elegoo Giga.json | 2 +- .../Elegoo Rapid PETG @Elegoo Giga.json | 2 +- .../Elegoo Rapid PLA+ @Elegoo Giga.json | 2 +- .../Elegoo Rapid TPU 95A @Elegoo Giga.json | 2 +- .../Generic/Generic ABS @Elegoo Centauri.json | 2 +- .../filament/Generic/Generic ABS @Elegoo.json | 2 +- .../Generic ABS-CF @Elegoo Centauri.json | 2 +- .../filament/Generic/Generic ASA @Elegoo.json | 2 +- .../Generic ASA-CF @Elegoo Centauri.json | 2 +- .../filament/Generic/Generic PA @Elegoo.json | 2 +- .../Generic/Generic PA6-CF @Elegoo.json | 2 +- .../filament/Generic/Generic PC @Elegoo.json | 2 +- .../Generic/Generic PC-CF @Elegoo.json | 2 +- .../Generic/Generic PET @Elegoo Centauri.json | 2 +- .../Generic PET-CF @Elegoo Centauri.json | 2 +- .../Generic/Generic PETG @Elegoo.json | 2 +- .../Generic/Generic PETG PRO @Elegoo.json | 2 +- .../Generic PETG-CF @Elegoo Centauri.json | 2 +- .../Generic/Generic PLA @Elegoo Centauri.json | 2 +- .../filament/Generic/Generic PLA @Elegoo.json | 2 +- .../Generic/Generic PLA Matte @Elegoo.json | 2 +- .../EC/Elegoo Centauri 0.2 nozzle.json | 2 +- .../EC/Elegoo Centauri 0.4 nozzle.json | 2 +- .../EC/Elegoo Centauri 0.6 nozzle.json | 2 +- .../EC/Elegoo Centauri 0.8 nozzle.json | 2 +- .../EC2/Elegoo Centauri 2 0.2 nozzle.json | 2 +- .../EC2/Elegoo Centauri 2 0.4 nozzle.json | 2 +- .../EC2/Elegoo Centauri 2 0.6 nozzle.json | 2 +- .../EC2/Elegoo Centauri 2 0.8 nozzle.json | 2 +- .../Elegoo Centauri Carbon 0.2 nozzle.json | 2 +- .../Elegoo Centauri Carbon 0.4 nozzle.json | 2 +- .../Elegoo Centauri Carbon 0.6 nozzle.json | 2 +- .../Elegoo Centauri Carbon 0.8 nozzle.json | 2 +- .../Elegoo Centauri Carbon 2 0.2 nozzle.json | 2 +- .../Elegoo Centauri Carbon 2 0.4 nozzle.json | 2 +- .../Elegoo Centauri Carbon 2 0.6 nozzle.json | 2 +- .../Elegoo Centauri Carbon 2 0.8 nozzle.json | 2 +- .../EN2SERIES/Elegoo Neptune 0.4 nozzle.json | 2 +- .../EN2SERIES/Elegoo Neptune 0.6 nozzle.json | 2 +- .../EN2SERIES/Elegoo Neptune 0.8 nozzle.json | 2 +- .../Elegoo Neptune 2 0.4 nozzle.json | 2 +- .../Elegoo Neptune 2 0.6 nozzle.json | 2 +- .../Elegoo Neptune 2 0.8 nozzle.json | 2 +- .../Elegoo Neptune 2D 0.4 nozzle.json | 2 +- .../Elegoo Neptune 2D 0.6 nozzle.json | 2 +- .../Elegoo Neptune 2D 0.8 nozzle.json | 2 +- .../Elegoo Neptune 2S 0.4 nozzle.json | 2 +- .../Elegoo Neptune 2S 0.6 nozzle.json | 2 +- .../Elegoo Neptune 2S 0.8 nozzle.json | 2 +- .../Elegoo Neptune 3 0.4 nozzle.json | 2 +- .../Elegoo Neptune 3 0.6 nozzle.json | 2 +- .../Elegoo Neptune 3 0.8 nozzle.json | 2 +- .../Elegoo Neptune X 0.4 nozzle.json | 2 +- .../Elegoo Neptune X 0.6 nozzle.json | 2 +- .../Elegoo Neptune X 0.8 nozzle.json | 2 +- .../Elegoo Neptune 3 Max 0.2 nozzle.json | 2 +- .../Elegoo Neptune 3 Max 0.4 nozzle.json | 2 +- .../Elegoo Neptune 3 Max 0.6 nozzle.json | 2 +- .../Elegoo Neptune 3 Max 0.8 nozzle.json | 2 +- .../Elegoo Neptune 3 Max 1.0 nozzle.json | 2 +- .../Elegoo Neptune 3 Plus 0.2 nozzle.json | 2 +- .../Elegoo Neptune 3 Plus 0.4 nozzle.json | 2 +- .../Elegoo Neptune 3 Plus 0.6 nozzle.json | 2 +- .../Elegoo Neptune 3 Plus 0.8 nozzle.json | 2 +- .../Elegoo Neptune 3 Plus 1.0 nozzle.json | 2 +- .../Elegoo Neptune 3 Pro 0.2 nozzle.json | 2 +- .../Elegoo Neptune 3 Pro 0.4 nozzle.json | 2 +- .../Elegoo Neptune 3 Pro 0.6 nozzle.json | 2 +- .../Elegoo Neptune 3 Pro 0.8 nozzle.json | 2 +- .../Elegoo Neptune 3 Pro 1.0 nozzle.json | 2 +- .../Elegoo Neptune 4 0.2 nozzle.json | 2 +- .../Elegoo Neptune 4 0.4 nozzle.json | 2 +- .../Elegoo Neptune 4 0.6 nozzle.json | 2 +- .../Elegoo Neptune 4 0.8 nozzle.json | 2 +- .../Elegoo Neptune 4 1.0 nozzle.json | 2 +- .../Elegoo Neptune 4 Max 0.2 nozzle.json | 2 +- .../Elegoo Neptune 4 Max 0.4 nozzle.json | 2 +- .../Elegoo Neptune 4 Max 0.6 nozzle.json | 2 +- .../Elegoo Neptune 4 Max 0.8 nozzle.json | 2 +- .../Elegoo Neptune 4 Max 1.0 nozzle.json | 2 +- .../Elegoo Neptune 4 Plus 0.2 nozzle.json | 2 +- .../Elegoo Neptune 4 Plus 0.4 nozzle.json | 2 +- .../Elegoo Neptune 4 Plus 0.6 nozzle.json | 2 +- .../Elegoo Neptune 4 Plus 0.8 nozzle.json | 2 +- .../Elegoo Neptune 4 Plus 1.0 nozzle.json | 2 +- .../Elegoo Neptune 4 Pro 0.2 nozzle.json | 2 +- .../Elegoo Neptune 4 Pro 0.4 nozzle.json | 2 +- .../Elegoo Neptune 4 Pro 0.6 nozzle.json | 2 +- .../Elegoo Neptune 4 Pro 0.8 nozzle.json | 2 +- .../Elegoo Neptune 4 Pro 1.0 nozzle.json | 2 +- .../Elegoo OrangeStorm Giga 0.4 nozzle.json | 2 +- .../Elegoo OrangeStorm Giga 0.6 nozzle.json | 2 +- .../Elegoo OrangeStorm Giga 0.8 nozzle.json | 2 +- .../Elegoo OrangeStorm Giga 1.0 nozzle.json | 2 +- .../0.08mm Optimal @Elegoo C 0.2 nozzle.json | 1 + .../0.10mm Standard @Elegoo C 0.2 nozzle.json | 2 +- .../EC/0.12mm Draft @Elegoo C 0.2 nozzle.json | 1 + .../EC/0.12mm Fine @Elegoo C 0.4 nozzle.json | 1 + ...14mm Extra Draft @Elegoo C 0.2 nozzle.json | 1 + ....16mm Extra Fine @Elegoo C 0.8 nozzle.json | 1 + .../0.16mm Optimal @Elegoo C 0.4 nozzle.json | 1 + .../EC/0.18mm Fine @Elegoo C 0.6 nozzle.json | 1 + .../0.20mm Standard @Elegoo C 0.4 nozzle.json | 2 +- .../0.20mm Strength @Elegoo C 0.4 nozzle.json | 1 + .../EC/0.24mm Draft @Elegoo C 0.4 nozzle.json | 1 + .../EC/0.24mm Fine @Elegoo C 0.8 nozzle.json | 1 + .../0.24mm Optimal @Elegoo C 0.6 nozzle.json | 1 + ...28mm Extra Draft @Elegoo C 0.4 nozzle.json | 1 + .../0.30mm Standard @Elegoo C 0.6 nozzle.json | 2 +- .../0.30mm Strength @Elegoo C 0.6 nozzle.json | 1 + .../0.32mm Optimal @Elegoo C 0.8 nozzle.json | 1 + .../EC/0.36mm Draft @Elegoo C 0.6 nozzle.json | 1 + .../0.40mm Standard @Elegoo C 0.8 nozzle.json | 2 +- ...42mm Extra Draft @Elegoo C 0.6 nozzle.json | 1 + .../EC/0.48mm Draft @Elegoo C 0.8 nozzle.json | 1 + .../0.08mm Optimal @Elegoo C2 0.2 nozzle.json | 1 + ...0.10mm Standard @Elegoo C2 0.2 nozzle.json | 2 +- .../0.12mm Draft @Elegoo C2 0.2 nozzle.json | 1 + .../0.12mm Fine @Elegoo C2 0.4 nozzle.json | 1 + ...4mm Extra Draft @Elegoo C2 0.2 nozzle.json | 1 + ...16mm Extra Fine @Elegoo C2 0.8 nozzle.json | 1 + .../0.16mm Optimal @Elegoo C2 0.4 nozzle.json | 1 + .../0.18mm Fine @Elegoo C2 0.6 nozzle.json | 1 + ...0.20mm Standard @Elegoo C2 0.4 nozzle.json | 2 +- ...0.20mm Strength @Elegoo C2 0.4 nozzle.json | 1 + .../0.24mm Draft @Elegoo C2 0.4 nozzle.json | 1 + .../0.24mm Fine @Elegoo C2 0.8 nozzle.json | 1 + .../0.24mm Optimal @Elegoo C2 0.6 nozzle.json | 1 + ...8mm Extra Draft @Elegoo C2 0.4 nozzle.json | 1 + ...0.30mm Standard @Elegoo C2 0.6 nozzle.json | 2 +- ...0.30mm Strength @Elegoo C2 0.6 nozzle.json | 1 + .../0.32mm Optimal @Elegoo C2 0.8 nozzle.json | 1 + .../0.36mm Draft @Elegoo C2 0.6 nozzle.json | 1 + ...0.40mm Standard @Elegoo C2 0.8 nozzle.json | 2 +- ...2mm Extra Draft @Elegoo C2 0.6 nozzle.json | 1 + .../0.48mm Draft @Elegoo C2 0.8 nozzle.json | 1 + .../0.08mm Optimal @Elegoo CC 0.2 nozzle.json | 1 + ...0.10mm Standard @Elegoo CC 0.2 nozzle.json | 2 +- .../0.12mm Draft @Elegoo CC 0.2 nozzle.json | 1 + .../0.12mm Fine @Elegoo CC 0.4 nozzle.json | 1 + ...4mm Extra Draft @Elegoo CC 0.2 nozzle.json | 1 + ...16mm Extra Fine @Elegoo CC 0.8 nozzle.json | 1 + .../0.16mm Optimal @Elegoo CC 0.4 nozzle.json | 1 + .../0.18mm Fine @Elegoo CC 0.6 nozzle.json | 1 + ...0.20mm Standard @Elegoo CC 0.4 nozzle.json | 2 +- ...0.20mm Strength @Elegoo CC 0.4 nozzle.json | 1 + .../0.24mm Draft @Elegoo CC 0.4 nozzle.json | 1 + .../0.24mm Fine @Elegoo CC 0.8 nozzle.json | 1 + .../0.24mm Optimal @Elegoo CC 0.6 nozzle.json | 1 + ...8mm Extra Draft @Elegoo CC 0.4 nozzle.json | 1 + ...0.30mm Standard @Elegoo CC 0.6 nozzle.json | 2 +- ...0.30mm Strength @Elegoo CC 0.6 nozzle.json | 1 + .../0.32mm Optimal @Elegoo CC 0.8 nozzle.json | 1 + .../0.36mm Draft @Elegoo CC 0.6 nozzle.json | 1 + ...0.40mm Standard @Elegoo CC 0.8 nozzle.json | 2 +- ...2mm Extra Draft @Elegoo CC 0.6 nozzle.json | 1 + .../0.48mm Draft @Elegoo CC 0.8 nozzle.json | 1 + ...0.08mm Optimal @Elegoo CC2 0.2 nozzle.json | 1 + ....10mm Standard @Elegoo CC2 0.2 nozzle.json | 2 +- .../0.12mm Draft @Elegoo CC2 0.2 nozzle.json | 1 + .../0.12mm Fine @Elegoo CC2 0.4 nozzle.json | 1 + ...mm Extra Draft @Elegoo CC2 0.2 nozzle.json | 1 + ...6mm Extra Fine @Elegoo CC2 0.8 nozzle.json | 1 + ...0.16mm Optimal @Elegoo CC2 0.4 nozzle.json | 1 + .../0.18mm Fine @Elegoo CC2 0.6 nozzle.json | 1 + ....20mm Standard @Elegoo CC2 0.4 nozzle.json | 2 +- ....20mm Strength @Elegoo CC2 0.4 nozzle.json | 1 + .../0.24mm Draft @Elegoo CC2 0.4 nozzle.json | 1 + .../0.24mm Fine @Elegoo CC2 0.8 nozzle.json | 1 + ...0.24mm Optimal @Elegoo CC2 0.6 nozzle.json | 1 + ...mm Extra Draft @Elegoo CC2 0.4 nozzle.json | 1 + ....30mm Standard @Elegoo CC2 0.6 nozzle.json | 2 +- ....30mm Strength @Elegoo CC2 0.6 nozzle.json | 1 + ...0.32mm Optimal @Elegoo CC2 0.8 nozzle.json | 1 + .../0.36mm Draft @Elegoo CC2 0.6 nozzle.json | 1 + ....40mm Standard @Elegoo CC2 0.8 nozzle.json | 2 +- ...mm Extra Draft @Elegoo CC2 0.6 nozzle.json | 1 + .../0.48mm Draft @Elegoo CC2 0.8 nozzle.json | 1 + ....12mm Fine @Elegoo Neptune 0.4 nozzle.json | 2 +- ...mm Optimal @Elegoo Neptune 0.4 nozzle.json | 2 +- ...m Standard @Elegoo Neptune 0.4 nozzle.json | 2 +- ...m Strength @Elegoo Neptune 0.4 nozzle.json | 2 +- ...24mm Draft @Elegoo Neptune 0.4 nozzle.json | 2 +- ....24mm Fine @Elegoo Neptune 0.8 nozzle.json | 2 +- ...mm Optimal @Elegoo Neptune 0.6 nozzle.json | 2 +- ...xtra Draft @Elegoo Neptune 0.4 nozzle.json | 2 +- ...m Standard @Elegoo Neptune 0.6 nozzle.json | 2 +- ...mm Optimal @Elegoo Neptune 0.8 nozzle.json | 2 +- ...36mm Draft @Elegoo Neptune 0.6 nozzle.json | 2 +- ...m Standard @Elegoo Neptune 0.8 nozzle.json | 2 +- ...xtra Draft @Elegoo Neptune 0.6 nozzle.json | 2 +- ...08mm Optimal @Elegoo N3Max 0.2 nozzle.json | 2 +- ...8mm Optimal @Elegoo N3Plus 0.2 nozzle.json | 2 +- ...08mm Optimal @Elegoo N3Pro 0.2 nozzle.json | 2 +- ...0mm Standard @Elegoo N3Max 0.2 nozzle.json | 2 +- ...mm Standard @Elegoo N3Plus 0.2 nozzle.json | 2 +- ...0mm Standard @Elegoo N3Pro 0.2 nozzle.json | 2 +- ...0.12mm Draft @Elegoo N3Max 0.2 nozzle.json | 4 +- ....12mm Draft @Elegoo N3Plus 0.2 nozzle.json | 4 +- ...0.12mm Draft @Elegoo N3Pro 0.2 nozzle.json | 4 +- .../0.12mm Fine @Elegoo N3Max 0.4 nozzle.json | 1 + ...0.12mm Fine @Elegoo N3Plus 0.4 nozzle.json | 1 + .../0.12mm Fine @Elegoo N3Pro 0.4 nozzle.json | 1 + ...16mm Optimal @Elegoo N3Max 0.4 nozzle.json | 1 + ...6mm Optimal @Elegoo N3Plus 0.4 nozzle.json | 1 + ...16mm Optimal @Elegoo N3Pro 0.4 nozzle.json | 1 + ...0mm Standard @Elegoo N3Max 0.4 nozzle.json | 2 +- ...mm Standard @Elegoo N3Plus 0.4 nozzle.json | 2 +- ...0mm Standard @Elegoo N3Pro 0.4 nozzle.json | 2 +- ...0mm Strength @Elegoo N3Max 0.4 nozzle.json | 1 + ...mm Strength @Elegoo N3Plus 0.4 nozzle.json | 1 + ...0mm Strength @Elegoo N3Pro 0.4 nozzle.json | 1 + ...0.24mm Draft @Elegoo N3Max 0.4 nozzle.json | 1 + ....24mm Draft @Elegoo N3Plus 0.4 nozzle.json | 1 + ...0.24mm Draft @Elegoo N3Pro 0.4 nozzle.json | 1 + .../0.24mm Fine @Elegoo N3Max 0.8 nozzle.json | 2 +- ...0.24mm Fine @Elegoo N3Plus 0.8 nozzle.json | 2 +- .../0.24mm Fine @Elegoo N3Pro 0.8 nozzle.json | 4 +- ...24mm Optimal @Elegoo N3Max 0.6 nozzle.json | 2 +- ...4mm Optimal @Elegoo N3Plus 0.6 nozzle.json | 2 +- ...24mm Optimal @Elegoo N3Pro 0.6 nozzle.json | 2 +- ... Extra Draft @Elegoo N3Max 0.4 nozzle.json | 1 + ...Extra Draft @Elegoo N3Plus 0.4 nozzle.json | 1 + ... Extra Draft @Elegoo N3Pro 0.4 nozzle.json | 1 + .../0.30mm Fine @Elegoo N3Max 1.0 nozzle.json | 2 +- ...0.30mm Fine @Elegoo N3Plus 1.0 nozzle.json | 2 +- .../0.30mm Fine @Elegoo N3Pro 1.0 nozzle.json | 2 +- ...0mm Standard @Elegoo N3Max 0.6 nozzle.json | 2 +- ...mm Standard @Elegoo N3Plus 0.6 nozzle.json | 2 +- ...0mm Standard @Elegoo N3Pro 0.6 nozzle.json | 2 +- ...32mm Optimal @Elegoo N3Max 0.8 nozzle.json | 2 +- ...2mm Optimal @Elegoo N3Plus 0.8 nozzle.json | 2 +- ...32mm Optimal @Elegoo N3Pro 0.8 nozzle.json | 2 +- ...0.36mm Draft @Elegoo N3Max 0.6 nozzle.json | 2 +- ....36mm Draft @Elegoo N3Plus 0.6 nozzle.json | 2 +- ...0.36mm Draft @Elegoo N3Pro 0.6 nozzle.json | 2 +- ...40mm Optimal @Elegoo N3Max 1.0 nozzle.json | 2 +- ...0mm Optimal @Elegoo N3Plus 1.0 nozzle.json | 2 +- ...40mm Optimal @Elegoo N3Pro 1.0 nozzle.json | 2 +- ...0mm Standard @Elegoo N3Max 0.8 nozzle.json | 2 +- ...mm Standard @Elegoo N3Plus 0.8 nozzle.json | 2 +- ...0mm Standard @Elegoo N3Pro 0.8 nozzle.json | 2 +- ... Extra Draft @Elegoo N3Max 0.6 nozzle.json | 2 +- ...Extra Draft @Elegoo N3Plus 0.6 nozzle.json | 2 +- ... Extra Draft @Elegoo N3Pro 0.6 nozzle.json | 2 +- ...0.48mm Draft @Elegoo N3Max 0.8 nozzle.json | 2 +- ....48mm Draft @Elegoo N3Plus 0.8 nozzle.json | 2 +- ...0.48mm Draft @Elegoo N3Pro 0.8 nozzle.json | 2 +- ...0mm Standard @Elegoo N3Max 1.0 nozzle.json | 2 +- ...mm Standard @Elegoo N3Plus 1.0 nozzle.json | 2 +- ...0mm Standard @Elegoo N3Pro 1.0 nozzle.json | 2 +- ...0.60mm Draft @Elegoo N3Max 1.0 nozzle.json | 2 +- ....60mm Draft @Elegoo N3Plus 1.0 nozzle.json | 2 +- ...0.60mm Draft @Elegoo N3Pro 1.0 nozzle.json | 2 +- .../0.08mm Optimal @Elegoo N4 0.2 nozzle.json | 2 +- ...08mm Optimal @Elegoo N4Max 0.2 nozzle.json | 2 +- ...8mm Optimal @Elegoo N4Plus 0.2 nozzle.json | 2 +- ...08mm Optimal @Elegoo N4Pro 0.2 nozzle.json | 2 +- ...0.10mm Standard @Elegoo N4 0.2 nozzle.json | 2 +- ...0mm Standard @Elegoo N4Max 0.2 nozzle.json | 2 +- ...mm Standard @Elegoo N4Plus 0.2 nozzle.json | 2 +- ...0mm Standard @Elegoo N4Pro 0.2 nozzle.json | 2 +- .../0.12mm Draft @Elegoo N4 0.2 nozzle.json | 2 +- ...0.12mm Draft @Elegoo N4Max 0.2 nozzle.json | 2 +- ....12mm Draft @Elegoo N4Plus 0.2 nozzle.json | 2 +- ...0.12mm Draft @Elegoo N4Pro 0.2 nozzle.json | 2 +- .../0.12mm Fine @Elegoo N4 0.4 nozzle.json | 1 + .../0.12mm Fine @Elegoo N4Max 0.4 nozzle.json | 1 + ...0.12mm Fine @Elegoo N4Plus 0.4 nozzle.json | 1 + .../0.12mm Fine @Elegoo N4Pro 0.4 nozzle.json | 1 + .../0.16mm Optimal @Elegoo N4 0.4 nozzle.json | 1 + ...16mm Optimal @Elegoo N4Max 0.4 nozzle.json | 1 + ...6mm Optimal @Elegoo N4Plus 0.4 nozzle.json | 1 + ...16mm Optimal @Elegoo N4Pro 0.4 nozzle.json | 1 + ...0.20mm Standard @Elegoo N4 0.4 nozzle.json | 2 +- ...0mm Standard @Elegoo N4Max 0.4 nozzle.json | 2 +- ...mm Standard @Elegoo N4Plus 0.4 nozzle.json | 2 +- ...0mm Standard @Elegoo N4Pro 0.4 nozzle.json | 2 +- ...0.20mm Strength @Elegoo N4 0.4 nozzle.json | 1 + ...0mm Strength @Elegoo N4Max 0.4 nozzle.json | 1 + ...mm Strength @Elegoo N4Plus 0.4 nozzle.json | 1 + ...0mm Strength @Elegoo N4Pro 0.4 nozzle.json | 1 + .../0.24mm Draft @Elegoo N4 0.4 nozzle.json | 1 + ...0.24mm Draft @Elegoo N4Max 0.4 nozzle.json | 1 + ....24mm Draft @Elegoo N4Plus 0.4 nozzle.json | 1 + ...0.24mm Draft @Elegoo N4Pro 0.4 nozzle.json | 1 + .../0.24mm Fine @Elegoo N4 0.8 nozzle.json | 2 +- .../0.24mm Fine @Elegoo N4Max 0.8 nozzle.json | 2 +- ...0.24mm Fine @Elegoo N4Plus 0.8 nozzle.json | 2 +- .../0.24mm Fine @Elegoo N4Pro 0.8 nozzle.json | 2 +- .../0.24mm Optimal @Elegoo N4 0.6 nozzle.json | 2 +- ...24mm Optimal @Elegoo N4Max 0.6 nozzle.json | 2 +- ...4mm Optimal @Elegoo N4Plus 0.6 nozzle.json | 2 +- ...24mm Optimal @Elegoo N4Pro 0.6 nozzle.json | 2 +- ...8mm Extra Draft @Elegoo N4 0.4 nozzle.json | 1 + ... Extra Draft @Elegoo N4Max 0.4 nozzle.json | 1 + ...Extra Draft @Elegoo N4Plus 0.4 nozzle.json | 1 + ... Extra Draft @Elegoo N4Pro 0.4 nozzle.json | 1 + .../0.30mm Fine @Elegoo N4 1.0 nozzle.json | 4 +- .../0.30mm Fine @Elegoo N4Max 1.0 nozzle.json | 4 +- ...0.30mm Fine @Elegoo N4Plus 1.0 nozzle.json | 4 +- .../0.30mm Fine @Elegoo N4Pro 1.0 nozzle.json | 4 +- ...0.30mm Standard @Elegoo N4 0.6 nozzle.json | 2 +- ...0mm Standard @Elegoo N4Max 0.6 nozzle.json | 2 +- ...mm Standard @Elegoo N4Plus 0.6 nozzle.json | 2 +- ...0mm Standard @Elegoo N4Pro 0.6 nozzle.json | 2 +- .../0.32mm Optimal @Elegoo N4 0.8 nozzle.json | 2 +- ...32mm Optimal @Elegoo N4Max 0.8 nozzle.json | 2 +- ...2mm Optimal @Elegoo N4Plus 0.8 nozzle.json | 2 +- ...32mm Optimal @Elegoo N4Pro 0.8 nozzle.json | 2 +- .../0.36mm Draft @Elegoo N4 0.6 nozzle.json | 2 +- ...0.36mm Draft @Elegoo N4Max 0.6 nozzle.json | 2 +- ....36mm Draft @Elegoo N4Plus 0.6 nozzle.json | 2 +- ...0.36mm Draft @Elegoo N4Pro 0.6 nozzle.json | 2 +- .../0.40mm Optimal @Elegoo N4 1.0 nozzle.json | 4 +- ...40mm Optimal @Elegoo N4Max 1.0 nozzle.json | 4 +- ...0mm Optimal @Elegoo N4Plus 1.0 nozzle.json | 4 +- ...40mm Optimal @Elegoo N4Pro 1.0 nozzle.json | 4 +- ...0.40mm Standard @Elegoo N4 0.8 nozzle.json | 2 +- ...0mm Standard @Elegoo N4Max 0.8 nozzle.json | 2 +- ...mm Standard @Elegoo N4Plus 0.8 nozzle.json | 2 +- ...0mm Standard @Elegoo N4Pro 0.8 nozzle.json | 2 +- ...2mm Extra Draft @Elegoo N4 0.6 nozzle.json | 2 +- ... Extra Draft @Elegoo N4Max 0.6 nozzle.json | 2 +- ...Extra Draft @Elegoo N4Plus 0.6 nozzle.json | 2 +- ... Extra Draft @Elegoo N4Pro 0.6 nozzle.json | 2 +- .../0.48mm Draft @Elegoo N4 0.8 nozzle.json | 2 +- ...0.48mm Draft @Elegoo N4Max 0.8 nozzle.json | 2 +- ....48mm Draft @Elegoo N4Plus 0.8 nozzle.json | 2 +- ...0.48mm Draft @Elegoo N4Pro 0.8 nozzle.json | 2 +- ...0.50mm Standard @Elegoo N4 1.0 nozzle.json | 2 +- ...0mm Standard @Elegoo N4Max 1.0 nozzle.json | 2 +- ...mm Standard @Elegoo N4Plus 1.0 nozzle.json | 2 +- ...0mm Standard @Elegoo N4Pro 1.0 nozzle.json | 2 +- .../0.60mm Draft @Elegoo N4 1.0 nozzle.json | 4 +- ...0.60mm Draft @Elegoo N4Max 1.0 nozzle.json | 4 +- ....60mm Draft @Elegoo N4Plus 1.0 nozzle.json | 4 +- ...0.60mm Draft @Elegoo N4Pro 1.0 nozzle.json | 4 +- ....16mm Optimal @Elegoo Giga 0.4 nozzle.json | 1 + .../0.18mm Fine @Elegoo Giga 0.6 nozzle.json | 1 + ...20mm Standard @Elegoo Giga 0.4 nozzle.json | 2 +- ...20mm Strength @Elegoo Giga 0.4 nozzle.json | 1 + .../0.24mm Draft @Elegoo Giga 0.4 nozzle.json | 1 + .../0.24mm Fine @Elegoo Giga 0.8 nozzle.json | 1 + ....24mm Optimal @Elegoo Giga 0.6 nozzle.json | 1 + ...m Extra Draft @Elegoo Giga 0.4 nozzle.json | 1 + .../0.30mm Fine @Elegoo Giga 1.0 nozzle.json | 1 + ...30mm Standard @Elegoo Giga 0.6 nozzle.json | 2 +- ...30mm Strength @Elegoo Giga 0.6 nozzle.json | 1 + ....32mm Optimal @Elegoo Giga 0.8 nozzle.json | 1 + .../0.36mm Draft @Elegoo Giga 0.6 nozzle.json | 1 + ....40mm Optimal @Elegoo Giga 1.0 nozzle.json | 1 + ...40mm Standard @Elegoo Giga 0.8 nozzle.json | 2 +- ...m Extra Draft @Elegoo Giga 0.6 nozzle.json | 1 + .../0.48mm Draft @Elegoo Giga 0.8 nozzle.json | 1 + ...50mm Standard @Elegoo Giga 1.0 nozzle.json | 2 +- ...m Extra Draft @Elegoo Giga 0.8 nozzle.json | 1 + .../0.60mm Draft @Elegoo Giga 1.0 nozzle.json | 1 + resources/profiles/Eryone.json | 2 +- .../filament/Eryone ABS @0.2 nozzle.json | 1 + .../filament/Eryone ABS-CF @0.2 nozzle.json | 1 + .../Eryone/filament/Eryone ABS-CF.json | 2 +- .../profiles/Eryone/filament/Eryone ABS.json | 2 +- .../filament/Eryone ASA @0.2 nozzle.json | 1 + .../filament/Eryone ASA-CF @0.2 nozzle.json | 1 + .../Eryone/filament/Eryone ASA-CF.json | 2 +- .../profiles/Eryone/filament/Eryone ASA.json | 2 +- .../filament/Eryone PA @0.2 nozzle.json | 1 + .../filament/Eryone PA-CF @0.2 nozzle.json | 1 + .../Eryone/filament/Eryone PA-CF.json | 2 +- .../filament/Eryone PA-GF @0.2 nozzle.json | 1 + .../Eryone/filament/Eryone PA-GF.json | 2 +- .../profiles/Eryone/filament/Eryone PA.json | 2 +- .../filament/Eryone PETG @0.2 nozzle.json | 1 + .../filament/Eryone PETG-CF @0.2 nozzle.json | 1 + .../Eryone/filament/Eryone PETG-CF.json | 2 +- .../profiles/Eryone/filament/Eryone PETG.json | 2 +- .../filament/Eryone PLA @0.2 nozzle.json | 1 + .../filament/Eryone PLA-CF @0.2 nozzle.json | 1 + .../Eryone/filament/Eryone PLA-CF.json | 2 +- .../profiles/Eryone/filament/Eryone PLA.json | 2 +- .../filament/Eryone PP @0.2 nozzle.json | 1 + .../filament/Eryone PP-CF @0.2 nozzle.json | 1 + .../Eryone/filament/Eryone PP-CF.json | 2 +- .../profiles/Eryone/filament/Eryone PP.json | 2 +- .../filament/Eryone Silk PLA @0.2 nozzle.json | 1 + .../Eryone/filament/Eryone Silk PLA.json | 2 +- .../filament/Eryone TPU @0.2 nozzle.json | 1 + .../profiles/Eryone/filament/Eryone TPU.json | 2 +- .../machine/ER20/Eryone ER20 0.2 nozzle.json | 1 + .../machine/ER20/Eryone ER20 0.4 nozzle.json | 1 + .../machine/ER20/Eryone ER20 0.5 nozzle.json | 1 + .../machine/ER20/Eryone ER20 0.6 nozzle.json | 1 + .../machine/ER20/Eryone ER20 0.8 nozzle.json | 1 + .../Eryone ER20 Klipper 0.2 nozzle .json | 1 + .../Eryone ER20 Klipper 0.4 nozzle .json | 1 + .../Eryone ER20 Klipper 0.5 nozzle .json | 1 + .../Eryone ER20 Klipper 0.6 nozzle .json | 1 + .../Eryone ER20 Klipper 0.8 nozzle .json | 1 + .../machine/Thinker X400 0.2 nozzle.json | 2 +- .../machine/Thinker X400 0.4 nozzle.json | 2 +- ...0mm Standard @Thinker X400 0.2 nozzle.json | 1 + .../0.12mm Standard @Thinker X400.json | 1 + .../0.16mm Standard @Thinker X400.json | 1 + .../0.20mm Standard @Thinker X400.json | 2 +- .../0.24mm Standard @Thinker X400.json | 1 + ... High Quality @Eryone ER20 0.2 nozzle.json | 1 + ....08mm Optimal @Eryone ER20 0.2 nozzle.json | 1 + ...10mm Standard @Eryone ER20 0.2 nozzle.json | 1 + .../0.12mm Draft @Eryone ER20 0.2 nozzle.json | 1 + .../0.12mm High Quality @Eryone ER20.json | 1 + ...m Extra Draft @Eryone ER20 0.2 nozzle.json | 1 + ....15mm Optimal @Eryone ER20 0.5 nozzle.json | 1 + .../0.16mm Optimal @Eryone ER20.json | 1 + .../0.18mm Fine @Eryone ER20 0.6 nozzle.json | 1 + .../0.20mm Standard @Eryone ER20.json | 1 + .../0.20mm Strength @Eryone ER20.json | 1 + .../0.24mm Draft @Eryone ER20.json | 1 + .../0.24mm Fine @Eryone ER20 0.8 nozzle.json | 1 + ....24mm Optimal @Eryone ER20 0.6 nozzle.json | 1 + ...25mm Standard @Eryone ER20 0.5 nozzle.json | 1 + .../0.28mm Extra Draft @Eryone ER20.json | 1 + ...30mm Standard @Eryone ER20 0.6 nozzle.json | 1 + ...30mm Strength @Eryone ER20 0.6 nozzle.json | 1 + ....32mm Optimal @Eryone ER20 0.8 nozzle.json | 1 + .../0.36mm Draft @Eryone ER20 0.6 nozzle.json | 1 + ...40mm Standard @Eryone ER20 0.8 nozzle.json | 1 + ...m Extra Draft @Eryone ER20 0.6 nozzle.json | 1 + .../0.48mm Draft @Eryone ER20 0.8 nozzle.json | 1 + ...m Extra Draft @Eryone ER20 0.8 nozzle.json | 1 + ...ality @Eryone ER20 Klipper 0.2 nozzle.json | 1 + ...timal @Eryone ER20 Klipper 0.2 nozzle.json | 1 + ...ndard @Eryone ER20 Klipper 0.2 nozzle.json | 1 + ...Draft @Eryone ER20 Klipper 0.2 nozzle.json | 1 + ...2mm High Quality @Eryone ER20 Klipper.json | 1 + ...Draft @Eryone ER20 Klipper 0.2 nozzle.json | 1 + ...timal @Eryone ER20 Klipper 0.5 nozzle.json | 1 + .../0.16mm Optimal @Eryone ER20 Klipper.json | 1 + ... Fine @Eryone ER20 Klipper 0.6 nozzle.json | 1 + .../0.20mm Standard @Eryone ER20 Klipper.json | 1 + .../0.20mm Strength @Eryone ER20 Klipper.json | 1 + .../0.24mm Draft @Eryone ER20 Klipper.json | 1 + ... Fine @Eryone ER20 Klipper 0.8 nozzle.json | 1 + ...timal @Eryone ER20 Klipper 0.6 nozzle.json | 1 + ...ndard @Eryone ER20 Klipper 0.5 nozzle.json | 1 + ...28mm Extra Draft @Eryone ER20 Klipper.json | 1 + ...ndard @Eryone ER20 Klipper 0.6 nozzle.json | 1 + ...ength @Eryone ER20 Klipper 0.6 nozzle.json | 1 + ...timal @Eryone ER20 Klipper 0.8 nozzle.json | 1 + ...Draft @Eryone ER20 Klipper 0.6 nozzle.json | 1 + ...ndard @Eryone ER20 Klipper 0.8 nozzle.json | 1 + ...Draft @Eryone ER20 Klipper 0.6 nozzle.json | 1 + ...Draft @Eryone ER20 Klipper 0.8 nozzle.json | 1 + ...Draft @Eryone ER20 Klipper 0.8 nozzle.json | 1 + resources/profiles/FLSun.json | 2 +- .../FLSun/filament/FLSun Generic ABS.json | 2 +- .../FLSun/filament/FLSun Generic ASA.json | 2 +- .../FLSun/filament/FLSun Generic PA-CF.json | 2 +- .../FLSun/filament/FLSun Generic PA.json | 2 +- .../FLSun/filament/FLSun Generic PC.json | 2 +- .../FLSun/filament/FLSun Generic PETG.json | 2 +- .../FLSun/filament/FLSun Generic PLA-CF.json | 2 +- .../FLSun/filament/FLSun Generic PLA.json | 2 +- .../FLSun/filament/FLSun Generic PVA.json | 2 +- .../FLSun/filament/FLSun Generic TPU.json | 2 +- .../profiles/FLSun/filament/FLSun S1 ABS.json | 2 +- .../profiles/FLSun/filament/FLSun S1 ASA.json | 2 +- .../FLSun/filament/FLSun S1 PETG.json | 2 +- .../FLSun/filament/FLSun S1 PLA Generic.json | 2 +- .../filament/FLSun S1 PLA High Speed.json | 2 +- .../FLSun/filament/FLSun S1 PLA Silk.json | 2 +- .../profiles/FLSun/filament/FLSun S1 TPU.json | 2 +- .../profiles/FLSun/filament/FLSun T1 ABS.json | 2 +- .../profiles/FLSun/filament/FLSun T1 ASA.json | 2 +- .../FLSun/filament/FLSun T1 PETG.json | 2 +- .../FLSun/filament/FLSun T1 PLA Generic.json | 2 +- .../filament/FLSun T1 PLA High Speed.json | 2 +- .../FLSun/filament/FLSun T1 PLA Silk.json | 2 +- .../profiles/FLSun/filament/FLSun T1 TPU.json | 2 +- .../FLSun/machine/FLSun Q5 0.4 nozzle.json | 2 +- .../machine/FLSun QQ-S Pro 0.4 nozzle.json | 2 +- .../FLSun/machine/FLSun S1 0.4 nozzle.json | 2 +- .../FLSun/machine/FLSun SR 0.4 nozzle.json | 2 +- .../FLSun/machine/FLSun T1 0.4 nozzle.json | 2 +- .../FLSun/machine/FLSun V400 0.4 nozzle.json | 2 +- .../FLSun/process/0.08mm Fine @FLSun Q5.json | 2 +- .../process/0.08mm Fine @FLSun QQSPro.json | 2 +- .../FLSun/process/0.08mm Fine @FLSun SR.json | 2 +- .../FLSun/process/0.12mm Fine @FLSun S1.json | 2 +- .../FLSun/process/0.12mm Fine @FLSun T1.json | 2 +- .../process/0.16mm Optimal @FLSun Q5.json | 2 +- .../process/0.16mm Optimal @FLSun QQSPro.json | 2 +- .../process/0.16mm Optimal @FLSun S1.json | 2 +- .../process/0.16mm Optimal @FLSun SR.json | 2 +- .../process/0.16mm Optimal @FLSun T1.json | 2 +- .../process/0.20mm Standard @FLSun Q5.json | 2 +- .../0.20mm Standard @FLSun QQSPro.json | 2 +- .../process/0.20mm Standard @FLSun S1.json | 2 +- .../process/0.20mm Standard @FLSun SR.json | 2 +- .../process/0.20mm Standard @FLSun T1.json | 2 +- .../process/0.20mm Standard @FLSun V400.json | 2 +- .../FLSun/process/0.24mm Draft @FLSun Q5.json | 2 +- .../process/0.24mm Draft @FLSun QQSPro.json | 2 +- .../FLSun/process/0.24mm Draft @FLSun S1.json | 2 +- .../FLSun/process/0.24mm Draft @FLSun SR.json | 2 +- .../FLSun/process/0.24mm Draft @FLSun T1.json | 2 +- .../process/0.30mm Extra Draft @FLSun Q5.json | 2 +- .../0.30mm Extra Draft @FLSun QQSPro.json | 2 +- .../process/0.30mm Extra Draft @FLSun S1.json | 2 +- .../process/0.30mm Extra Draft @FLSun SR.json | 2 +- .../process/0.30mm Extra Draft @FLSun T1.json | 2 +- resources/profiles/Flashforge.json | 2 +- .../FlashForge PC @FF G4 0.6 HF nozzle.json | 1 + .../FlashForge PC @FF G4 0.6 nozzle.json | 1 + .../FlashForge PC @FF G4 0.8 HF nozzle.json | 1 + .../FlashForge PC @FF G4P 0.6 HF nozzle.json | 1 + .../FlashForge PC @FF G4P 0.6 nozzle.json | 1 + .../FlashForge PC @FF G4P 0.8 HF nozzle.json | 1 + .../FlashForge PPS @FF G4 0.6 HF nozzle.json | 1 + .../FlashForge PPS @FF G4 0.6 nozzle.json | 1 + .../FlashForge PPS @FF G4 0.8 HF nozzle.json | 1 + .../FlashForge PPS @FF G4P 0.6 HF nozzle.json | 1 + .../FlashForge PPS @FF G4P 0.6 nozzle.json | 1 + .../FlashForge PPS @FF G4P 0.8 HF nozzle.json | 1 + .../FlashForge PPS-CF @FF G4 0.6 nozzle.json | 1 + .../FlashForge PPS-CF @FF G4P 0.6 nozzle.json | 1 + .../Flashforge ABS @FF AD5M 0.25 Nozzle.json | 1 - ...hforge ABS Basic @FF AD5M 0.25 nozzle.json | 2 +- ...hforge ABS Basic @FF AD5X 0.25 nozzle.json | 2 +- ...shforge ABS Basic @FF AD5X 0.6 nozzle.json | 2 +- ...shforge ABS Basic @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge ABS Basic @FF AD5X.json | 2 +- .../filament/Flashforge ABS Basic @FF C5.json | 1 + .../Flashforge ABS Basic @FF C5P.json | 1 + ...ashforge ABS Basic @FF G4 0.25 nozzle.json | 1 + ...hforge ABS Basic @FF G4 0.6 HF nozzle.json | 1 + ...lashforge ABS Basic @FF G4 0.6 nozzle.json | 1 + ...hforge ABS Basic @FF G4 0.8 HF nozzle.json | 1 + .../Flashforge ABS Basic @FF G4 HF.json | 1 + .../filament/Flashforge ABS Basic @FF G4.json | 1 + ...shforge ABS Basic @FF G4P 0.25 nozzle.json | 1 + ...forge ABS Basic @FF G4P 0.6 HF nozzle.json | 1 + ...ashforge ABS Basic @FF G4P 0.6 nozzle.json | 1 + ...forge ABS Basic @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge ABS Basic @FF G4P HF.json | 1 + .../Flashforge ABS Basic @FF G4P.json | 1 + .../filament/Flashforge ABS Basic.json | 2 +- .../Flashforge ABS-CF @FF G4 0.6 nozzle.json | 1 + .../filament/Flashforge ABS-CF @FF G4.json | 1 + .../Flashforge ABS-CF @FF G4P 0.6 nozzle.json | 1 + .../filament/Flashforge ABS-CF @FF G4P.json | 1 + .../filament/Flashforge ABS-GF @FF C5.json | 1 + .../filament/Flashforge ABS-GF @FF C5P.json | 1 + .../Flashforge ASA @FF AD5M 0.25 Nozzle.json | 1 - ...hforge ASA Basic @FF AD5M 0.25 nozzle.json | 2 +- ...hforge ASA Basic @FF AD5X 0.25 nozzle.json | 2 +- ...shforge ASA Basic @FF AD5X 0.6 nozzle.json | 2 +- ...shforge ASA Basic @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge ASA Basic @FF AD5X.json | 2 +- .../filament/Flashforge ASA Basic @FF C5.json | 1 + .../Flashforge ASA Basic @FF C5P.json | 1 + ...ashforge ASA Basic @FF G4 0.25 nozzle.json | 1 + ...hforge ASA Basic @FF G4 0.6 HF nozzle.json | 1 + ...lashforge ASA Basic @FF G4 0.6 nozzle.json | 1 + ...hforge ASA Basic @FF G4 0.8 HF nozzle.json | 1 + .../Flashforge ASA Basic @FF G4 HF.json | 1 + .../filament/Flashforge ASA Basic @FF G4.json | 1 + ...shforge ASA Basic @FF G4P 0.25 nozzle.json | 1 + ...forge ASA Basic @FF G4P 0.6 HF nozzle.json | 1 + ...ashforge ASA Basic @FF G4P 0.6 nozzle.json | 1 + ...forge ASA Basic @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge ASA Basic @FF G4P HF.json | 1 + .../Flashforge ASA Basic @FF G4P.json | 1 + .../filament/Flashforge ASA Basic.json | 2 +- .../filament/Flashforge ASA-CF @FF C5.json | 1 + .../filament/Flashforge ASA-CF @FF C5P.json | 1 + .../filament/Flashforge ASA-CF @FF G4.json | 1 + .../filament/Flashforge ASA-CF @FF G4P.json | 1 + .../filament/Flashforge ASA-CF.json | 2 +- .../filament/Flashforge ASA-GF @FF C5.json | 1 + .../filament/Flashforge ASA-GF @FF C5P.json | 1 + ...orge Generic ABS @FF AD5M 0.25 Nozzle.json | 2 +- ...lashforge Generic ABS @G3U 0.6 Nozzle.json | 2 +- .../filament/Flashforge Generic ABS @G3U.json | 2 +- .../filament/Flashforge Generic ABS.json | 2 +- ...orge Generic ASA @FF AD5M 0.25 Nozzle.json | 2 +- ...lashforge Generic ASA @G3U 0.6 Nozzle.json | 2 +- .../filament/Flashforge Generic ASA @G3U.json | 2 +- .../filament/Flashforge Generic ASA.json | 2 +- ...ashforge Generic HIPS @G3U 0.6 Nozzle.json | 2 +- .../filament/Flashforge Generic HIPS.json | 2 +- ...e Generic HS PLA @FF AD5M 0.25 Nozzle.json | 2 +- .../filament/Flashforge Generic HS PLA.json | 2 +- ...rge Generic PETG @FF AD5M 0.25 Nozzle.json | 2 +- ...orge Generic PETG @Flashforge Artemis.json | 2 +- ...ashforge Generic PETG @G3U 0.6 Nozzle.json | 2 +- ...ashforge Generic PETG @G3U 0.8 Nozzle.json | 2 +- .../Flashforge Generic PETG @G3U.json | 2 +- ...forge Generic PETG-CF @G3U 0.6 Nozzle.json | 2 +- ...forge Generic PETG-CF @G3U 0.8 Nozzle.json | 2 +- .../Flashforge Generic PETG-CF @G3U.json | 2 +- .../Flashforge Generic PETG-CF10.json | 2 +- .../filament/Flashforge Generic PETG.json | 2 +- ...orge Generic PLA @FF AD5M 0.25 Nozzle.json | 2 +- ...lashforge Generic PLA @G3U 0.6 Nozzle.json | 1 - ...lashforge Generic PLA @G3U 0.8 Nozzle.json | 1 - .../filament/Flashforge Generic PLA @G3U.json | 2 +- ...hforge Generic PLA-CF @G3U 0.6 Nozzle.json | 2 +- ...hforge Generic PLA-CF @G3U 0.8 Nozzle.json | 2 +- .../Flashforge Generic PLA-CF @G3U.json | 2 +- .../filament/Flashforge Generic PLA-CF10.json | 2 +- ...Generic PLA-SILK @FF AD5M 0.25 Nozzle.json | 2 +- .../filament/Flashforge Generic PLA-Silk.json | 2 +- .../filament/Flashforge Generic PLA.json | 2 +- .../filament/Flashforge Generic PVA.json | 2 +- .../filament/Flashforge Generic TPU.json | 2 +- .../filament/Flashforge HIPS @FF C5.json | 1 + .../filament/Flashforge HIPS @FF C5P.json | 1 + .../Flashforge HIPS @FF G4 0.6 HF nozzle.json | 1 + .../Flashforge HIPS @FF G4 0.6 nozzle.json | 1 + .../Flashforge HIPS @FF G4 0.8 HF nozzle.json | 1 + .../filament/Flashforge HIPS @FF G4 HF.json | 1 + .../filament/Flashforge HIPS @FF G4.json | 1 + ...Flashforge HIPS @FF G4P 0.6 HF nozzle.json | 1 + .../Flashforge HIPS @FF G4P 0.6 nozzle.json | 1 + ...Flashforge HIPS @FF G4P 0.8 HF nozzle.json | 1 + .../filament/Flashforge HIPS @FF G4P HF.json | 1 + .../filament/Flashforge HIPS @FF G4P.json | 1 + ...ashforge HS PETG @FF AD5M 0.25 nozzle.json | 2 +- ...ashforge HS PETG @FF AD5X 0.25 nozzle.json | 2 +- ...lashforge HS PETG @FF AD5X 0.6 nozzle.json | 2 +- ...lashforge HS PETG @FF AD5X 0.8 nozzle.json | 2 +- .../filament/Flashforge HS PETG @FF AD5X.json | 2 +- .../filament/Flashforge HS PETG @FF C5.json | 1 + .../filament/Flashforge HS PETG @FF C5P.json | 1 + ...Flashforge HS PETG @FF G4 0.25 nozzle.json | 1 + ...ashforge HS PETG @FF G4 0.6 HF nozzle.json | 1 + .../Flashforge HS PETG @FF G4 0.6 nozzle.json | 1 + ...ashforge HS PETG @FF G4 0.8 HF nozzle.json | 1 + .../Flashforge HS PETG @FF G4 HF.json | 1 + .../filament/Flashforge HS PETG @FF G4.json | 1 + ...lashforge HS PETG @FF G4P 0.25 nozzle.json | 1 + ...shforge HS PETG @FF G4P 0.6 HF nozzle.json | 1 + ...Flashforge HS PETG @FF G4P 0.6 nozzle.json | 1 + ...shforge HS PETG @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge HS PETG @FF G4P HF.json | 1 + .../filament/Flashforge HS PETG @FF G4P.json | 1 + .../filament/Flashforge HS PETG.json | 2 +- ...lashforge HS PLA @FF AD5M 0.25 Nozzle.json | 2 +- ...lashforge HS PLA @FF AD5X 0.25 nozzle.json | 2 +- ...Flashforge HS PLA @FF AD5X 0.6 nozzle.json | 2 +- ...Flashforge HS PLA @FF AD5X 0.8 nozzle.json | 2 +- .../filament/Flashforge HS PLA @FF AD5X.json | 2 +- .../filament/Flashforge HS PLA @FF C5.json | 1 + .../filament/Flashforge HS PLA @FF C5P.json | 1 + .../Flashforge HS PLA @FF G4 0.25 nozzle.json | 1 + ...lashforge HS PLA @FF G4 0.6 HF nozzle.json | 1 + .../Flashforge HS PLA @FF G4 0.6 nozzle.json | 1 + ...lashforge HS PLA @FF G4 0.8 HF nozzle.json | 1 + .../filament/Flashforge HS PLA @FF G4 HF.json | 1 + .../filament/Flashforge HS PLA @FF G4.json | 1 + ...Flashforge HS PLA @FF G4P 0.25 nozzle.json | 1 + ...ashforge HS PLA @FF G4P 0.6 HF nozzle.json | 1 + .../Flashforge HS PLA @FF G4P 0.6 nozzle.json | 1 + ...ashforge HS PLA @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge HS PLA @FF G4P HF.json | 1 + .../filament/Flashforge HS PLA @FF G4P.json | 1 + ... HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json | 1 + .../Flashforge HS PLA Burnt Ti @FF G4 HF.json | 1 + ...HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json | 1 + ...Flashforge HS PLA Burnt Ti @FF G4P HF.json | 1 + ...orge HS PLA Burnt Ti@FF G4 0.6 nozzle.json | 1 + ...e HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json | 1 + ...rge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json | 1 + ... HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json | 1 + .../filament/Flashforge HS PLA.json | 2 +- .../Flashforge PA @FF G4 0.6 HF nozzle.json | 1 + .../filament/Flashforge PA @FF G4 HF.json | 1 + .../filament/Flashforge PA @FF G4.json | 1 + .../Flashforge PA @FF G4P 0.6 HF nozzle.json | 1 + .../filament/Flashforge PA @FF G4P HF.json | 1 + .../filament/Flashforge PA @FF G4P.json | 1 + .../filament/Flashforge PA-CF @FF C5.json | 1 + .../filament/Flashforge PA-CF @FF C5P.json | 1 + .../filament/Flashforge PA-CF @FF G4.json | 1 + .../filament/Flashforge PA-CF @FF G4P.json | 1 + .../filament/Flashforge PA12-CF.json | 2 +- .../filament/Flashforge PA6-CF.json | 2 +- .../filament/Flashforge PA66-CF.json | 2 +- .../filament/Flashforge PAHT-CF @FF C5.json | 1 + .../filament/Flashforge PAHT-CF @FF C5P.json | 1 + .../filament/Flashforge PAHT-CF @FF G4.json | 1 + .../filament/Flashforge PAHT-CF @FF G4P.json | 1 + .../filament/Flashforge PET-CF @FF C5.json | 1 + .../filament/Flashforge PET-CF @FF C5P.json | 1 + .../filament/Flashforge PET-CF.json | 2 +- .../Flashforge PETG @FF AD5M 0.25 Nozzle.json | 1 - ...forge PETG Basic @FF AD5M 0.25 nozzle.json | 2 +- .../filament/Flashforge PETG Basic.json | 2 +- ...shforge PETG Pro @FF AD5M 0.25 nozzle.json | 2 +- ...shforge PETG Pro @FF AD5X 0.25 nozzle.json | 2 +- ...ashforge PETG Pro @FF AD5X 0.6 nozzle.json | 2 +- ...ashforge PETG Pro @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge PETG Pro @FF AD5X.json | 2 +- .../filament/Flashforge PETG Pro @FF C5.json | 1 + .../filament/Flashforge PETG Pro @FF C5P.json | 1 + ...lashforge PETG Pro @FF G4 0.25 nozzle.json | 1 + ...shforge PETG Pro @FF G4 0.6 HF nozzle.json | 1 + ...Flashforge PETG Pro @FF G4 0.6 nozzle.json | 1 + ...shforge PETG Pro @FF G4 0.8 HF nozzle.json | 1 + .../Flashforge PETG Pro @FF G4 HF.json | 1 + .../filament/Flashforge PETG Pro @FF G4.json | 1 + ...ashforge PETG Pro @FF G4P 0.25 nozzle.json | 1 + ...hforge PETG Pro @FF G4P 0.6 HF nozzle.json | 1 + ...lashforge PETG Pro @FF G4P 0.6 nozzle.json | 1 + ...hforge PETG Pro @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge PETG Pro @FF G4P HF.json | 1 + .../filament/Flashforge PETG Pro @FF G4P.json | 1 + .../filament/Flashforge PETG Pro.json | 2 +- ...PETG Transparent @FF AD5M 0.25 nozzle.json | 2 +- ...PETG Transparent @FF AD5X 0.25 nozzle.json | 2 +- ... PETG Transparent @FF AD5X 0.6 nozzle.json | 2 +- ... PETG Transparent @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge PETG Transparent @FF AD5X.json | 2 +- .../Flashforge PETG Transparent @FF C5.json | 1 + .../Flashforge PETG Transparent @FF C5P.json | 1 + ...e PETG Transparent @FF G4 0.25 nozzle.json | 1 + ...PETG Transparent @FF G4 0.6 HF nozzle.json | 1 + ...ge PETG Transparent @FF G4 0.6 nozzle.json | 1 + ...PETG Transparent @FF G4 0.8 HF nozzle.json | 1 + ...Flashforge PETG Transparent @FF G4 HF.json | 1 + .../Flashforge PETG Transparent @FF G4.json | 1 + ... PETG Transparent @FF G4P 0.25 nozzle.json | 1 + ...ETG Transparent @FF G4P 0.6 HF nozzle.json | 1 + ...e PETG Transparent @FF G4P 0.6 nozzle.json | 1 + ...ETG Transparent @FF G4P 0.8 HF nozzle.json | 1 + ...lashforge PETG Transparent @FF G4P HF.json | 1 + .../Flashforge PETG Transparent @FF G4P.json | 1 + .../filament/Flashforge PETG Transparent.json | 2 +- ...lashforge PETG-CF @FF AD5X 0.6 nozzle.json | 2 +- ...lashforge PETG-CF @FF AD5X 0.8 nozzle.json | 2 +- .../filament/Flashforge PETG-CF @FF AD5X.json | 2 +- .../filament/Flashforge PETG-CF @FF C5.json | 1 + .../filament/Flashforge PETG-CF @FF C5P.json | 1 + .../Flashforge PETG-CF @FF G4 0.6 nozzle.json | 1 + .../filament/Flashforge PETG-CF @FF G4.json | 1 + ...Flashforge PETG-CF @FF G4P 0.6 nozzle.json | 1 + .../filament/Flashforge PETG-CF @FF G4P.json | 1 + .../filament/Flashforge PETG-CF.json | 2 +- .../Flashforge PLA Matte @FF C5.json | 1 + .../Flashforge PLA Matte @FF C5P.json | 1 + .../Flashforge PLA Metal @FF C5.json | 1 + .../Flashforge PLA Metal @FF C5P.json | 1 + .../filament/Flashforge PLA Pro @FF C5.json | 1 + .../filament/Flashforge PLA Pro @FF C5P.json | 1 + .../Flashforge PLA @FF AD5M 0.25 Nozzle.json | 1 - ...hforge PLA Basic @FF AD5M 0.25 nozzle.json | 2 +- ...hforge PLA Basic @FF AD5X 0.25 nozzle.json | 2 +- ...shforge PLA Basic @FF AD5X 0.6 nozzle.json | 2 +- ...shforge PLA Basic @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge PLA Basic @FF AD5X.json | 2 +- .../filament/Flashforge PLA Basic @FF C5.json | 1 + .../Flashforge PLA Basic @FF C5P.json | 1 + ...ashforge PLA Basic @FF G4 0.25 nozzle.json | 1 + ...hforge PLA Basic @FF G4 0.6 HF nozzle.json | 1 + ...lashforge PLA Basic @FF G4 0.6 nozzle.json | 1 + ...hforge PLA Basic @FF G4 0.8 HF nozzle.json | 1 + .../Flashforge PLA Basic @FF G4 HF.json | 1 + .../filament/Flashforge PLA Basic @FF G4.json | 1 + ...shforge PLA Basic @FF G4P 0.25 nozzle.json | 1 + ...forge PLA Basic @FF G4P 0.6 HF nozzle.json | 1 + ...ashforge PLA Basic @FF G4P 0.6 nozzle.json | 1 + ...forge PLA Basic @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge PLA Basic @FF G4P HF.json | 1 + .../Flashforge PLA Basic @FF G4P.json | 1 + .../filament/Flashforge PLA Basic.json | 2 +- ...hforge PLA Buint Ti @FF G4 0.8 nozzle.json | 1 + ...forge PLA Buint Ti @FF G4P 0.8 nozzle.json | 1 + ...PLA Color Change @FF AD5M 0.25 nozzle.json | 2 +- ...PLA Color Change @FF AD5X 0.25 nozzle.json | 2 +- ... PLA Color Change @FF AD5X 0.6 nozzle.json | 2 +- ... PLA Color Change @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge PLA Color Change @FF AD5X.json | 2 +- .../Flashforge PLA Color Change @FF C5.json | 1 + .../Flashforge PLA Color Change @FF C5P.json | 1 + ...e PLA Color Change @FF G4 0.25 nozzle.json | 1 + ...PLA Color Change @FF G4 0.6 HF nozzle.json | 1 + ...ge PLA Color Change @FF G4 0.6 nozzle.json | 1 + ...PLA Color Change @FF G4 0.8 HF nozzle.json | 1 + ...Flashforge PLA Color Change @FF G4 HF.json | 1 + .../Flashforge PLA Color Change @FF G4.json | 1 + ... PLA Color Change @FF G4P 0.25 nozzle.json | 1 + ...LA Color Change @FF G4P 0.6 HF nozzle.json | 1 + ...e PLA Color Change @FF G4P 0.6 nozzle.json | 1 + ...LA Color Change @FF G4P 0.8 HF nozzle.json | 1 + ...lashforge PLA Color Change @FF G4P HF.json | 1 + .../Flashforge PLA Color Change @FF G4P.json | 1 + .../filament/Flashforge PLA Color Change.json | 2 +- ...forge PLA Galaxy @FF AD5M 0.25 nozzle.json | 2 +- ...forge PLA Galaxy @FF AD5X 0.25 nozzle.json | 2 +- ...hforge PLA Galaxy @FF AD5X 0.6 nozzle.json | 2 +- ...hforge PLA Galaxy @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge PLA Galaxy @FF AD5X.json | 2 +- .../Flashforge PLA Galaxy @FF C5.json | 1 + .../Flashforge PLA Galaxy @FF C5P.json | 1 + ...shforge PLA Galaxy @FF G4 0.25 nozzle.json | 1 + ...forge PLA Galaxy @FF G4 0.6 HF nozzle.json | 1 + ...ashforge PLA Galaxy @FF G4 0.6 nozzle.json | 1 + ...forge PLA Galaxy @FF G4 0.8 HF nozzle.json | 1 + .../Flashforge PLA Galaxy @FF G4 HF.json | 1 + .../Flashforge PLA Galaxy @FF G4.json | 1 + ...hforge PLA Galaxy @FF G4P 0.25 nozzle.json | 1 + ...orge PLA Galaxy @FF G4P 0.6 HF nozzle.json | 1 + ...shforge PLA Galaxy @FF G4P 0.6 nozzle.json | 1 + ...orge PLA Galaxy @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge PLA Galaxy @FF G4P HF.json | 1 + .../Flashforge PLA Galaxy @FF G4P.json | 1 + .../filament/Flashforge PLA Galaxy.json | 2 +- ...rge PLA Luminous @FF AD5M 0.25 nozzle.json | 2 +- ...rge PLA Luminous @FF AD5X 0.25 nozzle.json | 2 +- ...orge PLA Luminous @FF AD5X 0.6 nozzle.json | 2 +- ...orge PLA Luminous @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge PLA Luminous @FF AD5X.json | 2 +- .../Flashforge PLA Luminous @FF C5.json | 1 + .../Flashforge PLA Luminous @FF C5P.json | 1 + ...forge PLA Luminous @FF G4 0.25 nozzle.json | 1 + ...rge PLA Luminous @FF G4 0.6 HF nozzle.json | 1 + ...rge PLA Luminous @FF G4 0.8 HF nozzle.json | 1 + .../Flashforge PLA Luminous @FF G4 HF.json | 1 + .../Flashforge PLA Luminous @FF G4.json | 1 + ...orge PLA Luminous @FF G4P 0.25 nozzle.json | 1 + ...ge PLA Luminous @FF G4P 0.6 HF nozzle.json | 1 + ...ge PLA Luminous @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge PLA Luminous @FF G4P HF.json | 1 + .../Flashforge PLA Luminous @FF G4P.json | 1 + .../filament/Flashforge PLA Luminous.json | 2 +- ...hforge PLA Matte @FF AD5M 0.25 nozzle.json | 2 +- ...hforge PLA Matte @FF AD5X 0.25 nozzle.json | 2 +- ...shforge PLA Matte @FF AD5X 0.6 nozzle.json | 2 +- ...shforge PLA Matte @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge PLA Matte @FF AD5X.json | 2 +- ...ashforge PLA Matte @FF G4 0.25 nozzle.json | 1 + ...hforge PLA Matte @FF G4 0.6 HF nozzle.json | 1 + ...lashforge PLA Matte @FF G4 0.6 nozzle.json | 1 + ...hforge PLA Matte @FF G4 0.8 HF nozzle.json | 1 + .../Flashforge PLA Matte @FF G4 HF.json | 1 + .../filament/Flashforge PLA Matte @FF G4.json | 1 + ...shforge PLA Matte @FF G4P 0.25 nozzle.json | 1 + ...forge PLA Matte @FF G4P 0.6 HF nozzle.json | 1 + ...ashforge PLA Matte @FF G4P 0.6 nozzle.json | 1 + ...forge PLA Matte @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge PLA Matte @FF G4P HF.json | 1 + .../Flashforge PLA Matte @FF G4P.json | 1 + .../filament/Flashforge PLA Matte.json | 2 +- ...hforge PLA Metal @FF AD5M 0.25 nozzle.json | 2 +- ...hforge PLA Metal @FF AD5X 0.25 nozzle.json | 2 +- ...shforge PLA Metal @FF AD5X 0.6 nozzle.json | 2 +- ...shforge PLA Metal @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge PLA Metal @FF AD5X.json | 2 +- ...ashforge PLA Metal @FF G4 0.25 nozzle.json | 1 + ...hforge PLA Metal @FF G4 0.6 HF nozzle.json | 1 + ...lashforge PLA Metal @FF G4 0.6 nozzle.json | 1 + ...hforge PLA Metal @FF G4 0.8 HF nozzle.json | 1 + .../Flashforge PLA Metal @FF G4 HF.json | 1 + .../filament/Flashforge PLA Metal @FF G4.json | 1 + ...shforge PLA Metal @FF G4P 0.25 nozzle.json | 1 + ...forge PLA Metal @FF G4P 0.6 HF nozzle.json | 1 + ...ashforge PLA Metal @FF G4P 0.6 nozzle.json | 1 + ...forge PLA Metal @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge PLA Metal @FF G4P HF.json | 1 + .../Flashforge PLA Metal @FF G4P.json | 1 + .../filament/Flashforge PLA Metal.json | 2 +- ...ashforge PLA Pro @FF AD5M 0.25 nozzle.json | 2 +- ...ashforge PLA Pro @FF AD5X 0.25 nozzle.json | 2 +- ...lashforge PLA Pro @FF AD5X 0.6 nozzle.json | 2 +- ...lashforge PLA Pro @FF AD5X 0.8 nozzle.json | 2 +- .../filament/Flashforge PLA Pro @FF AD5X.json | 2 +- ...Flashforge PLA Pro @FF G4 0.25 nozzle.json | 1 + ...ashforge PLA Pro @FF G4 0.6 HF nozzle.json | 1 + .../Flashforge PLA Pro @FF G4 0.6 nozzle.json | 1 + ...ashforge PLA Pro @FF G4 0.8 HF nozzle.json | 1 + .../Flashforge PLA Pro @FF G4 HF.json | 1 + .../filament/Flashforge PLA Pro @FF G4.json | 1 + ...lashforge PLA Pro @FF G4P 0.25 nozzle.json | 1 + ...shforge PLA Pro @FF G4P 0.6 HF nozzle.json | 1 + ...Flashforge PLA Pro @FF G4P 0.6 nozzle.json | 1 + ...shforge PLA Pro @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge PLA Pro @FF G4P HF.json | 1 + .../filament/Flashforge PLA Pro @FF G4P.json | 1 + .../filament/Flashforge PLA Pro.json | 2 +- ...shforge PLA Silk @FF AD5M 0.25 nozzle.json | 2 +- ...shforge PLA Silk @FF AD5X 0.25 nozzle.json | 2 +- ...ashforge PLA Silk @FF AD5X 0.6 nozzle.json | 2 +- ...ashforge PLA Silk @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge PLA Silk @FF AD5X.json | 2 +- .../filament/Flashforge PLA Silk @FF C5.json | 1 + .../filament/Flashforge PLA Silk @FF C5P.json | 1 + ...lashforge PLA Silk @FF G4 0.25 nozzle.json | 1 + ...shforge PLA Silk @FF G4 0.6 HF nozzle.json | 1 + ...Flashforge PLA Silk @FF G4 0.6 nozzle.json | 1 + ...shforge PLA Silk @FF G4 0.8 HF nozzle.json | 1 + .../Flashforge PLA Silk @FF G4 HF.json | 1 + .../filament/Flashforge PLA Silk @FF G4.json | 1 + ...ashforge PLA Silk @FF G4P 0.25 nozzle.json | 1 + ...hforge PLA Silk @FF G4P 0.6 HF nozzle.json | 1 + ...lashforge PLA Silk @FF G4P 0.6 nozzle.json | 1 + ...hforge PLA Silk @FF G4P 0.8 HF nozzle.json | 1 + .../Flashforge PLA Silk @FF G4P HF.json | 1 + .../filament/Flashforge PLA Silk @FF G4P.json | 1 + .../filament/Flashforge PLA Silk.json | 2 +- ...orge PLA Sparkle @FF AD5M 0.25 nozzle.json | 2 +- ...orge PLA Sparkle @FF AD5X 0.25 nozzle.json | 2 +- ...forge PLA Sparkle @FF AD5X 0.6 nozzle.json | 2 +- ...forge PLA Sparkle @FF AD5X 0.8 nozzle.json | 2 +- .../Flashforge PLA Sparkle @FF AD5X.json | 2 +- ...hforge PLA Sparkle @FF G4 0.25 nozzle.json | 1 + ...orge PLA Sparkle @FF G4 0.6 HF nozzle.json | 1 + ...shforge PLA Sparkle @FF G4 0.6 nozzle.json | 1 + .../Flashforge PLA Sparkle @FF G4 HF.json | 1 + .../Flashforge PLA Sparkle @FF G4.json | 1 + ...forge PLA Sparkle @FF G4P 0.25 nozzle.json | 1 + ...rge PLA Sparkle @FF G4P 0.6 HF nozzle.json | 1 + ...hforge PLA Sparkle @FF G4P 0.6 nozzle.json | 1 + .../Flashforge PLA Sparkle @FF G4P HF.json | 1 + .../Flashforge PLA Sparkle @FF G4P.json | 1 + .../filament/Flashforge PLA Sparkle.json | 2 +- ...Flashforge PLA-CF @FF AD5X 0.6 nozzle.json | 2 +- ...Flashforge PLA-CF @FF AD5X 0.8 nozzle.json | 2 +- .../filament/Flashforge PLA-CF @FF AD5X.json | 2 +- .../filament/Flashforge PLA-CF @FF C5.json | 1 + .../filament/Flashforge PLA-CF @FF C5P.json | 1 + .../Flashforge PLA-CF @FF G4 0.6 nozzle.json | 1 + .../filament/Flashforge PLA-CF @FF G4.json | 1 + .../Flashforge PLA-CF @FF G4P 0.6 nozzle.json | 1 + .../filament/Flashforge PLA-CF @FF G4P.json | 1 + .../filament/Flashforge PLA-CF.json | 2 +- ...shforge PLA-SILK @FF AD5M 0.25 Nozzle.json | 1 - .../filament/Flashforge PPA-CF @FF C5.json | 1 + .../filament/Flashforge PPA-CF @FF C5P.json | 1 + .../filament/Flashforge PPA-CF.json | 2 +- .../filament/Flashforge PPA-GF.json | 2 +- .../filament/Flashforge PPS @FF G4.json | 1 + .../filament/Flashforge PPS @FF G4P.json | 1 + .../filament/Flashforge PPS-CF @FF C5.json | 1 + .../filament/Flashforge PPS-CF @FF C5P.json | 1 + .../filament/Flashforge PPS-CF @FF G4.json | 1 + .../filament/Flashforge PPS-CF @FF G4P.json | 1 + .../filament/Flashforge PPS-CF.json | 2 +- .../filament/Flashforge PVA @FF C5.json | 1 + .../filament/Flashforge PVA @FF C5P.json | 1 + ...ashforge TPU 65D @FF G4 0.6 HF nozzle.json | 1 + .../Flashforge TPU 65D @FF G4 0.6 nozzle.json | 1 + ...ashforge TPU 65D @FF G4 0.8 HF nozzle.json | 1 + ...shforge TPU 65D @FF G4P 0.6 HF nozzle.json | 1 + ...Flashforge TPU 65D @FF G4P 0.6 nozzle.json | 1 + ...shforge TPU 65D @FF G4P 0.8 HF nozzle.json | 1 + ...lashforge TPU 95A @FF AD5X 0.6 nozzle.json | 2 +- ...lashforge TPU 95A @FF AD5X 0.8 nozzle.json | 2 +- .../filament/Flashforge TPU 95A @FF AD5X.json | 2 +- ...ashforge TPU 95A @FF G4 0.6 HF nozzle.json | 1 + .../Flashforge TPU 95A @FF G4 0.6 nozzle.json | 1 + ...ashforge TPU 95A @FF G4 0.8 HF nozzle.json | 1 + .../filament/Flashforge TPU 95A @FF G4.json | 1 + ...shforge TPU 95A @FF G4P 0.6 HF nozzle.json | 1 + ...Flashforge TPU 95A @FF G4P 0.6 nozzle.json | 1 + ...shforge TPU 95A @FF G4P 0.8 HF nozzle.json | 1 + .../filament/Flashforge TPU 95A @FF G4P.json | 1 + .../filament/Flashforge TPU 95A.json | 2 +- .../filament/Flashforge TPU-64D @FF C5.json | 1 + .../filament/Flashforge TPU-64D @FF C5P.json | 1 + .../filament/Flashforge TPU-90A @FF C5.json | 1 + .../filament/Flashforge TPU-90A @FF C5P.json | 1 + .../filament/Flashforge TPU-95A @FF C5.json | 1 + .../filament/Flashforge TPU-95A @FF C5P.json | 1 + .../Flashforge/Flashforge ABS @FF AD3.json | 2 +- .../Flashforge/Flashforge PETG @FF AD3.json | 2 +- .../Flashforge/Flashforge PLA @FF AD3.json | 2 +- .../FusRock PAHT @FF G4 0.6 HF nozzle.json | 1 + .../FusRock PAHT @FF G4 0.6 nozzle.json | 1 + .../FusRock PAHT @FF G4 0.8 HF nozzle.json | 1 + .../FusRock PAHT @FF G4P 0.6 HF nozzle.json | 1 + .../FusRock PAHT @FF G4P 0.6 nozzle.json | 1 + .../FusRock PAHT @FF G4P 0.8 HF nozzle.json | 1 + .../filament/FusRock PAHT-CF @FF C5.json | 1 + .../filament/FusRock PAHT-CF @FF C5P.json | 1 + .../FusRock PAHT-CF @FF G4 0.6 nozzle.json | 1 + .../filament/FusRock PAHT-CF @FF G4.json | 1 + .../FusRock PAHT-CF @FF G4P 0.6 nozzle.json | 1 + .../filament/FusRock PAHT-CF @FF G4P.json | 1 + .../FusRock PET @FF G4P 0.8 HF nozzle.json | 1 + .../FusRock PET-CF @FF G4 0.6 nozzle.json | 1 + .../filament/FusRock PET-CF @FF G4.json | 1 + .../FusRock PET-CF @FF G4P 0.6 nozzle.json | 1 + .../filament/FusRock PET-CF @FF G4P.json | 1 + .../filament/FusRock S-Multi @FF C5.json | 1 + .../filament/FusRock S-Multi @FF C5P.json | 1 + .../filament/FusRock S-PAHT @FF C5.json | 1 + .../filament/FusRock S-PAHT @FF C5P.json | 1 + .../FusRock/FusRock Generic NexPA-CF25.json | 2 +- ...sRock Generic PAHT-CF @G3U 0.6 Nozzle.json | 2 +- .../FusRock/FusRock Generic PAHT-CF.json | 2 +- .../FusRock/FusRock Generic PAHT-GF.json | 2 +- ...usRock Generic PET-CF @G3U 0.6 Nozzle.json | 2 +- .../FusRock/FusRock Generic PET-CF.json | 2 +- .../FusRock/FusRock Generic PET-GF.json | 2 +- ...sRock Generic S-Multi @G3U 0.6 Nozzle.json | 2 +- .../FusRock/FusRock Generic S-Multi.json | 2 +- ...usRock Generic S-PAHT @G3U 0.6 Nozzle.json | 2 +- .../FusRock/FusRock Generic S-PAHT.json | 2 +- .../filament/Generic ABS @Flashforge AD4.json | 2 +- .../filament/Generic ASA @Flashforge AD4.json | 2 +- .../filament/Generic BVOH @FF C5.json | 1 + .../filament/Generic BVOH @FF C5P.json | 1 + .../Generic PET @FF G4 0.6 HF nozzle.json | 1 + .../Generic PET @FF G4 0.6 nozzle.json | 1 + .../Generic PET @FF G4 0.8 HF nozzle.json | 1 + .../filament/Generic PET @FF G4.json | 1 + .../Generic PET @FF G4P 0.6 HF nozzle.json | 1 + .../Generic PET @FF G4P 0.6 nozzle.json | 1 + .../Generic PET @FF G4P 0.8 HF nozzle.json | 1 + .../filament/Generic PET @FF G4P.json | 1 + .../Generic PETG @Flashforge AD4.json | 2 +- .../Generic PETG-CF10 @Flashforge AD4.json | 2 +- .../filament/Generic PLA @FF C5.json | 1 + .../filament/Generic PLA @FF C5P.json | 1 + .../filament/Generic PLA @Flashforge AD4.json | 2 +- ...eneric PLA High Speed @Flashforge AD4.json | 2 +- .../filament/Generic PLA Silk @FF C5.json | 1 + .../filament/Generic PLA Silk @FF C5P.json | 1 + .../Generic PLA Silk @Flashforge AD4.json | 2 +- .../Generic PLA-CF10 @Flashforge AD4.json | 2 +- .../Generic TPU 85A @FF AD5X 0.6 nozzle.json | 2 +- .../Generic TPU 85A @FF AD5X 0.8 nozzle.json | 2 +- .../filament/Generic TPU 85A @FF AD5X.json | 2 +- .../filament/Generic TPU @Flashforge AD4.json | 2 +- .../filament/Generic TPU-64D @FF C5.json | 1 + .../filament/Generic TPU-64D @FF C5P.json | 1 + .../filament/Generic TPU-90A @FF C5.json | 1 + .../filament/Generic TPU-90A @FF C5P.json | 1 + .../filament/Generic TPU-95A @FF C5.json | 1 + .../filament/Generic TPU-95A @FF C5P.json | 1 + .../Polymaker CoPA @FF G4 0.6 HF nozzle.json | 1 + .../Polymaker CoPA @FF G4 0.6 nozzle.json | 1 + .../Polymaker CoPA @FF G4 0.8 HF nozzle.json | 1 + .../Polymaker CoPA @FF G4P 0.6 HF nozzle.json | 1 + .../Polymaker CoPA @FF G4P 0.6 nozzle.json | 1 + .../Polymaker CoPA @FF G4P 0.8 HF nozzle.json | 1 + .../Polymaker/Polymaker Generic CoPA.json | 2 +- .../Polymaker/Polymaker Generic S1.json | 2 +- .../filament/SUNLU/SUNLU PETG @FF AD3.json | 2 +- .../SUNLU PETG @FF AD5M 0.25 nozzle.json | 2 +- .../SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json | 2 +- .../filament/SUNLU/SUNLU PETG @FF AD5M.json | 2 +- .../SUNLU/SUNLU PLA Marble @FF AD3.json | 2 +- .../SUNLU/SUNLU PLA Marble @FF AD5M.json | 2 +- .../SUNLU/SUNLU PLA Matte @FF AD3.json | 2 +- .../SUNLU PLA Matte @FF AD5M 0.25 nozzle.json | 2 +- .../SUNLU/SUNLU PLA Matte @FF AD5M.json | 2 +- .../SUNLU/SUNLU PLA+ 2.0 @FF AD3.json | 2 +- .../SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json | 2 +- .../SUNLU/SUNLU PLA+ 2.0 @FF AD5M.json | 2 +- .../filament/SUNLU/SUNLU PLA+ @FF AD3.json | 2 +- .../SUNLU PLA+ @FF AD5M 0.25 nozzle.json | 2 +- .../filament/SUNLU/SUNLU PLA+ @FF AD5M.json | 2 +- .../SUNLU/SUNLU Silk PLA+ @FF AD3.json | 2 +- .../SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json | 2 +- .../SUNLU/SUNLU Silk PLA+ @FF AD5M.json | 2 +- .../SUNLU/SUNLU Wood PLA @FF AD3.json | 2 +- .../SUNLU/SUNLU Wood PLA @FF AD5M.json | 2 +- .../machine/FlashForge AD5X 0.25 nozzle.json | 2 +- .../machine/Flashforge AD5X 0.4 nozzle.json | 2 +- .../machine/Flashforge AD5X 0.6 nozzle.json | 2 +- .../machine/Flashforge AD5X 0.8 nozzle.json | 2 +- ...hforge Adventurer 3 Series 0.4 nozzle.json | 2 +- ...hforge Adventurer 3 Series 0.6 nozzle.json | 2 +- ...hforge Adventurer 4 Series 0.3 nozzle.json | 2 +- ...hforge Adventurer 4 Series 0.4 nozzle.json | 2 +- ...hforge Adventurer 4 Series 0.6 nozzle.json | 2 +- ...shforge Adventurer 4 Series HS nozzle.json | 2 +- .../Flashforge Adventurer 5M 0.25 Nozzle.json | 2 +- .../Flashforge Adventurer 5M 0.4 Nozzle.json | 2 +- .../Flashforge Adventurer 5M 0.6 Nozzle.json | 2 +- .../Flashforge Adventurer 5M 0.8 Nozzle.json | 2 +- ...shforge Adventurer 5M Pro 0.25 Nozzle.json | 2 +- ...ashforge Adventurer 5M Pro 0.4 Nozzle.json | 2 +- ...ashforge Adventurer 5M Pro 0.6 Nozzle.json | 2 +- ...ashforge Adventurer 5M Pro 0.8 Nozzle.json | 2 +- .../Flashforge Artemis 0.4 Nozzle.json | 2 +- .../Flashforge Creator 5 0.4 nozzle.json | 2 +- .../Flashforge Creator 5 0.6 nozzle.json | 2 +- .../Flashforge Creator 5 0.8 nozzle.json | 1 + .../Flashforge Creator 5 Pro 0.4 nozzle.json | 1 + .../Flashforge Creator 5 Pro 0.6 nozzle.json | 1 + .../Flashforge Creator 5 Pro 0.8 nozzle.json | 1 + .../Flashforge Guider 2s 0.4 nozzle.json | 2 +- .../Flashforge Guider 3 Ultra 0.4 Nozzle.json | 2 +- .../Flashforge Guider 3 Ultra 0.6 Nozzle.json | 2 +- .../Flashforge Guider 3 Ultra 0.8 Nozzle.json | 2 +- .../Flashforge Guider4 0.25 nozzle.json | 1 + .../Flashforge Guider4 0.4 HF nozzle.json | 1 + .../Flashforge Guider4 0.4 nozzle.json | 1 + .../Flashforge Guider4 0.6 HF nozzle.json | 1 + .../Flashforge Guider4 0.6 nozzle.json | 1 + .../Flashforge Guider4 0.8 HF nozzle.json | 1 + .../Flashforge Guider4 Pro 0.25 nozzle.json | 1 + .../Flashforge Guider4 Pro 0.4 HF nozzle.json | 1 + .../Flashforge Guider4 Pro 0.4 nozzle.json | 1 + .../Flashforge Guider4 Pro 0.6 HF nozzle.json | 1 + .../Flashforge Guider4 Pro 0.6 nozzle.json | 1 + .../Flashforge Guider4 Pro 0.8 HF nozzle.json | 1 + ...Standard @Flashforge AD5M 0.25 Nozzle.json | 2 +- ...dard @Flashforge AD5M Pro 0.25 Nozzle.json | 2 +- ...Standard @Flashforge AD5M 0.25 Nozzle.json | 2 +- ...dard @Flashforge AD5M Pro 0.25 Nozzle.json | 2 +- .../0.10mm Standard @FF AD5X 0.25 nozzle.json | 2 +- .../0.10mm Standard @FF G4 0.25 nozzle.json | 1 + .../0.10mm Standard @FF G4P 0.25 nozzle.json | 1 + ...Standard @Flashforge AD5M 0.25 Nozzle.json | 2 +- ...dard @Flashforge AD5M Pro 0.25 Nozzle.json | 2 +- ...tail @Flashforge Guider 2s 0.4 nozzle.json | 2 +- ...12mm Fine @Flashforge AD5M 0.4 Nozzle.json | 1 + ... Fine @Flashforge AD5M Pro 0.4 Nozzle.json | 1 + ....12mm Fine @Flashforge G3U 0.4 Nozzle.json | 2 +- .../0.12mm Standard @FF AD5X 0.25 nozzle.json | 2 +- .../process/0.12mm Standard @FF C5.json | 1 + .../0.12mm Standard @FF G4 0.25 nozzle.json | 1 + .../0.12mm Standard @FF G4P 0.25 nozzle.json | 1 + ...Standard @Flashforge AD5M 0.25 Nozzle.json | 2 +- ...dard @Flashforge AD5M Pro 0.25 Nozzle.json | 2 +- ...m Standard @Flashforge AD4 0.3 Nozzle.json | 2 +- .../0.14mm Standard @FF AD5X 0.25 nozzle.json | 2 +- .../0.14mm Standard @FF G4 0.25 nozzle.json | 1 + .../0.14mm Standard @FF G4P 0.25 nozzle.json | 1 + ...Standard @Flashforge AD5M 0.25 Nozzle.json | 2 +- ...dard @Flashforge AD5M Pro 0.25 Nozzle.json | 2 +- ...imal @Flashforge Guider 2s 0.4 nozzle.json | 2 +- .../process/0.16mm Standard @FF AD5X.json | 2 +- .../process/0.16mm Standard @FF G4 HF.json | 1 + .../process/0.16mm Standard @FF G4.json | 1 + .../process/0.16mm Standard @FF G4P HF.json | 1 + .../process/0.16mm Standard @FF G4P.json | 1 + .../0.18mm Fine @FF AD5X 0.6 nozzle.json | 1 + ...18mm Fine @Flashforge AD5M 0.6 Nozzle.json | 1 + ... Fine @Flashforge AD5M Pro 0.6 Nozzle.json | 1 + .../0.18mm Standard @FF C5 0.6 nozzle.json | 1 + ...m Standard @Flashforge G3U 0.6 Nozzle.json | 2 +- ... High-Speed @Flashforge AD4 HS Nozzle.json | 2 +- .../process/0.20mm Standard @FF AD5X.json | 2 +- .../process/0.20mm Standard @FF C5.json | 1 + .../process/0.20mm Standard @FF G4 HF.json | 1 + .../0.20mm Standard @FF G4 PLA600.json | 1 + .../process/0.20mm Standard @FF G4.json | 1 + ....20mm Standard @FF G4P HF for PLA 600.json | 1 + .../process/0.20mm Standard @FF G4P HF.json | 1 + .../process/0.20mm Standard @FF G4P.json | 1 + ...m Standard @Flashforge AD3 0.4 Nozzle.json | 2 +- ...m Standard @Flashforge AD4 0.4 Nozzle.json | 2 +- ... Standard @Flashforge AD5M 0.4 Nozzle.json | 2 +- ...ndard @Flashforge AD5M Pro 0.4 Nozzle.json | 2 +- ...andard @Flashforge Artemis 0.4 Nozzle.json | 2 +- ...m Standard @Flashforge G3U 0.4 Nozzle.json | 2 +- ...dard @Flashforge Guider 2s 0.4 nozzle.json | 2 +- .../process/0.24mm Draft @FF AD5X.json | 2 +- ...4mm Draft @Flashforge AD5M 0.4 Nozzle.json | 1 + ...Draft @Flashforge AD5M Pro 0.4 Nozzle.json | 1 + ...24mm Draft @Flashforge G3U 0.4 Nozzle.json | 2 +- .../0.24mm Fine @FF AD5X 0.8 nozzle.json | 1 + ...24mm Fine @Flashforge AD5M 0.8 Nozzle.json | 1 + ... Fine @Flashforge AD5M Pro 0.8 Nozzle.json | 1 + .../process/0.24mm Standard @FF C5.json | 1 + .../process/0.24mm Standard @FF G4 HF.json | 1 + .../process/0.24mm Standard @FF G4.json | 1 + .../process/0.24mm Standard @FF G4P HF.json | 1 + .../process/0.24mm Standard @FF G4P.json | 1 + .../0.25mm Standard @FF G4 0.6 HF nozzle.json | 1 + .../0.25mm Standard @FF G4 0.6 nozzle.json | 1 + ...0.25mm Standard @FF G4P 0.6 HF nozzle.json | 1 + .../0.25mm Standard @FF G4P 0.6 nozzle.json | 1 + ...raft @Flashforge Guider 2s 0.4 nozzle.json | 2 +- ....30mm Fast @Flashforge AD3 0.4 Nozzle.json | 2 +- ....30mm Fast @Flashforge AD4 0.4 Nozzle.json | 2 +- .../0.30mm Standard @FF AD5X 0.6 nozzle.json | 2 +- .../0.30mm Standard @FF C5 0.6 nozzle.json | 1 + .../0.30mm Standard @FF G4 0.6 nozzle.json | 1 + .../0.30mm Standard @FF G4P 0.6 nozzle.json | 1 + ...m Standard @Flashforge AD3 0.6 Nozzle.json | 2 +- ...m Standard @Flashforge AD4 0.6 Nozzle.json | 2 +- ... Standard @Flashforge AD5M 0.6 Nozzle.json | 2 +- ...ndard @Flashforge AD5M Pro 0.6 Nozzle.json | 2 +- ...m Standard @Flashforge G3U 0.6 Nozzle.json | 2 +- .../0.32mm Standard @FF C5 0.8 nozzle.json | 1 + .../0.32mm Standard @FF G4 0.8 HF nozzle.json | 1 + ...0.32mm Standard @FF G4P 0.8 HF nozzle.json | 1 + .../0.36mm Standard @FF G4 0.6 HF nozzle.json | 1 + .../0.36mm Standard @FF G4 0.6 nozzle.json | 1 + ...0.36mm Standard @FF G4P 0.6 HF nozzle.json | 1 + .../0.36mm Standard @FF G4P 0.6 nozzle.json | 1 + .../0.3mm Standard @FF G4 0.6 HF nozzle.json | 1 + .../0.3mm Standard @FF G4P 0.6 HF nozzle.json | 1 + .../0.40mm Standard @FF AD5X 0.8 nozzle.json | 1 + .../0.40mm Standard @FF G4 0.8 HF nozzle.json | 1 + ...0.40mm Standard @FF G4P 0.8 HF nozzle.json | 1 + ... Standard @Flashforge AD5M 0.8 Nozzle.json | 2 +- ...ndard @Flashforge AD5M Pro 0.8 Nozzle.json | 2 +- ...m Standard @Flashforge G3U 0.8 Nozzle.json | 2 +- .../0.42mm Draft @FF AD5X 0.6 nozzle.json | 1 + ...2mm Draft @Flashforge AD5M 0.6 Nozzle.json | 1 + ...Draft @Flashforge AD5M Pro 0.6 Nozzle.json | 1 + .../0.42mm Standard @FF C5 0.6 nozzle.json | 1 + .../0.42mm Standard @FF G4 0.6 HF nozzle.json | 1 + .../0.42mm Standard @FF G4 0.6 nozzle.json | 1 + ...0.42mm Standard @FF G4P 0.6 HF nozzle.json | 1 + .../0.42mm Standard @FF G4P 0.6 nozzle.json | 1 + ...m Standard @Flashforge G3U 0.6 Nozzle.json | 2 +- .../0.48mm Standard @FF C5 0.8 nozzle.json | 1 + .../0.48mm Standard @FF G4 0.8 HF nozzle.json | 1 + ...0.48mm Standard @FF G4P 0.8 HF nozzle.json | 1 + .../0.4mm Standard @FF C5 0.8 nozzle.json | 1 + .../0.56mm Draft @FF AD5X 0.8 nozzle.json | 1 + ...6mm Draft @Flashforge AD5M 0.8 Nozzle.json | 1 + ...Draft @Flashforge AD5M Pro 0.8 Nozzle.json | 1 + resources/profiles/FlyingBear.json | 2 +- .../filament/FlyingBear Generic ABS.json | 2 +- .../filament/FlyingBear Generic PA-CF.json | 2 +- .../filament/FlyingBear Generic PC.json | 2 +- .../filament/FlyingBear Generic PETG.json | 2 +- .../filament/FlyingBear Generic PLA.json | 2 +- .../filament/FlyingBear Generic TPU.json | 2 +- .../filament/FlyingBear PLA Hyper.json | 2 +- .../Ghost7/FlyingBear ABS @Ghost7.json | 2 +- .../Ghost7/FlyingBear PA-CF @Ghost7.json | 2 +- .../Ghost7/FlyingBear PC @Ghost7.json | 2 +- .../Ghost7/FlyingBear PETG Basic @Ghost7.json | 2 +- .../Ghost7/FlyingBear PLA Basic @Ghost7.json | 2 +- .../Ghost7/FlyingBear PLA Hyper @Ghost7.json | 2 +- .../Ghost7/FlyingBear TPU Basic @Ghost7.json | 2 +- .../filament/S1/FlyingBear ABS @S1.json | 2 +- .../filament/S1/FlyingBear PA-CF @S1.json | 2 +- .../filament/S1/FlyingBear PC @S1.json | 2 +- .../filament/S1/FlyingBear PETG @S1.json | 2 +- .../filament/S1/FlyingBear PLA @S1.json | 2 +- .../filament/S1/FlyingBear PLA Hyper @S1.json | 2 +- .../filament/S1/FlyingBear TPU @S1.json | 2 +- .../FlyingBear/filament/S1/Other ABS @S1.json | 2 +- .../filament/S1/Other PA-CF @S1.json | 2 +- .../FlyingBear/filament/S1/Other PC @S1.json | 2 +- .../filament/S1/Other PETG @S1.json | 2 +- .../FlyingBear/filament/S1/Other PLA @S1.json | 2 +- .../filament/S1/Other PLA Hyper @S1.json | 2 +- .../FlyingBear/filament/S1/Other TPU @S1.json | 2 +- .../FlyingBear Ghost 6 0.4 nozzle.json | 2 +- .../FlyingBear Reborn3 0.4 nozzle.json | 2 +- .../Ghost7/FlyingBear Ghost7 0.4 nozzle.json | 2 +- .../machine/S1/FlyingBear S1 0.4 nozzle.json | 2 +- ...0.08mm Extra Fine @FlyingBear Reborn3.json | 2 +- ...m Fine @FlyingBear Ghost 6 0.4 nozzle.json | 2 +- .../0.12mm Fine @FlyingBear Reborn3.json | 2 +- ...ptimal @FlyingBear Ghost 6 0.4 nozzle.json | 2 +- .../0.16mm Optimal @FlyingBear Reborn3.json | 2 +- ...andard @FlyingBear Ghost 6 0.4 nozzle.json | 2 +- .../0.20mm Standard @FlyingBear Reborn3.json | 2 +- ... Draft @FlyingBear Ghost 6 0.4 nozzle.json | 2 +- .../0.24mm Draft @FlyingBear Reborn3.json | 2 +- .../0.08mm Extra Fine @FlyingBear Ghost7.json | 2 +- .../0.12mm Fine @FlyingBear Ghost7.json | 2 +- .../0.16mm Optimal @FlyingBear Ghost7.json | 2 +- .../0.20mm Standard @FlyingBear Ghost7.json | 2 +- .../0.24mm Draft @FlyingBear Ghost7.json | 2 +- .../S1/0.08mm Extra Fine @FlyingBear S1.json | 2 +- .../S1/0.12mm Fine @FlyingBear S1.json | 2 +- .../S1/0.16mm Optimal @FlyingBear S1.json | 2 +- .../S1/0.20mm Standard @FlyingBear S1.json | 2 +- .../S1/0.24mm Draft @FlyingBear S1.json | 2 +- resources/profiles/Folgertech.json | 2 +- .../machine/Folgertech FT-5 0.4 nozzle.json | 2 +- .../machine/Folgertech FT-5 0.6 nozzle.json | 2 +- .../machine/Folgertech FT-6 0.4 nozzle.json | 2 +- .../machine/Folgertech FT-6 0.6 nozzle.json | 2 +- .../machine/Folgertech i3 0.4 nozzle.json | 2 +- .../machine/Folgertech i3 0.6 nozzle.json | 2 +- .../process/0.08mm Extra Fine @FT.json | 2 +- .../Folgertech/process/0.12mm Fine @FT.json | 2 +- .../process/0.16mm Optimal @FT.json | 2 +- .../process/0.18mm Fine @FT 0.6 nozzle.json | 2 +- .../process/0.20mm Standard @FT.json | 2 +- .../process/0.20mm Strength @FT.json | 2 +- .../Folgertech/process/0.24mm Draft @FT.json | 2 +- .../0.24mm Optimal @FT 0.6 nozzle.json | 2 +- .../process/0.28mm Extra Draft @FT.json | 2 +- .../0.30mm Standard @FT 0.6 nozzle.json | 2 +- .../0.30mm Strength @FT 0.6 nozzle.json | 2 +- .../process/0.36mm Draft @FT 0.6 nozzle.json | 2 +- .../0.42mm Extra Draft @FT 0.6 nozzle.json | 2 +- resources/profiles/Geeetech.json | 2 +- .../machine/Geeetech A10 M 0.4 nozzle.json | 2 +- .../machine/Geeetech A10 Pro 0.2 nozzle.json | 2 +- .../machine/Geeetech A10 Pro 0.4 nozzle.json | 2 +- .../machine/Geeetech A10 Pro 0.6 nozzle.json | 2 +- .../machine/Geeetech A10 Pro 0.8 nozzle.json | 2 +- .../machine/Geeetech A10 T 0.4 nozzle.json | 2 +- .../machine/Geeetech A20 0.2 nozzle.json | 2 +- .../machine/Geeetech A20 0.4 nozzle.json | 2 +- .../machine/Geeetech A20 0.6 nozzle.json | 2 +- .../machine/Geeetech A20 0.8 nozzle.json | 2 +- .../machine/Geeetech A20 M 0.4 nozzle.json | 2 +- .../machine/Geeetech A20 T 0.4 nozzle.json | 2 +- .../machine/Geeetech A30 M 0.4 nozzle.json | 2 +- .../machine/Geeetech A30 Pro 0.2 nozzle.json | 2 +- .../machine/Geeetech A30 Pro 0.4 nozzle.json | 2 +- .../machine/Geeetech A30 Pro 0.6 nozzle.json | 2 +- .../machine/Geeetech A30 Pro 0.8 nozzle.json | 2 +- .../machine/Geeetech A30 T 0.4 nozzle.json | 2 +- .../machine/Geeetech M1 0.2 nozzle.json | 2 +- .../machine/Geeetech M1 0.4 nozzle.json | 2 +- .../machine/Geeetech M1 0.6 nozzle.json | 2 +- .../machine/Geeetech M1 0.8 nozzle.json | 2 +- .../machine/Geeetech Mizar 0.2 nozzle.json | 2 +- .../machine/Geeetech Mizar 0.4 nozzle.json | 2 +- .../machine/Geeetech Mizar 0.6 nozzle.json | 2 +- .../machine/Geeetech Mizar 0.8 nozzle.json | 2 +- .../machine/Geeetech Mizar M 0.4 nozzle.json | 2 +- .../Geeetech Mizar Max 0.2 nozzle.json | 2 +- .../Geeetech Mizar Max 0.4 nozzle.json | 2 +- .../Geeetech Mizar Max 0.6 nozzle.json | 2 +- .../Geeetech Mizar Max 0.8 nozzle.json | 2 +- .../Geeetech Mizar Pro 0.2 nozzle.json | 2 +- .../Geeetech Mizar Pro 0.4 nozzle.json | 2 +- .../Geeetech Mizar Pro 0.6 nozzle.json | 2 +- .../Geeetech Mizar Pro 0.8 nozzle.json | 2 +- .../machine/Geeetech Mizar S 0.2 nozzle.json | 2 +- .../machine/Geeetech Mizar S 0.4 nozzle.json | 2 +- .../machine/Geeetech Mizar S 0.6 nozzle.json | 2 +- .../machine/Geeetech Mizar S 0.8 nozzle.json | 2 +- .../machine/Geeetech Thunder 0.2 nozzle.json | 2 +- .../machine/Geeetech Thunder 0.4 nozzle.json | 2 +- .../machine/Geeetech Thunder 0.6 nozzle.json | 2 +- .../machine/Geeetech Thunder 0.8 nozzle.json | 2 +- ...06mm Fine @Geeetech common 0.2 nozzle.json | 2 +- .../0.08mm Extra Fine @Geeetech M1.json | 2 +- .../0.08mm Extra Fine @Geeetech Thunder.json | 2 +- .../0.08mm Extra Fine @Geeetech common.json | 2 +- ....08mm Optimal @Geeetech M1 0.2 nozzle.json | 2 +- ... Optimal @Geeetech Thunder 0.2 nozzle.json | 2 +- ...m Optimal @Geeetech common 0.2 nozzle.json | 2 +- .../process/0.10mm Fine @Geeetech M1.json | 2 +- .../0.10mm Fine @Geeetech Thunder.json | 2 +- ...10mm Standard @Geeetech M1 0.2 nozzle.json | 2 +- ...Standard @Geeetech Thunder 0.2 nozzle.json | 2 +- ... Standard @Geeetech common 0.2 nozzle.json | 2 +- .../0.12mm Draft @Geeetech M1 0.2 nozzle.json | 2 +- ...mm Draft @Geeetech Thunder 0.2 nozzle.json | 2 +- ...2mm Draft @Geeetech common 0.2 nozzle.json | 2 +- .../process/0.12mm Fine @Geeetech common.json | 2 +- ...m Extra Draft @Geeetech M1 0.2 nozzle.json | 2 +- ...ra Draft @Geeetech Thunder 0.2 nozzle.json | 2 +- ...tra Draft @Geeetech common 0.2 nozzle.json | 2 +- .../process/0.16mm Optimal @Geeetech M1.json | 2 +- .../0.16mm Optimal @Geeetech Thunder.json | 2 +- .../0.16mm Optimal @Geeetech common.json | 2 +- ...18mm Fine @Geeetech common 0.6 nozzle.json | 2 +- .../process/0.20mm Standard @Geeetech M1.json | 2 +- .../0.20mm Standard @Geeetech Thunder.json | 2 +- .../0.20mm Standard @Geeetech common.json | 2 +- .../0.20mm Strength @Geeetech common.json | 2 +- .../0.24mm Draft @Geeetech common.json | 2 +- ...24mm Fine @Geeetech common 0.8 nozzle.json | 2 +- ....24mm Optimal @Geeetech M1 0.6 nozzle.json | 2 +- ... Optimal @Geeetech Thunder 0.6 nozzle.json | 2 +- ...m Optimal @Geeetech common 0.6 nozzle.json | 2 +- .../process/0.25mm Draft @Geeetech M1.json | 2 +- .../0.25mm Draft @Geeetech Thunder.json | 2 +- .../0.28mm Extra Draft @Geeetech common.json | 2 +- ...30mm Standard @Geeetech M1 0.6 nozzle.json | 2 +- ...Standard @Geeetech Thunder 0.6 nozzle.json | 2 +- ... Standard @Geeetech common 0.6 nozzle.json | 2 +- ... Strength @Geeetech common 0.6 nozzle.json | 2 +- ...m Optimal @Geeetech common 0.8 nozzle.json | 2 +- .../0.36mm Draft @Geeetech M1 0.6 nozzle.json | 2 +- ...mm Draft @Geeetech Thunder 0.6 nozzle.json | 2 +- ...6mm Draft @Geeetech common 0.6 nozzle.json | 2 +- ....36mm Optimal @Geeetech M1 0.8 nozzle.json | 2 +- ... Optimal @Geeetech Thunder 0.8 nozzle.json | 2 +- ... Standard @Geeetech common 0.8 nozzle.json | 2 +- ...tra Draft @Geeetech common 0.6 nozzle.json | 2 +- .../0.44mm Draft @Geeetech M1 0.8 nozzle.json | 2 +- ...mm Draft @Geeetech Thunder 0.8 nozzle.json | 2 +- ...8mm Draft @Geeetech common 0.8 nozzle.json | 2 +- ...tra Draft @Geeetech common 0.8 nozzle.json | 2 +- resources/profiles/Ginger Additive.json | 2 +- .../filament/Ginger Generic PETG.json | 1 + .../filament/Ginger Generic PLA.json | 1 + .../machine/Ginger G1 1.2 nozzle.json | 1 + .../machine/Ginger G1 3.0 nozzle.json | 1 + .../machine/Ginger G1 5.0 nozzle.json | 1 + .../machine/Ginger G1 8.0 nozzle.json | 1 + .../process/0.60mm Standard.json | 1 + .../process/1.50mm Standard.json | 1 + .../process/1.80mm Vasemode.json | 1 + .../process/2.50mm Standard.json | 1 + .../process/4.00mm Standard.json | 1 + resources/profiles/InfiMech.json | 2 +- .../filament/EX+APS/InfiMech ABS @EX+APS.json | 2 +- .../EX+APS/InfiMech PA-CF @EX+APS.json | 2 +- .../filament/EX+APS/InfiMech PC @EX+APS.json | 2 +- .../EX+APS/InfiMech PETG @EX+APS.json | 2 +- .../EX+APS/InfiMech PLA Basic @EX+APS.json | 2 +- .../EX+APS/InfiMech PLA Hyper @EX+APS.json | 2 +- .../EX+APS/InfiMech TPU Basic @EX+APS.json | 2 +- .../filament/EX/InfiMech ABS @EX.json | 2 +- .../filament/EX/InfiMech PA-CF @EX.json | 2 +- .../InfiMech/filament/EX/InfiMech PC @EX.json | 2 +- .../filament/EX/InfiMech PETG @EX.json | 2 +- .../filament/EX/InfiMech PLA Basic @EX.json | 2 +- .../filament/EX/InfiMech PLA Hyper @EX.json | 2 +- .../filament/EX/InfiMech TPU Basic @EX.json | 2 +- .../filament/HSN/InfiMech ABS @HSN.json | 2 +- .../filament/HSN/InfiMech PA-CF @HSN.json | 2 +- .../filament/HSN/InfiMech PC @HSN.json | 2 +- .../filament/HSN/InfiMech PETG @HSN.json | 2 +- .../filament/HSN/InfiMech PLA @HSN.json | 2 +- .../filament/HSN/InfiMech PLA Hyper @HSN.json | 2 +- .../filament/HSN/InfiMech TPU @HSN.json | 2 +- .../InfiMech/filament/HSN/Other ABS @HSN.json | 2 +- .../filament/HSN/Other PA-CF @HSN.json | 2 +- .../InfiMech/filament/HSN/Other PC @HSN.json | 2 +- .../filament/HSN/Other PETG @HSN.json | 2 +- .../InfiMech/filament/HSN/Other PLA @HSN.json | 2 +- .../filament/HSN/Other PLA Hyper @HSN.json | 2 +- .../InfiMech/filament/HSN/Other TPU @HSN.json | 2 +- .../filament/InfiMech Generic ABS.json | 2 +- .../filament/InfiMech Generic PA-CF.json | 2 +- .../filament/InfiMech Generic PC.json | 2 +- .../filament/InfiMech Generic PETG.json | 2 +- .../filament/InfiMech Generic PLA.json | 2 +- .../filament/InfiMech Generic TPU.json | 2 +- .../InfiMech/filament/InfiMech PLA Hyper.json | 2 +- .../profiles/InfiMech/filament/Other ABS.json | 2 +- .../InfiMech/filament/Other PA-CF.json | 2 +- .../profiles/InfiMech/filament/Other PC.json | 2 +- .../InfiMech/filament/Other PETG.json | 2 +- .../InfiMech/filament/Other PLA Hyper.json | 2 +- .../profiles/InfiMech/filament/Other PLA.json | 2 +- .../profiles/InfiMech/filament/Other TPU.json | 2 +- .../EX+APS/InfiMech EX+APS 0.4 nozzle.json | 2 +- .../machine/EX/InfiMech EX 0.4 nozzle.json | 2 +- .../HSN/InfiMech TX HSN 0.4 nozzle.json | 2 +- .../machine/InfiMech TX 0.4 nozzle.json | 2 +- .../0.08mm Extra Fine @InfiMech TX.json | 2 +- .../process/0.12mm Fine @InfiMech TX.json | 2 +- .../process/0.16mm Optimal @InfiMech TX.json | 2 +- .../process/0.20mm Standard @InfiMech TX.json | 2 +- .../process/0.24mm Draft @InfiMech TX.json | 2 +- .../0.08mm Extra Fine @InfiMech EX+APS.json | 2 +- .../EX+APS/0.12mm Fine @InfiMech EX+APS.json | 2 +- .../0.16mm Optimal @InfiMech EX+APS.json | 2 +- .../0.20mm Standard @InfiMech EX+APS.json | 2 +- .../EX+APS/0.24mm Draft @InfiMech EX+APS.json | 2 +- .../EX/0.08mm Extra Fine @InfiMech EX.json | 2 +- .../process/EX/0.12mm Fine @InfiMech EX.json | 2 +- .../EX/0.16mm Optimal @InfiMech EX.json | 2 +- .../EX/0.20mm Standard @InfiMech EX.json | 2 +- .../process/EX/0.24mm Draft @InfiMech EX.json | 2 +- .../0.08mm Extra Fine @InfiMech TX HSN.json | 2 +- .../HSN/0.12mm Fine @InfiMech TX HSN.json | 2 +- .../HSN/0.16mm Optimal @InfiMech TX HSN.json | 2 +- .../HSN/0.20mm Standard @InfiMech TX HSN.json | 2 +- .../HSN/0.24mm Draft @InfiMech TX HSN.json | 2 +- resources/profiles/Kingroon.json | 2 +- .../machine/Kingroon KLP1 0.4 nozzle.json | 2 +- .../machine/Kingroon KP3S 3.0 0.4 nozzle.json | 2 +- .../Kingroon KP3S PRO S1 0.4 nozzle.json | 2 +- .../Kingroon KP3S PRO V2 0.4 nozzle.json | 2 +- .../machine/Kingroon KP3S V1 0.4 nozzle.json | 2 +- ...0.08mm Standard @Kingroon KP3S PRO S1.json | 1 + .../0.12mm Standard @Kingroon KLP1.json | 1 + ...0.12mm Standard @Kingroon KP3S PRO S1.json | 1 + .../0.20mm Standard @Kingroon KLP1.json | 1 + ...0.20mm Standard @Kingroon KP3S PRO S1.json | 1 + ...0.20mm Standard @Kingroon KP3S PRO V2.json | 1 + .../0.20mm Standard @Kingroon KP3S V1.json | 1 + .../0.30mm Standard @Kingroon KP3S 3.0.json | 1 + resources/profiles/LH.json | 2 +- resources/profiles/LH/filament/LHS ABS.json | 2 +- resources/profiles/LH/filament/LHS ASA.json | 2 +- resources/profiles/LH/filament/LHS PC CF.json | 2 +- resources/profiles/LH/filament/LHS PCTG.json | 2 +- resources/profiles/LH/filament/LHS PETG.json | 2 +- resources/profiles/LH/filament/LHS PLA.json | 2 +- .../LH/filament/LHS TPU Foamy 78A.json | 2 +- resources/profiles/LH/filament/LHS TPU.json | 2 +- .../LH/machine/LH Stinger 0.4 nozzle.json | 2 +- .../LH/machine/LH Stinger MMU 0.4 nozzle.json | 2 +- .../process/0.10mm HueForge @LH Stinger.json | 2 +- .../LH/process/0.14mm Detail @LH Stinger.json | 2 +- .../0.14mm Detail Strength @LH Stinger.json | 2 +- .../LH/process/0.20mm Daily @LH Stinger.json | 2 +- .../LH/process/0.20mm MMU @LH Stinger.json | 2 +- .../LH/process/0.20mm PETG @LH Stinger.json | 2 +- .../LH/process/0.20mm Quiet @LH Stinger.json | 2 +- .../LH/process/0.20mm Solid @LH Stinger.json | 2 +- .../LH/process/0.20mm Speed @LH Stinger.json | 2 +- .../process/0.20mm Strength @LH Stinger.json | 2 +- .../LH/process/0.20mm TPU @LH Stinger.json | 2 +- .../process/0.25mm Vase Mode @LH Stinger.json | 2 +- resources/profiles/LONGER.json | 2 +- .../Generic PETG @LONGER LK10 Plus.json | 2 +- .../filament/Generic PETG @LONGER LK10.json | 2 +- .../Generic PLA @LONGER LK10 Plus.json | 2 +- .../filament/Generic PLA @LONGER LK10.json | 2 +- .../machine/LONGER LK10 (0.2 nozzle).json | 2 +- .../machine/LONGER LK10 (0.4 nozzle).json | 2 +- .../machine/LONGER LK10 (0.6 nozzle).json | 2 +- .../machine/LONGER LK10 (0.8 nozzle).json | 2 +- .../LONGER LK10 Plus (0.2 nozzle).json | 2 +- .../LONGER LK10 Plus (0.4 nozzle).json | 2 +- .../LONGER LK10 Plus (0.6 nozzle).json | 2 +- .../LONGER LK10 Plus (0.8 nozzle).json | 2 +- ... Extra Fine @LONGER LK10 (0.2 nozzle).json | 1 + ... Extra Fine @LONGER LK10 (0.4 nozzle).json | 1 + ... Extra Fine @LONGER LK10 (0.6 nozzle).json | 1 + ... Extra Fine @LONGER LK10 (0.8 nozzle).json | 1 + ...a Fine @LONGER LK10 Plus (0.2 nozzle).json | 1 + ...a Fine @LONGER LK10 Plus (0.4 nozzle).json | 1 + ...a Fine @LONGER LK10 Plus (0.6 nozzle).json | 1 + ...a Fine @LONGER LK10 Plus (0.8 nozzle).json | 1 + ...0.12mm Fine @LONGER LK10 (0.2 nozzle).json | 1 + ...0.12mm Fine @LONGER LK10 (0.4 nozzle).json | 1 + ...0.12mm Fine @LONGER LK10 (0.6 nozzle).json | 1 + ...0.12mm Fine @LONGER LK10 (0.8 nozzle).json | 1 + ...m Fine @LONGER LK10 Plus (0.2 nozzle).json | 1 + ...m Fine @LONGER LK10 Plus (0.4 nozzle).json | 1 + ...m Fine @LONGER LK10 Plus (0.6 nozzle).json | 1 + ...m Fine @LONGER LK10 Plus (0.8 nozzle).json | 1 + ...6mm Optimal @LONGER LK10 (0.2 nozzle).json | 1 + ...6mm Optimal @LONGER LK10 (0.4 nozzle).json | 1 + ...6mm Optimal @LONGER LK10 (0.6 nozzle).json | 1 + ...6mm Optimal @LONGER LK10 (0.8 nozzle).json | 1 + ...ptimal @LONGER LK10 Plus (0.2 nozzle).json | 1 + ...ptimal @LONGER LK10 Plus (0.4 nozzle).json | 1 + ...ptimal @LONGER LK10 Plus (0.6 nozzle).json | 1 + ...ptimal @LONGER LK10 Plus (0.8 nozzle).json | 1 + ...mm Standard @LONGER LK10 (0.2 nozzle).json | 1 + ...mm Standard @LONGER LK10 (0.4 nozzle).json | 1 + ...mm Standard @LONGER LK10 (0.6 nozzle).json | 1 + ...mm Standard @LONGER LK10 (0.8 nozzle).json | 1 + ...andard @LONGER LK10 Plus (0.2 nozzle).json | 1 + ...andard @LONGER LK10 Plus (0.4 nozzle).json | 1 + ...andard @LONGER LK10 Plus (0.6 nozzle).json | 1 + ...andard @LONGER LK10 Plus (0.8 nozzle).json | 1 + ....24mm Draft @LONGER LK10 (0.2 nozzle).json | 1 + ....24mm Draft @LONGER LK10 (0.4 nozzle).json | 1 + ....24mm Draft @LONGER LK10 (0.6 nozzle).json | 1 + ....24mm Draft @LONGER LK10 (0.8 nozzle).json | 1 + ... Draft @LONGER LK10 Plus (0.2 nozzle).json | 1 + ... Draft @LONGER LK10 Plus (0.4 nozzle).json | 1 + ... Draft @LONGER LK10 Plus (0.6 nozzle).json | 1 + ... Draft @LONGER LK10 Plus (0.8 nozzle).json | 1 + ...Extra Draft @LONGER LK10 (0.2 nozzle).json | 1 + ...Extra Draft @LONGER LK10 (0.4 nozzle).json | 1 + ...Extra Draft @LONGER LK10 (0.6 nozzle).json | 1 + ...Extra Draft @LONGER LK10 (0.8 nozzle).json | 1 + ... Draft @LONGER LK10 Plus (0.2 nozzle).json | 1 + ... Draft @LONGER LK10 Plus (0.4 nozzle).json | 1 + ... Draft @LONGER LK10 Plus (0.6 nozzle).json | 1 + ... Draft @LONGER LK10 Plus (0.8 nozzle).json | 1 + resources/profiles/Lulzbot.json | 2 +- .../Lulzbot/filament/Lulzbot 2.85mm ABS.json | 2 +- .../Lulzbot/filament/Lulzbot 2.85mm PETG.json | 2 +- .../Lulzbot/filament/Lulzbot 2.85mm PLA.json | 2 +- .../Lulzbot Taz 4 or 5 0.5 nozzle.json | 2 +- .../machine/Lulzbot Taz 6 0.5 nozzle.json | 2 +- .../machine/Lulzbot Taz Pro Common.json | 1 - .../Lulzbot Taz Pro Dual 0.5 nozzle.json | 2 +- .../machine/Lulzbot Taz Pro S 0.5 nozzle.json | 2 +- ....18mm High Detail @Lulzbot Taz 4 or 5.json | 2 +- .../0.18mm High Detail @Lulzbot Taz 6.json | 2 +- ...8mm High Detail @Lulzbot Taz Pro Dual.json | 2 +- ...0.18mm High Detail @Lulzbot Taz Pro S.json | 2 +- .../0.25mm Standard @Lulzbot Taz 4 or 5.json | 2 +- .../0.25mm Standard @Lulzbot Taz 6.json | 2 +- ...0.25mm Standard @Lulzbot Taz Pro Dual.json | 2 +- .../0.25mm Standard @Lulzbot Taz Pro S.json | 2 +- resources/profiles/M3D.json | 2 +- .../M3D/machine/M3D Enabler D8500 MM.json | 2 +- .../M3D/process/0.15mm MM @D8500.json | 1 + .../M3D/process/0.20mm MM @D8500.json | 1 + resources/profiles/MagicMaker.json | 2 +- .../MagicMaker/filament/MM Generic PEEK.json | 2 +- .../machine/MM BoneKing 0.4 nozzle.json | 2 +- .../machine/MM hj SK 0.4 nozzle.json | 2 +- .../machine/MM hqs SF 0.4 nozzle.json | 2 +- .../machine/MM hqs hj 0.4 nozzle.json | 2 +- .../MagicMaker/machine/MM slb 0.4 nozzle.json | 2 +- .../process/0.10mm Fine @MM BoneKing.json | 2 +- .../process/0.10mm Fine @MM hj SK.json | 2 +- .../process/0.10mm Fine @MM hqs SF.json | 2 +- .../process/0.10mm Fine @MM hqs hj.json | 2 +- .../process/0.10mm Fine @MM slb.json | 2 +- .../0.10mm Fine Fast @MM BoneKing.json | 2 +- .../process/0.10mm Fine Fast @MM hj SK.json | 2 +- .../process/0.10mm Fine Fast @MM hqs SF.json | 2 +- .../0.12mm Fine BestFast @MM BoneKing.json | 2 +- .../0.12mm Fine SuperFast @MM BoneKing.json | 2 +- .../process/0.20mm Standard @MM BoneKing.json | 2 +- .../process/0.20mm Standard @MM hj SK.json | 2 +- .../process/0.20mm Standard @MM hqs SF.json | 2 +- .../process/0.20mm Standard @MM hqs hj.json | 2 +- .../process/0.20mm Standard @MM slb.json | 2 +- .../0.20mm Standard Fast @MM BoneKing.json | 2 +- .../0.20mm Standard Fast @MM hj SK.json | 2 +- .../0.20mm Standard Fast @MM hqs SF.json | 2 +- .../process/0.30mm Draft @MM BoneKing.json | 2 +- .../process/0.30mm Draft @MM hj SK.json | 2 +- .../process/0.30mm Draft @MM hqs SF.json | 2 +- .../process/0.30mm Draft @MM hqs hj.json | 2 +- .../process/0.30mm Draft @MM slb.json | 2 +- .../0.30mm Draft Fast @MM BoneKing.json | 2 +- .../process/0.30mm Draft Fast @MM hj SK.json | 2 +- .../process/0.30mm Draft Fast @MM hqs SF.json | 2 +- resources/profiles/Mellow.json | 2 +- .../Mellow/machine/M1 0.2 nozzle.json | 2 +- .../Mellow/machine/M1 0.4 nozzle.json | 2 +- .../Mellow/machine/M1 0.6 nozzle.json | 2 +- .../Mellow/machine/M1 0.8 nozzle.json | 2 +- .../Mellow/process/0.08mm Extra Fine @M1.json | 2 +- .../Mellow/process/0.12mm Fine @M1.json | 2 +- .../Mellow/process/0.16mm Optimal @M1.json | 2 +- .../Mellow/process/0.20mm Standard @M1.json | 2 +- .../Mellow/process/0.24mm Draft @M1.json | 2 +- .../process/0.28mm Extra Draft @M1.json | 2 +- .../process/0.32mm Extra Draft @M1.json | 2 +- .../process/0.40mm Extra Draft @M1.json | 2 +- .../process/0.56mm Extra Draft @M1.json | 2 +- resources/profiles/OpenEYE.json | 2 +- .../OpenEYE Peacock V2 0.2 nozzle.json | 2 +- .../OpenEYE Peacock V2 0.4 nozzle.json | 2 +- .../OpenEYE Peacock V2 0.6 nozzle.json | 2 +- .../OpenEYE Peacock V2 0.8 nozzle.json | 2 +- ...a Fine @OpenEYE Peacock V2 0.2 nozzle.json | 2 +- ...0.08mm Extra Fine @OpenEYE Peacock V2.json | 2 +- ...andard @OpenEYE Peacock V2 0.2 nozzle.json | 2 +- ...uality @OpenEYE Peacock V2 0.2 nozzle.json | 2 +- .../0.12mm Fine @OpenEYE Peacock V2.json | 2 +- ... Balanced Quality @OpenEYE Peacock V2.json | 2 +- .../0.16mm Standard @OpenEYE Peacock V2.json | 2 +- ...uality @OpenEYE Peacock V2 0.6 nozzle.json | 2 +- ...Balanced Strength @OpenEYE Peacock V2.json | 2 +- .../0.20mm Standard @OpenEYE Peacock V2.json | 2 +- ...uality @OpenEYE Peacock V2 0.8 nozzle.json | 2 +- ...rength @OpenEYE Peacock V2 0.6 nozzle.json | 2 +- .../0.24mm Standard @OpenEYE Peacock V2.json | 2 +- ...andard @OpenEYE Peacock V2 0.6 nozzle.json | 2 +- ...rength @OpenEYE Peacock V2 0.8 nozzle.json | 2 +- ...andard @OpenEYE Peacock V2 0.8 nozzle.json | 2 +- resources/profiles/OrcaArena.json | 2 +- .../Arena ABS @Arena X1C 0.2 nozzle.json | 2 +- .../Arena ABS @Arena X1C 0.8 nozzle.json | 2 +- .../filament/Arena ABS @Arena X1C.json | 2 +- .../filament/Arena PA-CF @Arena X1C.json | 2 +- .../filament/Arena PAHT-CF @Arena X1C.json | 2 +- .../Arena PC @Arena X1C 0.2 nozzle.json | 2 +- .../Arena PC @Arena X1C 0.6 nozzle.json | 2 +- .../Arena PC @Arena X1C 0.8 nozzle.json | 2 +- .../filament/Arena PC @Arena X1C.json | 2 +- .../filament/Arena PET-CF @Arena X1C.json | 2 +- ...rena PETG Basic @Arena X1C 0.2 nozzle.json | 2 +- ...rena PETG Basic @Arena X1C 0.8 nozzle.json | 2 +- .../filament/Arena PETG Basic @Arena X1C.json | 2 +- .../filament/Arena PETG-CF @Arena X1C.json | 2 +- ...Arena PLA Basic @Arena X1C 0.2 nozzle.json | 2 +- ...Arena PLA Basic @Arena X1C 0.8 nozzle.json | 2 +- .../filament/Arena PLA Basic @Arena X1C.json | 2 +- .../filament/Arena PLA Impact @Arena X1C.json | 2 +- .../filament/Arena PLA Marble @Arena X1C.json | 2 +- ...Arena PLA Matte @Arena X1C 0.2 nozzle.json | 2 +- ...Arena PLA Matte @Arena X1C 0.8 nozzle.json | 2 +- .../filament/Arena PLA Matte @Arena X1C.json | 2 +- ...Arena PLA Metal @Arena X1C 0.2 nozzle.json | 2 +- .../filament/Arena PLA Metal @Arena X1C.json | 2 +- .../Arena PLA Silk @Arena X1C 0.2 nozzle.json | 2 +- .../filament/Arena PLA Silk @Arena X1C.json | 2 +- .../Arena PLA Sparkle @Arena X1C.json | 2 +- ...Arena PLA Tough @Arena X1C 0.2 nozzle.json | 2 +- .../filament/Arena PLA Tough @Arena X1C.json | 2 +- .../Arena PLA-CF @Arena X1C 0.8 nozzle.json | 2 +- .../filament/Arena PLA-CF @Arena X1C.json | 2 +- .../filament/Arena Support G @Arena X1C.json | 2 +- ...Arena Support W @Arena X1C 0.2 nozzle.json | 2 +- .../filament/Arena Support W @Arena X1C.json | 2 +- .../filament/Arena TPU 95A @Arena X1C.json | 2 +- .../OrcaArena Generic ABS @0.2 nozzle.json | 2 +- .../filament/OrcaArena Generic ABS.json | 2 +- .../OrcaArena Generic ASA @0.2 nozzle.json | 2 +- .../filament/OrcaArena Generic ASA.json | 2 +- .../filament/OrcaArena Generic PA-CF.json | 2 +- .../filament/OrcaArena Generic PA.json | 2 +- .../OrcaArena Generic PC @0.2 nozzle.json | 2 +- .../filament/OrcaArena Generic PC.json | 2 +- .../OrcaArena Generic PETG @0.2 nozzle.json | 2 +- .../OrcaArena Generic PETG-CF @Arena X1C.json | 2 +- .../filament/OrcaArena Generic PETG.json | 2 +- .../OrcaArena Generic PLA @0.2 nozzle.json | 2 +- .../filament/OrcaArena Generic PLA Silk.json | 2 +- .../filament/OrcaArena Generic PLA-CF.json | 2 +- .../filament/OrcaArena Generic PLA.json | 2 +- .../OrcaArena Generic PVA @0.2 nozzle.json | 2 +- .../filament/OrcaArena Generic PVA.json | 2 +- .../filament/OrcaArena Generic TPU.json | 2 +- .../PolyLite PLA @Arena X1C 0.2 nozzle.json | 2 +- .../filament/PolyLite PLA @Arena X1C.json | 2 +- .../PolyTerra PLA @Arena X1C 0.2 nozzle.json | 2 +- .../filament/PolyTerra PLA @Arena X1C.json | 2 +- .../Orca Arena X1 Carbon 0.2 nozzle.json | 2 +- .../Orca Arena X1 Carbon 0.4 nozzle.json | 2 +- .../Orca Arena X1 Carbon 0.6 nozzle.json | 2 +- .../Orca Arena X1 Carbon 0.8 nozzle.json | 2 +- ...0.06mm Standard @Arena X1C 0.2 nozzle.json | 2 +- .../process/0.08mm Extra Fine @Arena X1C.json | 2 +- ...0.08mm Standard @Arena X1C 0.2 nozzle.json | 2 +- ...0.10mm Standard @Arena X1C 0.2 nozzle.json | 2 +- .../process/0.12mm Fine @Arena X1C.json | 2 +- ...0.12mm Standard @Arena X1C 0.2 nozzle.json | 2 +- ...0.14mm Standard @Arena X1C 0.2 nozzle.json | 2 +- .../process/0.16mm Optimal @Arena X1C.json | 2 +- ...0.18mm Standard @Arena X1C 0.6 nozzle.json | 2 +- .../0.20mm Bambu Support W @Arena X1C.json | 2 +- .../process/0.20mm Standard @Arena X1C.json | 2 +- .../process/0.20mm Strength @Arena X1C.json | 2 +- .../process/0.24mm Draft @Arena X1C.json | 2 +- ...0.24mm Standard @Arena X1C 0.6 nozzle.json | 2 +- ...0.24mm Standard @Arena X1C 0.8 nozzle.json | 2 +- .../0.28mm Extra Draft @Arena X1C.json | 2 +- ...0.30mm Standard @Arena X1C 0.6 nozzle.json | 2 +- ...0.30mm Strength @Arena X1C 0.6 nozzle.json | 2 +- ...0.32mm Standard @Arena X1C 0.8 nozzle.json | 2 +- ...0.36mm Standard @Arena X1C 0.6 nozzle.json | 2 +- ...0.40mm Standard @Arena X1C 0.8 nozzle.json | 2 +- ...0.42mm Standard @Arena X1C 0.6 nozzle.json | 2 +- ...0.48mm Standard @Arena X1C 0.8 nozzle.json | 2 +- ...0.56mm Standard @Arena X1C 0.8 nozzle.json | 2 +- resources/profiles/OrcaFilamentLibrary.json | 2 +- .../filament/AliZ/AliZ PA-CF @System.json | 2 +- .../filament/AliZ/AliZ PETG @System.json | 2 +- .../filament/AliZ/AliZ PETG-CF @System.json | 2 +- .../AliZ/AliZ PETG-Metal @System.json | 2 +- .../filament/AliZ/AliZ PLA @System.json | 2 +- .../filament/Bambu/Bambu ABS @System.json | 2 +- .../filament/Bambu/Bambu ABS-GF @System.json | 2 +- .../filament/Bambu/Bambu ASA @System.json | 2 +- .../Bambu/Bambu ASA-Aero @System.json | 2 +- .../filament/Bambu/Bambu ASA-CF @System.json | 2 +- .../filament/Bambu/Bambu PA-CF @System.json | 2 +- .../filament/Bambu/Bambu PA6-CF @System.json | 2 +- .../filament/Bambu/Bambu PA6-GF @System.json | 2 +- .../filament/Bambu/Bambu PAHT-CF @System.json | 2 +- .../filament/Bambu/Bambu PC @System.json | 2 +- .../filament/Bambu/Bambu PC FR @System.json | 2 +- .../filament/Bambu/Bambu PET-CF @System.json | 2 +- .../Bambu/Bambu PETG Basic @System.json | 2 +- .../filament/Bambu/Bambu PETG HF @System.json | 2 +- .../Bambu/Bambu PETG Translucent @System.json | 2 +- .../filament/Bambu/Bambu PETG-CF @System.json | 2 +- .../Bambu/Bambu PLA Aero @System.json | 2 +- .../Bambu/Bambu PLA Basic @System.json | 2 +- .../Bambu/Bambu PLA Dynamic @System.json | 2 +- .../Bambu/Bambu PLA Galaxy @System.json | 2 +- .../Bambu/Bambu PLA Glow @System.json | 2 +- .../Bambu/Bambu PLA Impact @System.json | 2 +- .../Bambu/Bambu PLA Marble @System.json | 2 +- .../Bambu/Bambu PLA Matte @System.json | 2 +- .../Bambu/Bambu PLA Metal @System.json | 2 +- .../Bambu/Bambu PLA Silk @System.json | 2 +- .../Bambu/Bambu PLA Silk+ @System.json | 2 +- .../Bambu/Bambu PLA Sparkle @System.json | 2 +- .../Bambu/Bambu PLA Tough @System.json | 2 +- .../Bambu/Bambu PLA Wood @System.json | 2 +- .../filament/Bambu/Bambu PLA-CF @System.json | 2 +- .../filament/Bambu/Bambu PPA-CF @System.json | 2 +- .../filament/Bambu/Bambu PVA @System.json | 2 +- .../Bambu Support For PA PET @System.json | 2 +- .../Bambu/Bambu Support For PLA @System.json | 2 +- .../Bambu Support For PLA-PETG @System.json | 2 +- .../Bambu/Bambu Support G @System.json | 2 +- .../Bambu/Bambu Support W @System.json | 2 +- .../Bambu/Bambu Support for ABS @System.json | 2 +- .../filament/Bambu/Bambu TPU 95A @System.json | 2 +- .../Bambu/Bambu TPU 95A HF @System.json | 2 +- .../filament/COEX/COEX ABS @System.json | 2 +- .../filament/COEX/COEX ABS PRIME @System.json | 2 +- .../filament/COEX/COEX ASA PRIME @System.json | 2 +- .../COEX/COEX NYLEX PA6-CF @System.json | 2 +- .../COEX/COEX NYLEX UNFILLED @System.json | 18 -- .../COEX/COEX PCTG PRIME @System.json | 2 +- .../filament/COEX/COEX PETG @System.json | 2 +- .../filament/COEX/COEX PLA @System.json | 2 +- .../filament/COEX/COEX PLA PRIME @System.json | 2 +- .../filament/COEX/COEX PLA+Silk @System.json | 2 +- .../filament/COEX/COEX TPE 30D @System.json | 2 +- .../filament/COEX/COEX TPE 40D @System.json | 2 +- .../filament/COEX/COEX TPE 60D @System.json | 2 +- .../filament/COEX/COEX TPU 60A @System.json | 2 +- .../filament/DREMC/DREMC ABS @System.json | 1 - .../filament/DREMC/DREMC ABS+ @System.json | 1 - .../filament/DREMC/DREMC ABS-GF @System.json | 2 +- .../filament/DREMC/DREMC ASA @System.json | 1 - .../filament/DREMC/DREMC ASA CF @System.json | 1 - .../filament/DREMC/DREMC ASA GF @System.json | 1 - .../filament/DREMC/DREMC PA12-CF @System.json | 1 - .../filament/DREMC/DREMC PA6-CF @System.json | 2 +- .../filament/DREMC/DREMC PET-CF @System.json | 1 - .../filament/DREMC/DREMC PETG @System.json | 1 - .../filament/DREMC/DREMC PLA HS @System.json | 1 - .../filament/DREMC/DREMC PLA+ @System.json | 1 - .../filament/DREMC/DREMC PPA-CF @System.json | 2 +- .../filament/DREMC/DREMC TPU 95A @System.json | 1 - .../filament/Elas/Elas ASA @System.json | 2 +- .../Elas/Elas PETG Basic @System.json | 2 +- .../filament/Elas/Elas PLA Basic @System.json | 2 +- .../filament/Elas/Elas PLA Pro @System.json | 2 +- .../filament/Elegoo/Elegoo ABS @System.json | 2 +- .../filament/Elegoo/Elegoo ASA @System.json | 2 +- .../Elegoo/Elegoo ASA-CF @System.json | 2 +- .../Elegoo/Elegoo PAHT-CF @System.json | 2 +- .../filament/Elegoo/Elegoo PC @System.json | 2 +- .../filament/Elegoo/Elegoo PC-FR @System.json | 2 +- .../Elegoo/Elegoo PET-CF @System.json | 2 +- .../filament/Elegoo/Elegoo PETG @System.json | 2 +- .../Elegoo/Elegoo PETG HF @System.json | 2 +- .../Elegoo/Elegoo PETG PRO @System.json | 2 +- .../Elegoo PETG Translucent @System.json | 2 +- .../Elegoo/Elegoo PETG-CF @System.json | 2 +- .../Elegoo/Elegoo PETG-GF @System.json | 2 +- .../filament/Elegoo/Elegoo PLA @System.json | 2 +- .../Elegoo/Elegoo PLA Basic @System.json | 2 +- .../Elegoo/Elegoo PLA Galaxy @System.json | 2 +- .../Elegoo/Elegoo PLA Glow @System.json | 2 +- .../Elegoo/Elegoo PLA Marble @System.json | 2 +- .../Elegoo/Elegoo PLA Matte @System.json | 2 +- .../Elegoo/Elegoo PLA PRO @System.json | 2 +- .../Elegoo/Elegoo PLA Silk @System.json | 2 +- .../Elegoo/Elegoo PLA Sparkle @System.json | 2 +- .../Elegoo PLA Translucent2 @System.json | 2 +- .../Elegoo/Elegoo PLA Wood @System.json | 2 +- .../filament/Elegoo/Elegoo PLA+ @System.json | 2 +- .../Elegoo/Elegoo PLA-CF @System.json | 2 +- .../Elegoo/Elegoo Rapid PETG @System.json | 2 +- .../Elegoo/Elegoo Rapid PLA+ @System.json | 2 +- .../Elegoo/Elegoo Rapid TPU 95A @System.json | 2 +- .../Elegoo/Elegoo TPU 95A @System.json | 2 +- .../Eolas Prints ABS @System.json | 2 +- .../Eolas Prints ASA @System.json | 2 +- .../Eolas Prints PETG @System.json | 2 +- .../Eolas Prints PETG Transition @System.json | 2 +- ...olas Prints PETG UV Resistant @System.json | 2 +- ...olas Prints PLA Antibacterial @System.json | 2 +- .../Eolas Prints PLA High Speed @System.json | 2 +- .../Eolas Prints PLA INGEO 850 @System.json | 2 +- .../Eolas Prints PLA INGEO 870 @System.json | 2 +- .../Eolas Prints PLA Matte @System.json | 2 +- .../Eolas Prints PLA Neon @System.json | 2 +- .../Eolas Prints PLA Premium @System.json | 2 +- .../Eolas Prints PLA Silk @System.json | 2 +- .../Eolas Prints PLA Transition @System.json | 2 +- .../Eolas Prints TPU Flex 93A @System.json | 2 +- .../Eolas Prints TPU Flex D53 @System.json | 2 +- ...nts TPU Flex D60 UV Resistant @System.json | 2 +- .../Eolas Prints TPU Transition @System.json | 2 +- .../filament/FDplast/FDplast ABS @System.json | 2 +- .../FDplast/FDplast HIPS @System.json | 2 +- .../FDplast/FDplast PETG @System.json | 2 +- .../filament/FDplast/FDplast PLA @System.json | 2 +- .../filament/FDplast/FDplast SBS @System.json | 2 +- .../filament/FDplast/FDplast TPU @System.json | 2 +- .../filament/FILL3D/FILL3D PA @System.json | 2 +- .../filament/FILL3D/FILL3D PETG @System.json | 2 +- .../FILL3D/FILL3D PETG CF @System.json | 2 +- .../FILL3D/FILL3D PLA Basic @System.json | 2 +- .../FILL3D/FILL3D PLA Turbo @System.json | 2 +- .../filament/FILL3D/FILL3D PP @System.json | 2 +- .../filament/FILL3D/FILL3D PPCF @System.json | 2 +- .../FilAr/FilAr PETG Amarillo Lima.json | 1 + .../FilAr/FilAr PETG Amarillo Radiante.json | 1 + .../FilAr/FilAr PETG Azul Boreal.json | 1 + .../FilAr/FilAr PETG Azul Francia.json | 1 + .../FilAr/FilAr PETG Azul Imperial.json | 1 + .../FilAr/FilAr PETG Blanco Antartida.json | 1 + .../filament/FilAr/FilAr PETG Cian.json | 1 + .../filament/FilAr/FilAr PETG Coral.json | 1 + .../filament/FilAr/FilAr PETG Cristal.json | 1 + .../FilAr/FilAr PETG Gris Ceniza.json | 1 + .../filament/FilAr/FilAr PETG Gris Plata.json | 1 + .../filament/FilAr/FilAr PETG Magenta.json | 1 + .../FilAr/FilAr PETG Negro Azabache.json | 1 + .../FilAr/FilAr PETG Rojo Carmesi.json | 1 + .../FilAr/FilAr PLA Amarillo Lirio.json | 1 + .../FilAr/FilAr PLA Azul Francia.json | 1 + .../FilAr/FilAr PLA Blanco Antartida.json | 1 + .../FilAr/FilAr PLA Blanco Calido.json | 1 + .../filament/FilAr/FilAr PLA Bronce.json | 1 + .../FilAr/FilAr PLA Cafe con Leche.json | 1 + .../filament/FilAr/FilAr PLA Carpincho.json | 1 + .../FilAr/FilAr PLA Celeste Cielo.json | 1 + .../filament/FilAr/FilAr PLA Cobre.json | 1 + .../filament/FilAr/FilAr PLA Dorado.json | 1 + .../filament/FilAr/FilAr PLA Gris Ceniza.json | 1 + .../FilAr/FilAr PLA Gris Pizarra.json | 1 + .../filament/FilAr/FilAr PLA Gris Plata.json | 1 + .../filament/FilAr/FilAr PLA Manteca.json | 1 + .../FilAr/FilAr PLA Marron Oxido.json | 1 + .../FilAr/FilAr PLA Naranja Tigre.json | 1 + .../FilAr/FilAr PLA Negro Azabache.json | 1 + .../filament/FilAr/FilAr PLA Oro.json | 1 + .../filament/FilAr/FilAr PLA Piel.json | 1 + .../FilAr/FilAr PLA Rojo de Carreras.json | 1 + .../FilAr/FilAr PLA Rosa Amaranto.json | 1 + .../FilAr/FilAr PLA Rosa Flamenco.json | 1 + .../filament/FilAr/FilAr PLA Tabaco.json | 1 + .../filament/FilAr/FilAr PLA Titanio.json | 1 + .../filament/FilAr/FilAr PLA Verde FilAr.json | 1 + .../FilAr/FilAr PLA Verde Manzana.json | 1 + .../filament/FilAr/FilAr PLA Verde Oliva.json | 1 + .../filament/FilAr/FilAr PLA Verde Pixel.json | 1 + .../FilAr/FilAr PLA Violeta Jacaranda.json | 1 + .../FilAr/FilAr PLA-mate Amarillo.json | 1 + .../filament/FilAr/FilAr PLA-mate Azul.json | 1 + .../filament/FilAr/FilAr PLA-mate Beige.json | 1 + .../filament/FilAr/FilAr PLA-mate Blanco.json | 1 + .../filament/FilAr/FilAr PLA-mate Bordo.json | 1 + .../FilAr/FilAr PLA-mate Celeste Cielo.json | 1 + .../FilAr/FilAr PLA-mate Chocolate.json | 1 + .../filament/FilAr/FilAr PLA-mate Gris.json | 1 + .../filament/FilAr/FilAr PLA-mate Marron.json | 1 + .../FilAr/FilAr PLA-mate Naranja.json | 1 + .../filament/FilAr/FilAr PLA-mate Negro.json | 1 + .../filament/FilAr/FilAr PLA-mate Piel.json | 1 + .../filament/FilAr/FilAr PLA-mate Rojo.json | 1 + .../filament/FilAr/FilAr PLA-mate Rosa.json | 1 + .../filament/FilAr/FilAr PLA-mate Uva.json | 1 + .../filament/FilAr/FilAr PLA-mate Verde.json | 1 + .../FilAr/FilAr PLA-mate Violeta.json | 1 + .../FusRock/FusRock ABS-GF @System.json | 2 +- .../filament/Generic ABS @System.json | 2 +- .../filament/Generic ASA @System.json | 2 +- .../filament/Generic BVOH @System.json | 2 +- .../filament/Generic CoPE @System.json | 2 +- .../filament/Generic EVA @System.json | 2 +- .../filament/Generic HIPS @System.json | 2 +- .../filament/Generic PA @System.json | 2 +- .../filament/Generic PA-CF @System.json | 2 +- .../filament/Generic PC @System.json | 2 +- .../filament/Generic PCTG @System.json | 2 +- .../filament/Generic PE @System.json | 2 +- .../filament/Generic PE-CF @System.json | 2 +- .../filament/Generic PETG @System.json | 2 +- .../filament/Generic PETG HF @System.json | 2 +- .../filament/Generic PETG-CF @System.json | 2 +- .../filament/Generic PHA @System.json | 2 +- .../filament/Generic PLA @System.json | 2 +- .../Generic PLA High Speed @System.json | 2 +- .../filament/Generic PLA Matte @System.json | 2 +- .../filament/Generic PLA Silk @System.json | 2 +- .../filament/Generic PLA-CF @System.json | 2 +- .../filament/Generic PP @System.json | 2 +- .../filament/Generic PP-CF @System.json | 2 +- .../filament/Generic PP-GF @System.json | 2 +- .../filament/Generic PPA-CF @System.json | 2 +- .../filament/Generic PPA-GF @System.json | 2 +- .../filament/Generic PVA @System.json | 2 +- .../filament/Generic SBS @System.json | 2 +- .../filament/Generic TPU @System.json | 2 +- .../GreenGate3D/GreenGate3D PETG @System.json | 2 +- .../filament/NIT/NIT ABS @System.json | 2 +- .../filament/NIT/NIT PETG @System.json | 2 +- .../filament/NIT/NIT PLA @System.json | 2 +- .../Numakers/Numakers PLA+ @System.json | 2 +- .../Overture/Overture ABS Basic @System.json | 2 +- .../Overture/Overture ASA @System.json | 2 +- .../Overture/Overture Air PLA @System.json | 2 +- .../Overture/Overture Easy PLA @System.json | 2 +- .../Overture/Overture Matte PLA @System.json | 2 +- .../Overture/Overture PLA @System.json | 2 +- .../Overture/Overture PLA Pro @System.json | 2 +- .../Overture/Overture Rock PLA @System.json | 2 +- .../Overture/Overture Silk PLA @System.json | 2 +- .../Overture/Overture Super PLA+ @System.json | 2 +- .../Overture/Overture TPU @System.json | 2 +- .../Polymaker/Fiberon PA12-CF @System.json | 2 +- .../Polymaker/Fiberon PA6-CF @System.json | 2 +- .../Polymaker/Fiberon PA6-GF @System.json | 2 +- .../Polymaker/Fiberon PA612-CF @System.json | 2 +- .../Polymaker/Fiberon PET-CF @System.json | 2 +- .../Polymaker/Fiberon PETG-ESD @System.json | 2 +- .../Polymaker/Fiberon PETG-rCF @System.json | 2 +- .../Polymaker/Panchroma CoPE @System.json | 2 +- .../Polymaker/Panchroma PLA @System.json | 2 +- .../Panchroma PLA Celestial @System.json | 2 +- .../Panchroma PLA Galaxy @System.json | 2 +- .../Polymaker/Panchroma PLA Glow @System.json | 2 +- .../Panchroma PLA Luminous @System.json | 2 +- .../Panchroma PLA Marble @System.json | 2 +- .../Panchroma PLA Matte @System.json | 2 +- .../Panchroma PLA Metallic @System.json | 2 +- .../Polymaker/Panchroma PLA Neon @System.json | 2 +- .../Panchroma PLA Satin @System.json | 2 +- .../Polymaker/Panchroma PLA Silk @System.json | 2 +- .../Panchroma PLA Starlight @System.json | 2 +- .../Panchroma PLA Temp Shift @System.json | 2 +- .../Panchroma PLA Translucent @System.json | 2 +- .../Panchroma PLA UV Shift @System.json | 2 +- .../Polymaker/PolyLite ABS @System.json | 2 +- .../Polymaker/PolyLite ASA @System.json | 2 +- .../Polymaker/PolyLite Dual PLA @System.json | 2 +- .../Polymaker/PolyLite PETG @System.json | 2 +- .../Polymaker/PolyLite PLA @System.json | 2 +- .../Polymaker/PolyLite PLA Pro @System.json | 2 +- .../Polymaker/PolyTerra Dual PLA @System.json | 2 +- .../Polymaker/PolyTerra PLA @System.json | 2 +- .../Polymaker/Polymaker HT-PLA @System.json | 2 +- .../Polymaker HT-PLA-GF @System.json | 2 +- .../SUNLU/SUNLU Marble PLA @System.json | 2 +- .../filament/SUNLU/SUNLU PETG @System.json | 2 +- .../SUNLU/SUNLU PLA Matte @System.json | 2 +- .../SUNLU/SUNLU PLA+ 2.0 @System.json | 2 +- .../filament/SUNLU/SUNLU PLA+ @System.json | 2 +- .../SUNLU/SUNLU Silk PLA+ @System.json | 2 +- .../SUNLU/SUNLU Wood PLA @System.json | 2 +- .../filament/Valment/Valment PLA @System.json | 2 +- .../Valment/Valment PLA Galaxy @System.json | 2 +- .../Valment/Valment PLA Silk @System.json | 2 +- .../Valment/Valment PLA-CF @System.json | 2 +- .../filament/eSUN/eSUN PETG @System.json | 2 +- .../filament/eSUN/eSUN PLA+ @System.json | 2 +- .../filament/eSUN/eSUN PLA-Basic @System.json | 2 +- .../eSUN/eSUN PLA-Marble @System.json | 2 +- .../filament/eSUN/eSUN PLA-Matte @System.json | 2 +- .../filament/eSUN/eSUN ePLA-LW @System.json | 2 +- resources/profiles/Peopoly.json | 2 +- .../Peopoly/filament/Peopoly Generic ABS.json | 1 + .../filament/Peopoly Generic PETG.json | 2 +- .../Peopoly/filament/Peopoly Generic PLA.json | 2 +- .../filament/Peopoly Lancer ABS-GF.json | 2 +- .../filament/Peopoly Lancer PET-CF.json | 2 +- .../filament/Peopoly Lancer PETG-C.json | 2 +- .../filament/Peopoly Lancer PLA-C.json | 2 +- .../machine/Peopoly Magneto X 0.4 nozzle.json | 2 +- .../machine/Peopoly Magneto X 0.6 nozzle.json | 2 +- .../machine/Peopoly Magneto X 0.8 nozzle.json | 2 +- .../process/0.16mm Optimal @MagnetoX.json | 2 +- ... ABS-GF 0.4 Nozzle Standard @MagnetoX.json | 2 +- ... PET-CF 0.4 Nozzle Standard @MagnetoX.json | 2 +- .../process/0.20mm Standard @MagnetoX.json | 2 +- .../process/0.20mm Strength @MagnetoX.json | 2 +- .../process/0.24mm Draft @MagnetoX.json | 2 +- .../process/0.28mm Extra Draft @MagnetoX.json | 2 +- ...0.30mm Standard @Magneto X 0.6 nozzle.json | 2 +- ...0.40mm Standard @Magneto X 0.8 nozzle.json | 2 +- resources/profiles/Phrozen.json | 2 +- .../Phrozen PLA @Phrozen Arco 0.4 nozzle.json | 2 +- .../machine/Phrozen Arco 0.4 nozzle.json | 1 + ...0mm Standard @Phrozen Arco 0.4 nozzle.json | 2 +- resources/profiles/Positron3D.json | 2 +- .../machine/The Positron 0.2 nozzle.json | 2 +- .../machine/The Positron 0.4 nozzle.json | 2 +- .../machine/The Positron 0.6 nozzle.json | 2 +- .../machine/The Positron 0.8 nozzle.json | 2 +- .../0.08mm Extra Fine @The Positron.json | 2 +- .../process/0.12mm Fine @The Positron.json | 2 +- .../process/0.16mm Optimal @The Positron.json | 2 +- .../0.20mm Standard @The Positron.json | 2 +- .../process/0.24mm Draft @The Positron.json | 2 +- .../0.28mm Extra Draft @The Positron.json | 2 +- .../0.32mm Extra Draft @The Positron.json | 2 +- .../0.40mm Extra Draft @The Positron.json | 2 +- .../0.56mm Extra Draft @The Positron.json | 2 +- resources/profiles/Prusa.json | 2 +- .../Prusa Generic ABS @CORE One 0.6.json | 2 +- .../Prusa Generic ABS @CORE One 0.8.json | 2 +- .../Prusa Generic ABS @CORE One HF 0.4.json | 2 +- .../Prusa Generic ABS @CORE One HF 0.5.json | 2 +- .../Prusa Generic ABS @CORE One HF 0.6.json | 2 +- .../Prusa Generic ABS @CORE One HF 0.8.json | 2 +- .../filament/Prusa Generic ABS @CORE One.json | 2 +- .../Prusa Generic ABS @MINIIS 0.25.json | 2 +- .../Prusa Generic ABS @MINIIS 0.6.json | 2 +- .../Prusa Generic ABS @MINIIS 0.8.json | 2 +- .../filament/Prusa Generic ABS @MINIIS.json | 2 +- .../Prusa Generic ABS @MK3.5 0.25.json | 2 +- .../Prusa Generic ABS @MK3.5 0.6.json | 2 +- .../Prusa Generic ABS @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic ABS @MK3.5.json | 2 +- .../filament/Prusa Generic ABS @MK4.json | 2 +- .../filament/Prusa Generic ABS @MK4S 0.6.json | 2 +- .../filament/Prusa Generic ABS @MK4S 0.8.json | 2 +- .../Prusa Generic ABS @MK4S HF0.4.json | 2 +- .../Prusa Generic ABS @MK4S HF0.5.json | 2 +- .../Prusa Generic ABS @MK4S HF0.6.json | 2 +- .../Prusa Generic ABS @MK4S HF0.8.json | 2 +- .../filament/Prusa Generic ABS @MK4S.json | 2 +- .../filament/Prusa Generic ABS @XL 5T.json | 2 +- .../Prusa/filament/Prusa Generic ABS @XL.json | 2 +- .../Prusa Generic ABS HF @MINIIS 0.6.json | 2 +- .../Prusa Generic ABS HF @MINIIS 0.8.json | 2 +- .../Prusa Generic ABS HF @MINIIS.json | 2 +- .../Prusa Generic ABS HF @MK3.5 0.6.json | 2 +- .../Prusa Generic ABS HF @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic ABS HF @MK3.5.json | 2 +- .../Prusa/filament/Prusa Generic ABS.json | 2 +- .../Prusa Generic ASA @CORE One 0.6.json | 2 +- .../Prusa Generic ASA @CORE One 0.8.json | 2 +- .../Prusa Generic ASA @CORE One HF 0.4.json | 2 +- .../Prusa Generic ASA @CORE One HF 0.5.json | 2 +- .../Prusa Generic ASA @CORE One HF 0.6.json | 2 +- .../Prusa Generic ASA @CORE One HF 0.8.json | 2 +- .../filament/Prusa Generic ASA @CORE One.json | 2 +- .../Prusa Generic ASA @MINIIS 0.25.json | 2 +- .../Prusa Generic ASA @MINIIS 0.6.json | 2 +- .../Prusa Generic ASA @MINIIS 0.8.json | 2 +- .../filament/Prusa Generic ASA @MINIIS.json | 2 +- .../Prusa Generic ASA @MK3.5 0.25.json | 2 +- .../Prusa Generic ASA @MK3.5 0.6.json | 2 +- .../Prusa Generic ASA @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic ASA @MK3.5.json | 2 +- .../filament/Prusa Generic ASA @MK4.json | 2 +- .../filament/Prusa Generic ASA @MK4S 0.6.json | 2 +- .../filament/Prusa Generic ASA @MK4S 0.8.json | 2 +- .../Prusa Generic ASA @MK4S HF0.4.json | 2 +- .../Prusa Generic ASA @MK4S HF0.5.json | 2 +- .../Prusa Generic ASA @MK4S HF0.6.json | 2 +- .../Prusa Generic ASA @MK4S HF0.8.json | 2 +- .../filament/Prusa Generic ASA @MK4S.json | 2 +- .../Prusa Generic ASA HF @MINIIS 0.6.json | 2 +- .../Prusa Generic ASA HF @MINIIS 0.8.json | 2 +- .../Prusa Generic ASA HF @MINIIS.json | 2 +- .../Prusa Generic ASA HF @MK3.5 0.6.json | 2 +- .../Prusa Generic ASA HF @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic ASA HF @MK3.5.json | 2 +- .../Prusa/filament/Prusa Generic ASA.json | 2 +- .../filament/Prusa Generic FLEX @XL 5T.json | 2 +- .../filament/Prusa Generic FLEX @XL.json | 2 +- .../Prusa Generic PA @MINIIS 0.25.json | 2 +- .../Prusa Generic PA @MINIIS 0.6.json | 2 +- .../Prusa Generic PA @MINIIS 0.8.json | 2 +- .../filament/Prusa Generic PA @MINIIS.json | 2 +- .../Prusa Generic PA @MK3.5 0.25.json | 2 +- .../filament/Prusa Generic PA @MK3.5 0.6.json | 2 +- .../filament/Prusa Generic PA @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic PA @MK3.5.json | 2 +- .../Prusa Generic PA-CF @MINIIS 0.25.json | 2 +- .../Prusa Generic PA-CF @MINIIS 0.6.json | 2 +- .../Prusa Generic PA-CF @MINIIS 0.8.json | 2 +- .../filament/Prusa Generic PA-CF @MINIIS.json | 2 +- .../Prusa Generic PA-CF @MK3.5 0.25.json | 2 +- .../Prusa Generic PA-CF @MK3.5 0.6.json | 2 +- .../Prusa Generic PA-CF @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic PA-CF @MK3.5.json | 2 +- .../Prusa/filament/Prusa Generic PA-CF.json | 2 +- .../Prusa/filament/Prusa Generic PA.json | 2 +- .../Prusa Generic PC @MINIIS 0.25.json | 2 +- .../Prusa Generic PC @MINIIS 0.6.json | 2 +- .../Prusa Generic PC @MINIIS 0.8.json | 2 +- .../filament/Prusa Generic PC @MINIIS.json | 2 +- .../Prusa Generic PC @MK3.5 0.25.json | 2 +- .../filament/Prusa Generic PC @MK3.5 0.6.json | 2 +- .../filament/Prusa Generic PC @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic PC @MK3.5.json | 2 +- .../Prusa Generic PC HF @MINIIS 0.6.json | 2 +- .../Prusa Generic PC HF @MINIIS 0.8.json | 2 +- .../filament/Prusa Generic PC HF @MINIIS.json | 2 +- .../Prusa Generic PC HF @MK3.5 0.6.json | 2 +- .../Prusa Generic PC HF @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic PC HF @MK3.5.json | 2 +- .../Prusa/filament/Prusa Generic PC.json | 2 +- .../Prusa Generic PETG @CORE One 0.6.json | 2 +- .../Prusa Generic PETG @CORE One 0.8.json | 2 +- .../Prusa Generic PETG @CORE One HF 0.4.json | 2 +- .../Prusa Generic PETG @CORE One HF 0.5.json | 2 +- .../Prusa Generic PETG @CORE One HF 0.6.json | 2 +- .../Prusa Generic PETG @CORE One HF 0.8.json | 2 +- .../Prusa Generic PETG @CORE One.json | 2 +- .../Prusa Generic PETG @MINIIS 0.25.json | 2 +- .../Prusa Generic PETG @MINIIS 0.6.json | 2 +- .../Prusa Generic PETG @MINIIS 0.8.json | 2 +- .../filament/Prusa Generic PETG @MINIIS.json | 2 +- .../Prusa Generic PETG @MK3.5 0.25.json | 2 +- .../Prusa Generic PETG @MK3.5 0.6.json | 2 +- .../Prusa Generic PETG @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic PETG @MK3.5.json | 2 +- .../filament/Prusa Generic PETG @MK4.json | 2 +- .../Prusa Generic PETG @MK4S 0.6.json | 2 +- .../Prusa Generic PETG @MK4S 0.8.json | 2 +- .../Prusa Generic PETG @MK4S HF0.4.json | 2 +- .../Prusa Generic PETG @MK4S HF0.5.json | 2 +- .../Prusa Generic PETG @MK4S HF0.6.json | 2 +- .../Prusa Generic PETG @MK4S HF0.8.json | 2 +- .../filament/Prusa Generic PETG @MK4S.json | 2 +- .../filament/Prusa Generic PETG @XL 5T.json | 2 +- .../filament/Prusa Generic PETG @XL.json | 2 +- .../Prusa Generic PETG HF @MINIIS 0.6.json | 2 +- .../Prusa Generic PETG HF @MINIIS 0.8.json | 2 +- .../Prusa Generic PETG HF @MINIIS.json | 2 +- .../Prusa Generic PETG HF @MK3.5 0.6.json | 2 +- .../Prusa Generic PETG HF @MK3.5 0.8.json | 2 +- .../Prusa Generic PETG HF @MK3.5.json | 2 +- .../Prusa/filament/Prusa Generic PETG.json | 2 +- .../Prusa Generic PLA @CORE One 0.6.json | 2 +- .../Prusa Generic PLA @CORE One 0.8.json | 2 +- .../Prusa Generic PLA @CORE One HF 0.4.json | 2 +- .../Prusa Generic PLA @CORE One HF 0.5.json | 2 +- .../Prusa Generic PLA @CORE One HF 0.6.json | 2 +- .../Prusa Generic PLA @CORE One HF 0.8.json | 2 +- .../filament/Prusa Generic PLA @CORE One.json | 2 +- .../Prusa Generic PLA @MINIIS 0.25.json | 2 +- .../Prusa Generic PLA @MINIIS 0.6.json | 2 +- .../Prusa Generic PLA @MINIIS 0.8.json | 2 +- .../filament/Prusa Generic PLA @MINIIS.json | 2 +- .../Prusa Generic PLA @MK3.5 0.25.json | 2 +- .../Prusa Generic PLA @MK3.5 0.6.json | 2 +- .../Prusa Generic PLA @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic PLA @MK3.5.json | 2 +- .../filament/Prusa Generic PLA @MK4.json | 2 +- .../filament/Prusa Generic PLA @MK4S 0.6.json | 2 +- .../filament/Prusa Generic PLA @MK4S 0.8.json | 2 +- .../Prusa Generic PLA @MK4S HF0.4.json | 2 +- .../Prusa Generic PLA @MK4S HF0.5.json | 2 +- .../Prusa Generic PLA @MK4S HF0.6.json | 2 +- .../Prusa Generic PLA @MK4S HF0.8.json | 2 +- .../filament/Prusa Generic PLA @MK4S.json | 2 +- .../filament/Prusa Generic PLA @XL 5T.json | 2 +- .../Prusa/filament/Prusa Generic PLA @XL.json | 2 +- .../Prusa Generic PLA HF @MINIIS 0.6.json | 2 +- .../Prusa Generic PLA HF @MINIIS 0.8.json | 2 +- .../Prusa Generic PLA HF @MINIIS.json | 2 +- .../Prusa Generic PLA HF @MK3.5 0.6.json | 2 +- .../Prusa Generic PLA HF @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic PLA HF @MK3.5.json | 2 +- .../Prusa Generic PLA Silk @CORE One 0.6.json | 2 +- .../Prusa Generic PLA Silk @CORE One 0.8.json | 2 +- .../Prusa Generic PLA Silk @CORE One.json | 2 +- .../Prusa Generic PLA Silk @MK4S 0.6.json | 2 +- .../Prusa Generic PLA Silk @MK4S 0.8.json | 2 +- .../Prusa Generic PLA Silk @MK4S.json | 2 +- .../Prusa Generic PLA-CF @MINIIS 0.25.json | 2 +- .../Prusa Generic PLA-CF @MINIIS 0.6.json | 2 +- .../Prusa Generic PLA-CF @MINIIS 0.8.json | 2 +- .../Prusa Generic PLA-CF @MINIIS.json | 2 +- .../Prusa Generic PLA-CF @MK3.5 0.25.json | 2 +- .../Prusa Generic PLA-CF @MK3.5 0.6.json | 2 +- .../Prusa Generic PLA-CF @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic PLA-CF @MK3.5.json | 2 +- .../Prusa/filament/Prusa Generic PLA-CF.json | 2 +- .../Prusa/filament/Prusa Generic PLA.json | 2 +- .../Prusa Generic PVA @MINIIS 0.25.json | 2 +- .../Prusa Generic PVA @MINIIS 0.6.json | 2 +- .../Prusa Generic PVA @MINIIS 0.8.json | 2 +- .../filament/Prusa Generic PVA @MINIIS.json | 2 +- .../Prusa Generic PVA @MK3.5 0.25.json | 2 +- .../Prusa Generic PVA @MK3.5 0.6.json | 2 +- .../Prusa Generic PVA @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic PVA @MK3.5.json | 2 +- .../Prusa Generic PVA HF @MINIIS 0.6.json | 2 +- .../Prusa Generic PVA HF @MINIIS 0.8.json | 2 +- .../Prusa Generic PVA HF @MINIIS.json | 2 +- .../Prusa Generic PVA HF @MK3.5 0.6.json | 2 +- .../Prusa Generic PVA HF @MK3.5 0.8.json | 2 +- .../filament/Prusa Generic PVA HF @MK3.5.json | 2 +- .../Prusa/filament/Prusa Generic PVA.json | 2 +- .../Prusa Generic TPU @CORE One 0.6.json | 2 +- .../Prusa Generic TPU @CORE One 0.8.json | 2 +- .../filament/Prusa Generic TPU @CORE One.json | 2 +- .../filament/Prusa Generic TPU @MINIIS.json | 2 +- .../filament/Prusa Generic TPU @MK3.5.json | 2 +- .../filament/Prusa Generic TPU @MK4.json | 2 +- .../filament/Prusa Generic TPU @MK4S 0.6.json | 2 +- .../filament/Prusa Generic TPU @MK4S 0.8.json | 2 +- .../filament/Prusa Generic TPU @MK4S.json | 2 +- .../Prusa Generic TPU HF @MINIIS.json | 2 +- .../filament/Prusa Generic TPU HF @MK3.5.json | 2 +- .../Prusa/filament/Prusa Generic TPU.json | 2 +- .../filament/Prusament ASA @CORE One 0.6.json | 2 +- .../filament/Prusament ASA @CORE One 0.8.json | 2 +- .../Prusament ASA @CORE One HF 0.4.json | 2 +- .../Prusament ASA @CORE One HF 0.5.json | 2 +- .../Prusament ASA @CORE One HF 0.6.json | 2 +- .../Prusament ASA @CORE One HF 0.8.json | 2 +- .../filament/Prusament ASA @CORE One.json | 2 +- .../Prusa/filament/Prusament ASA @XL 5T.json | 2 +- .../Prusa/filament/Prusament ASA @XL.json | 2 +- .../Prusament PA-CF @CORE One 0.6.json | 2 +- .../Prusament PA-CF @CORE One 0.8.json | 2 +- .../filament/Prusament PA-CF @CORE One.json | 2 +- .../filament/Prusament PA-CF @XL 5T.json | 2 +- .../Prusa/filament/Prusament PA-CF @XL.json | 2 +- .../Prusament PC Blend @CORE One 0.6.json | 2 +- .../Prusament PC Blend @CORE One 0.8.json | 2 +- .../Prusament PC Blend @CORE One HF 0.4.json | 2 +- .../Prusament PC Blend @CORE One HF 0.5.json | 2 +- .../Prusament PC Blend @CORE One HF 0.6.json | 2 +- .../Prusament PC Blend @CORE One HF 0.8.json | 2 +- .../Prusament PC Blend @CORE One.json | 2 +- .../filament/Prusament PC Blend @XL 5T.json | 2 +- .../filament/Prusament PC Blend @XL.json | 2 +- .../Prusament PC-CF @CORE One 0.6.json | 2 +- .../Prusament PC-CF @CORE One 0.8.json | 2 +- .../filament/Prusament PC-CF @CORE One.json | 2 +- .../filament/Prusament PC-CF @XL 5T.json | 2 +- .../Prusa/filament/Prusament PC-CF @XL.json | 2 +- .../Prusament PETG @CORE One 0.6.json | 2 +- .../Prusament PETG @CORE One 0.8.json | 2 +- .../Prusament PETG @CORE One HF 0.4.json | 2 +- .../Prusament PETG @CORE One HF 0.5.json | 2 +- .../Prusament PETG @CORE One HF 0.6.json | 2 +- .../Prusament PETG @CORE One HF 0.8.json | 2 +- .../filament/Prusament PETG @CORE One.json | 2 +- .../Prusa/filament/Prusament PETG @XL 5T.json | 2 +- .../Prusa/filament/Prusament PETG @XL.json | 2 +- .../filament/Prusament PLA @CORE One 0.6.json | 2 +- .../filament/Prusament PLA @CORE One 0.8.json | 2 +- .../Prusament PLA @CORE One HF 0.4.json | 2 +- .../Prusament PLA @CORE One HF 0.5.json | 2 +- .../Prusament PLA @CORE One HF 0.6.json | 2 +- .../Prusament PLA @CORE One HF 0.8.json | 2 +- .../filament/Prusament PLA @CORE One.json | 2 +- .../Prusa/filament/Prusament PLA @XL 5T.json | 2 +- .../Prusa/filament/Prusament PLA @XL.json | 2 +- .../filament/Prusament PVB @CORE One 0.6.json | 2 +- .../filament/Prusament PVB @CORE One 0.8.json | 2 +- .../filament/Prusament PVB @CORE One.json | 2 +- .../Prusa/filament/Prusament PVB @XL 5T.json | 2 +- .../Prusa/filament/Prusament PVB @XL.json | 2 +- .../Prusament rPLA @CORE One 0.6.json | 2 +- .../Prusament rPLA @CORE One 0.8.json | 2 +- .../filament/Prusament rPLA @CORE One.json | 2 +- .../Prusa/filament/Prusament rPLA @XL 5T.json | 2 +- .../Prusa/filament/Prusament rPLA @XL.json | 2 +- .../machine/Prusa CORE One 0.25 nozzle.json | 1 + .../machine/Prusa CORE One 0.3 nozzle.json | 1 + .../machine/Prusa CORE One 0.4 nozzle.json | 1 + .../machine/Prusa CORE One 0.5 nozzle.json | 1 + .../machine/Prusa CORE One 0.6 nozzle.json | 1 + .../machine/Prusa CORE One 0.8 nozzle.json | 1 + .../machine/Prusa CORE One HF 0.4 nozzle.json | 1 + .../machine/Prusa CORE One HF 0.5 nozzle.json | 1 + .../machine/Prusa CORE One HF 0.6 nozzle.json | 1 + .../machine/Prusa CORE One HF 0.8 nozzle.json | 1 + .../machine/Prusa CORE One L 0.4 nozzle.json | 1 + .../machine/Prusa CORE One L 0.5 nozzle.json | 1 + .../machine/Prusa CORE One L 0.6 nozzle.json | 1 + .../machine/Prusa CORE One L 0.8 nozzle.json | 1 + .../Prusa CORE One L HF 0.4 nozzle.json | 1 + .../Prusa CORE One L HF 0.5 nozzle.json | 1 + .../Prusa CORE One L HF 0.6 nozzle.json | 1 + .../Prusa CORE One L HF 0.8 nozzle.json | 1 + .../Prusa/machine/Prusa MINI 0.25 nozzle.json | 2 +- .../Prusa/machine/Prusa MINI 0.4 nozzle.json | 2 +- .../Prusa/machine/Prusa MINI 0.6 nozzle.json | 2 +- .../Prusa/machine/Prusa MINI 0.8 nozzle.json | 2 +- .../machine/Prusa MINIIS 0.25 nozzle.json | 2 +- .../machine/Prusa MINIIS 0.4 nozzle.json | 2 +- .../machine/Prusa MINIIS 0.6 nozzle.json | 2 +- .../machine/Prusa MINIIS 0.8 nozzle.json | 2 +- .../machine/Prusa MK3.5 0.25 nozzle.json | 2 +- .../Prusa/machine/Prusa MK3.5 0.4 nozzle.json | 2 +- .../Prusa/machine/Prusa MK3.5 0.6 nozzle.json | 2 +- .../Prusa/machine/Prusa MK3.5 0.8 nozzle.json | 2 +- .../Prusa/machine/Prusa MK3S 0.25 nozzle.json | 2 +- .../Prusa/machine/Prusa MK3S 0.4 nozzle.json | 2 +- .../Prusa/machine/Prusa MK3S 0.6 nozzle.json | 2 +- .../Prusa/machine/Prusa MK3S 0.8 nozzle.json | 2 +- .../Prusa/machine/Prusa MK4 0.25 nozzle.json | 2 +- .../Prusa/machine/Prusa MK4 0.4 nozzle.json | 2 +- .../Prusa/machine/Prusa MK4 0.6 nozzle.json | 2 +- .../Prusa/machine/Prusa MK4 0.8 nozzle.json | 2 +- .../Prusa/machine/Prusa MK4S 0.25 nozzle.json | 1 + .../Prusa/machine/Prusa MK4S 0.3 nozzle.json | 1 + .../Prusa/machine/Prusa MK4S 0.4 nozzle.json | 1 + .../Prusa/machine/Prusa MK4S 0.5 nozzle.json | 1 + .../Prusa/machine/Prusa MK4S 0.6 nozzle.json | 1 + .../Prusa/machine/Prusa MK4S 0.8 nozzle.json | 1 + .../machine/Prusa MK4S HF0.4 nozzle.json | 1 + .../machine/Prusa MK4S HF0.5 nozzle.json | 1 + .../machine/Prusa MK4S HF0.6 nozzle.json | 1 + .../machine/Prusa MK4S HF0.8 nozzle.json | 1 + .../Prusa/machine/Prusa XL 0.25 nozzle.json | 2 +- .../Prusa/machine/Prusa XL 0.3 nozzle.json | 2 +- .../Prusa/machine/Prusa XL 0.4 nozzle.json | 2 +- .../Prusa/machine/Prusa XL 0.5 nozzle.json | 2 +- .../Prusa/machine/Prusa XL 0.6 nozzle.json | 2 +- .../Prusa/machine/Prusa XL 0.8 nozzle.json | 2 +- .../machine/Prusa XL 5T 0.25 nozzle.json | 2 +- .../Prusa/machine/Prusa XL 5T 0.3 nozzle.json | 2 +- .../Prusa/machine/Prusa XL 5T 0.4 nozzle.json | 2 +- .../Prusa/machine/Prusa XL 5T 0.5 nozzle.json | 2 +- .../Prusa/machine/Prusa XL 5T 0.6 nozzle.json | 2 +- .../Prusa/machine/Prusa XL 5T 0.8 nozzle.json | 2 +- .../process/0.05mm DETAIL @CORE One 0.25.json | 1 + .../0.05mm DETAIL @CORE One L 0.25.json | 1 + .../process/0.05mm DETAIL @MK4S 0.25.json | 1 + .../Prusa/process/0.05mm Detail @MINIIS.json | 2 +- .../Prusa/process/0.05mm Detail @MK3.5.json | 2 +- .../process/0.05mm Detail @Prusa XL 0.25.json | 2 +- .../0.05mm Detail @Prusa XL 5T 0.25.json | 2 +- .../0.05mm UltraDetail @MK3S 0.25.json | 1 + .../process/0.05mm UltraDetail @MK3S 0.4.json | 1 + .../process/0.05mm UltraDetail @MK3S.json | 1 + .../process/0.07mm DETAIL @CORE One 0.25.json | 1 + .../0.07mm DETAIL @CORE One L 0.25.json | 1 + .../process/0.07mm DETAIL @MK4S 0.25.json | 1 + .../Prusa/process/0.07mm Detail @MINIIS.json | 2 +- .../Prusa/process/0.07mm Detail @MK3.5.json | 2 +- .../process/0.07mm Detail @Prusa XL 0.25.json | 2 +- .../0.07mm Detail @Prusa XL 5T 0.25.json | 2 +- .../0.07mm UltraDetail @MK3S 0.25.json | 1 + .../process/0.07mm UltraDetail @MK3S 0.4.json | 1 + .../process/0.07mm UltraDetail @MK3S.json | 1 + .../Prusa/process/0.08mm Standard @MK4.json | 2 +- .../process/0.10mm Detail @MK3S 0.25.json | 1 + .../process/0.10mm Detail @MK3S 0.4.json | 1 + .../Prusa/process/0.10mm Detail @MK3S.json | 1 + .../0.10mm FAST DETAIL @CORE One 0.4.json | 1 + .../0.10mm FAST DETAIL @CORE One L 0.4.json | 1 + .../process/0.10mm FAST DETAIL @MK4S 0.4.json | 1 + .../0.10mm FastDetail @Prusa XL 0.4.json | 2 +- .../0.10mm FastDetail @Prusa XL 5T 0.4.json | 2 +- .../0.10mm STRUCTURAL @CORE One 0.5.json | 1 + .../0.10mm STRUCTURAL @CORE One L 0.5.json | 1 + .../process/0.10mm STRUCTURAL @MK4S 0.5.json | 1 + .../Prusa/process/0.10mm Speed @MINIIS.json | 2 +- .../Prusa/process/0.10mm Speed @MK3.5.json | 2 +- .../0.10mm Structural @Prusa XL 0.5.json | 2 +- .../0.10mm Structural @Prusa XL 5T 0.5.json | 2 +- .../process/0.12mm SPEED @CORE One 0.25.json | 1 + .../0.12mm SPEED @CORE One L 0.25.json | 1 + .../process/0.12mm SPEED @MK4S 0.25.json | 1 + .../0.12mm STRUCTURAL @CORE One 0.25.json | 1 + .../0.12mm STRUCTURAL @CORE One 0.3.json | 1 + .../0.12mm STRUCTURAL @CORE One L 0.25.json | 1 + .../0.12mm STRUCTURAL @CORE One L 0.3.json | 1 + .../process/0.12mm STRUCTURAL @MK4S 0.25.json | 1 + .../process/0.12mm STRUCTURAL @MK4S 0.3.json | 1 + .../Prusa/process/0.12mm Speed @MINIIS.json | 2 +- .../Prusa/process/0.12mm Speed @MK3.5.json | 2 +- .../process/0.12mm Speed @Prusa XL 0.25.json | 2 +- .../0.12mm Speed @Prusa XL 5T 0.25.json | 2 +- .../process/0.12mm Standard @MINIIS.json | 2 +- .../Prusa/process/0.12mm Standard @MK3.5.json | 2 +- .../Prusa/process/0.12mm Standard @MK4.json | 2 +- .../0.12mm Structural @Prusa XL 0.25.json | 2 +- .../0.12mm Structural @Prusa XL 0.3.json | 2 +- .../0.12mm Structural @Prusa XL 5T 0.25.json | 2 +- .../0.12mm Structural @Prusa XL 5T 0.3.json | 2 +- .../process/0.15mm Detail @MK3S 0.6.json | 1 + .../process/0.15mm High Flow @MINIIS.json | 2 +- .../process/0.15mm High Flow @MK3.5.json | 2 +- .../process/0.15mm Quality @MK3S 0.25.json | 1 + .../process/0.15mm Quality @MK3S 0.4.json | 1 + .../Prusa/process/0.15mm Quality @MK3S.json | 1 + .../process/0.15mm SPEED @CORE One 0.25.json | 1 + .../process/0.15mm SPEED @CORE One 0.4.json | 1 + .../0.15mm SPEED @CORE One HF 0.4.json | 1 + .../0.15mm SPEED @CORE One L 0.25.json | 1 + .../process/0.15mm SPEED @CORE One L 0.4.json | 1 + .../0.15mm SPEED @CORE One L HF 0.4.json | 1 + .../process/0.15mm SPEED @MK4S 0.25.json | 1 + .../Prusa/process/0.15mm SPEED @MK4S 0.4.json | 1 + .../process/0.15mm SPEED @MK4S HF0.4.json | 1 + .../0.15mm STRUCTURAL @CORE One 0.25.json | 1 + .../0.15mm STRUCTURAL @CORE One 0.4.json | 1 + .../0.15mm STRUCTURAL @CORE One 0.5.json | 1 + .../0.15mm STRUCTURAL @CORE One 0.6.json | 1 + .../0.15mm STRUCTURAL @CORE One L 0.25.json | 1 + .../0.15mm STRUCTURAL @CORE One L 0.4.json | 1 + .../0.15mm STRUCTURAL @CORE One L 0.5.json | 1 + .../0.15mm STRUCTURAL @CORE One L 0.6.json | 1 + .../process/0.15mm STRUCTURAL @MK4S 0.25.json | 1 + .../process/0.15mm STRUCTURAL @MK4S 0.4.json | 1 + .../process/0.15mm STRUCTURAL @MK4S 0.5.json | 1 + .../process/0.15mm STRUCTURAL @MK4S 0.6.json | 1 + .../process/0.15mm Speed @MINIIS 0.25.json | 2 +- .../Prusa/process/0.15mm Speed @MINIIS.json | 2 +- .../process/0.15mm Speed @MK3.5 0.25.json | 2 +- .../Prusa/process/0.15mm Speed @MK3.5.json | 2 +- .../Prusa/process/0.15mm Speed @MK3S 0.4.json | 43 --- .../Prusa/process/0.15mm Speed @MK3S.json | 1 + .../process/0.15mm Speed @Prusa XL 0.25.json | 2 +- .../process/0.15mm Speed @Prusa XL 0.4.json | 2 +- .../0.15mm Speed @Prusa XL 5T 0.25.json | 2 +- .../0.15mm Speed @Prusa XL 5T 0.4.json | 2 +- .../process/0.15mm Standard @MINIIS 0.25.json | 2 +- .../process/0.15mm Standard @MINIIS 0.6.json | 2 +- .../process/0.15mm Standard @MINIIS.json | 2 +- .../process/0.15mm Standard @MK3.5 0.25.json | 2 +- .../process/0.15mm Standard @MK3.5 0.6.json | 2 +- .../Prusa/process/0.15mm Standard @MK3.5.json | 2 +- .../0.15mm Structural @Prusa XL 0.25.json | 2 +- .../0.15mm Structural @Prusa XL 0.4.json | 2 +- .../0.15mm Structural @Prusa XL 0.5.json | 2 +- .../0.15mm Structural @Prusa XL 0.6.json | 2 +- .../0.15mm Structural @Prusa XL 5T 0.25.json | 2 +- .../0.15mm Structural @Prusa XL 5T 0.4.json | 2 +- .../0.15mm Structural @Prusa XL 5T 0.5.json | 2 +- .../0.15mm Structural @Prusa XL 5T 0.6.json | 2 +- .../process/0.16mm SPEED @CORE One 0.3.json | 1 + .../process/0.16mm SPEED @CORE One L 0.3.json | 1 + .../Prusa/process/0.16mm SPEED @MK4S 0.3.json | 1 + .../0.16mm STRUCTURAL @CORE One 0.3.json | 1 + .../0.16mm STRUCTURAL @CORE One L 0.3.json | 1 + .../process/0.16mm STRUCTURAL @MK4S 0.3.json | 1 + .../process/0.16mm Speed @Prusa XL 0.3.json | 2 +- .../0.16mm Speed @Prusa XL 5T 0.3.json | 2 +- .../Prusa/process/0.16mm Standard @MK4.json | 2 +- .../0.16mm Structural @Prusa XL 0.3.json | 2 +- .../0.16mm Structural @Prusa XL 5T 0.3.json | 2 +- .../process/0.20mm Detail @MK3S 0.6.json | 1 + .../process/0.20mm High Flow @MINIIS 0.6.json | 2 +- .../process/0.20mm High Flow @MINIIS.json | 2 +- .../process/0.20mm High Flow @MK3.5 0.6.json | 2 +- .../process/0.20mm High Flow @MK3.5.json | 2 +- .../Prusa/process/0.20mm Quality @MK3S.json | 1 + .../0.20mm SOLUBLE FULL @CORE One 0.4.json | 1 + .../0.20mm SOLUBLE FULL @CORE One L 0.4.json | 1 + .../0.20mm SOLUBLE FULL @MK4S 0.4.json | 1 + ....20mm SOLUBLE INTERFACE @CORE One 0.4.json | 1 + ...0mm SOLUBLE INTERFACE @CORE One L 0.4.json | 1 + .../0.20mm SOLUBLE INTERFACE @MK4S 0.4.json | 1 + .../process/0.20mm SPEED @CORE One 0.3.json | 1 + .../process/0.20mm SPEED @CORE One 0.4.json | 1 + .../process/0.20mm SPEED @CORE One 0.5.json | 1 + .../process/0.20mm SPEED @CORE One 0.6.json | 1 + .../0.20mm SPEED @CORE One HF 0.4.json | 1 + .../0.20mm SPEED @CORE One HF 0.5.json | 1 + .../0.20mm SPEED @CORE One HF 0.6.json | 1 + .../process/0.20mm SPEED @CORE One L 0.3.json | 1 + .../process/0.20mm SPEED @CORE One L 0.4.json | 1 + .../process/0.20mm SPEED @CORE One L 0.5.json | 1 + .../process/0.20mm SPEED @CORE One L 0.6.json | 1 + .../0.20mm SPEED @CORE One L HF 0.4.json | 1 + .../0.20mm SPEED @CORE One L HF 0.5.json | 1 + .../0.20mm SPEED @CORE One L HF 0.6.json | 1 + .../Prusa/process/0.20mm SPEED @MK4S 0.3.json | 1 + .../Prusa/process/0.20mm SPEED @MK4S 0.4.json | 1 + .../Prusa/process/0.20mm SPEED @MK4S 0.5.json | 1 + .../Prusa/process/0.20mm SPEED @MK4S 0.6.json | 1 + .../process/0.20mm SPEED @MK4S HF0.4.json | 1 + .../process/0.20mm SPEED @MK4S HF0.5.json | 1 + .../process/0.20mm SPEED @MK4S HF0.6.json | 1 + .../0.20mm STRUCTURAL @CORE One 0.3.json | 1 + .../0.20mm STRUCTURAL @CORE One 0.4.json | 1 + .../0.20mm STRUCTURAL @CORE One 0.5.json | 1 + .../0.20mm STRUCTURAL @CORE One 0.6.json | 1 + .../0.20mm STRUCTURAL @CORE One L 0.3.json | 1 + .../0.20mm STRUCTURAL @CORE One L 0.4.json | 1 + .../0.20mm STRUCTURAL @CORE One L 0.5.json | 1 + .../0.20mm STRUCTURAL @CORE One L 0.6.json | 1 + .../process/0.20mm STRUCTURAL @MK4S 0.3.json | 1 + .../process/0.20mm STRUCTURAL @MK4S 0.4.json | 1 + .../process/0.20mm STRUCTURAL @MK4S 0.5.json | 1 + .../process/0.20mm STRUCTURAL @MK4S 0.6.json | 1 + .../process/0.20mm Speed @MINIIS 0.6.json | 2 +- .../Prusa/process/0.20mm Speed @MINIIS.json | 2 +- .../process/0.20mm Speed @MK3.5 0.6.json | 2 +- .../Prusa/process/0.20mm Speed @MK3.5.json | 2 +- .../Prusa/process/0.20mm Speed @MK3S 0.4.json | 1 + .../Prusa/process/0.20mm Speed @MK3S.json | 1 + .../process/0.20mm Speed @Prusa XL 0.3.json | 2 +- .../process/0.20mm Speed @Prusa XL 0.4.json | 2 +- .../process/0.20mm Speed @Prusa XL 0.5.json | 2 +- .../process/0.20mm Speed @Prusa XL 0.6.json | 2 +- .../0.20mm Speed @Prusa XL 5T 0.3.json | 2 +- .../0.20mm Speed @Prusa XL 5T 0.4.json | 2 +- .../0.20mm Speed @Prusa XL 5T 0.5.json | 2 +- .../0.20mm Speed @Prusa XL 5T 0.6.json | 2 +- .../process/0.20mm Standard @MINI 0.25.json | 2 +- .../process/0.20mm Standard @MINI 0.6.json | 2 +- .../process/0.20mm Standard @MINI 0.8.json | 2 +- .../Prusa/process/0.20mm Standard @MINI.json | 2 +- .../process/0.20mm Standard @MINIIS 0.6.json | 2 +- .../process/0.20mm Standard @MINIIS.json | 2 +- .../process/0.20mm Standard @MK3.5 0.6.json | 2 +- .../Prusa/process/0.20mm Standard @MK3.5.json | 2 +- .../process/0.20mm Standard @MK3S 0.4.json | 2 +- .../Prusa/process/0.20mm Standard @MK3S.json | 2 +- .../Prusa/process/0.20mm Standard @MK4.json | 2 +- .../0.20mm Structural @Prusa XL 0.4.json | 2 +- .../0.20mm Structural @Prusa XL 0.5.json | 2 +- .../0.20mm Structural @Prusa XL 0.6.json | 2 +- .../0.20mm Structural @Prusa XL 5T 0.4.json | 2 +- .../0.20mm Structural @Prusa XL 5T 0.5.json | 2 +- .../0.20mm Structural @Prusa XL 5T 0.6.json | 2 +- .../Prusa/process/0.24mm Standard @MK4.json | 2 +- .../process/0.25mm High Flow @MINIIS.json | 2 +- .../process/0.25mm High Flow @MK3.5.json | 2 +- .../process/0.25mm SPEED @CORE One 0.5.json | 1 + .../process/0.25mm SPEED @CORE One 0.6.json | 1 + .../0.25mm SPEED @CORE One HF 0.4.json | 1 + .../0.25mm SPEED @CORE One HF 0.5.json | 1 + .../0.25mm SPEED @CORE One HF 0.6.json | 1 + .../process/0.25mm SPEED @CORE One L 0.5.json | 1 + .../process/0.25mm SPEED @CORE One L 0.6.json | 1 + .../0.25mm SPEED @CORE One L HF 0.4.json | 1 + .../0.25mm SPEED @CORE One L HF 0.5.json | 1 + .../0.25mm SPEED @CORE One L HF 0.6.json | 1 + .../Prusa/process/0.25mm SPEED @MK4S 0.5.json | 1 + .../Prusa/process/0.25mm SPEED @MK4S 0.6.json | 1 + .../process/0.25mm SPEED @MK4S HF0.4.json | 1 + .../process/0.25mm SPEED @MK4S HF0.5.json | 1 + .../process/0.25mm SPEED @MK4S HF0.6.json | 1 + .../0.25mm STRUCTURAL @CORE One 0.5.json | 1 + .../0.25mm STRUCTURAL @CORE One 0.6.json | 1 + .../0.25mm STRUCTURAL @CORE One HF 0.4.json | 1 + .../0.25mm STRUCTURAL @CORE One L 0.5.json | 1 + .../0.25mm STRUCTURAL @CORE One L 0.6.json | 1 + .../0.25mm STRUCTURAL @CORE One L HF 0.4.json | 1 + .../process/0.25mm STRUCTURAL @MK4S 0.5.json | 1 + .../process/0.25mm STRUCTURAL @MK4S 0.6.json | 1 + .../0.25mm STRUCTURAL @MK4S HF0.4.json | 1 + .../Prusa/process/0.25mm Speed @MINIIS.json | 2 +- .../Prusa/process/0.25mm Speed @MK3.5.json | 2 +- .../process/0.25mm Speed @Prusa XL 0.5.json | 2 +- .../process/0.25mm Speed @Prusa XL 0.6.json | 2 +- .../0.25mm Speed @Prusa XL 5T 0.5.json | 2 +- .../0.25mm Speed @Prusa XL 5T 0.6.json | 2 +- .../process/0.25mm Standard @MINIIS.json | 2 +- .../Prusa/process/0.25mm Standard @MK3.5.json | 2 +- .../0.25mm Structural @Prusa XL 0.4.json | 2 +- .../0.25mm Structural @Prusa XL 0.5.json | 2 +- .../0.25mm Structural @Prusa XL 0.6.json | 2 +- .../0.25mm Structural @Prusa XL 5T 0.4.json | 2 +- .../0.25mm Structural @Prusa XL 5T 0.5.json | 2 +- .../0.25mm Structural @Prusa XL 5T 0.6.json | 2 +- .../0.28mm DRAFT @CORE One HF 0.4.json | 1 + .../0.28mm DRAFT @CORE One L HF 0.4.json | 1 + .../process/0.28mm DRAFT @MK4S HF0.4.json | 1 + .../Prusa/process/0.28mm Standard @MK4.json | 2 +- .../process/0.30mm DETAIL @CORE One 0.8.json | 1 + .../0.30mm DETAIL @CORE One L 0.8.json | 1 + .../process/0.30mm DETAIL @MK4S 0.8.json | 1 + .../Prusa/process/0.30mm Detail @MINIIS.json | 2 +- .../Prusa/process/0.30mm Detail @MK3.5.json | 2 +- .../process/0.30mm Detail @MK3S 0.8.json | 1 + .../process/0.30mm Detail @Prusa XL 0.8.json | 2 +- .../0.30mm Detail @Prusa XL 5T 0.8.json | 2 +- .../Prusa/process/0.30mm Draft @MK3S 0.4.json | 1 + .../Prusa/process/0.30mm Draft @MK3S.json | 1 + .../process/0.30mm Quality @MK3S 0.6.json | 1 + .../0.30mm SPEED @CORE One HF 0.8.json | 1 + .../0.30mm SPEED @CORE One L HF 0.8.json | 1 + .../process/0.30mm SPEED @MK4S HF0.8.json | 1 + .../0.30mm STRUCTURAL @CORE One HF 0.8.json | 1 + .../0.30mm STRUCTURAL @CORE One L HF 0.8.json | 1 + .../0.30mm STRUCTURAL @MK4S HF0.8.json | 1 + .../process/0.32mm High Flow @MINIIS.json | 2 +- .../process/0.32mm High Flow @MK3.5.json | 2 +- .../process/0.32mm SPEED @CORE One 0.6.json | 1 + .../0.32mm SPEED @CORE One HF 0.5.json | 1 + .../0.32mm SPEED @CORE One HF 0.6.json | 1 + .../process/0.32mm SPEED @CORE One L 0.6.json | 1 + .../0.32mm SPEED @CORE One L HF 0.5.json | 1 + .../0.32mm SPEED @CORE One L HF 0.6.json | 1 + .../Prusa/process/0.32mm SPEED @MK4S 0.6.json | 1 + .../process/0.32mm SPEED @MK4S HF0.5.json | 1 + .../process/0.32mm SPEED @MK4S HF0.6.json | 1 + .../0.32mm STRUCTURAL @CORE One 0.6.json | 1 + .../0.32mm STRUCTURAL @CORE One HF 0.5.json | 1 + .../0.32mm STRUCTURAL @CORE One HF 0.6.json | 1 + .../0.32mm STRUCTURAL @CORE One L 0.6.json | 1 + .../0.32mm STRUCTURAL @CORE One L HF 0.5.json | 1 + .../0.32mm STRUCTURAL @CORE One L HF 0.6.json | 1 + .../process/0.32mm STRUCTURAL @MK4S 0.6.json | 1 + .../0.32mm STRUCTURAL @MK4S HF0.5.json | 1 + .../0.32mm STRUCTURAL @MK4S HF0.6.json | 1 + .../process/0.32mm Speed @Prusa XL 0.6.json | 2 +- .../0.32mm Speed @Prusa XL 5T 0.6.json | 2 +- .../process/0.32mm Standard @MINIIS.json | 2 +- .../Prusa/process/0.32mm Standard @MK3.5.json | 2 +- .../Prusa/process/0.32mm Standard @MK4.json | 2 +- .../0.32mm Structural @Prusa XL 0.6.json | 2 +- .../0.32mm Structural @Prusa XL 5T 0.6.json | 2 +- .../Prusa/process/0.35mm Speed @MK3S 0.6.json | 1 + .../process/0.35mm Standard @MINIIS.json | 2 +- .../Prusa/process/0.35mm Standard @MK3.5.json | 2 +- .../Prusa/process/0.40mm Draft @MK3S 0.6.json | 1 + .../process/0.40mm High Flow @MINIIS.json | 2 +- .../process/0.40mm High Flow @MK3.5.json | 2 +- .../process/0.40mm QUALITY @CORE One 0.8.json | 1 + .../0.40mm QUALITY @CORE One L 0.8.json | 1 + .../process/0.40mm QUALITY @MK4S 0.8.json | 1 + .../process/0.40mm Quality @MK3S 0.8.json | 1 + .../process/0.40mm Quality @Prusa XL 0.8.json | 2 +- .../0.40mm Quality @Prusa XL 5T 0.8.json | 2 +- .../0.40mm SPEED @CORE One HF 0.6.json | 1 + .../0.40mm SPEED @CORE One HF 0.8.json | 1 + .../0.40mm SPEED @CORE One L HF 0.6.json | 1 + .../0.40mm SPEED @CORE One L HF 0.8.json | 1 + .../process/0.40mm SPEED @MK4S HF0.6.json | 1 + .../process/0.40mm SPEED @MK4S HF0.8.json | 1 + .../0.40mm STRUCTURAL @CORE One HF 0.6.json | 1 + .../0.40mm STRUCTURAL @CORE One HF 0.8.json | 1 + .../0.40mm STRUCTURAL @CORE One L HF 0.6.json | 1 + .../0.40mm STRUCTURAL @CORE One L HF 0.8.json | 1 + .../0.40mm STRUCTURAL @MK4S HF0.6.json | 1 + .../0.40mm STRUCTURAL @MK4S HF0.8.json | 1 + .../process/0.40mm Standard @MINIIS.json | 2 +- .../Prusa/process/0.40mm Standard @MK3.5.json | 2 +- .../Prusa/process/0.40mm Standard @MK4.json | 2 +- .../process/0.55mm DRAFT @CORE One 0.8.json | 1 + .../process/0.55mm DRAFT @CORE One L 0.8.json | 1 + .../Prusa/process/0.55mm DRAFT @MK4S 0.8.json | 1 + .../Prusa/process/0.55mm Draft @MK3S 0.8.json | 1 + .../process/0.55mm Draft @Prusa XL 0.8.json | 2 +- .../0.55mm Draft @Prusa XL 5T 0.8.json | 2 +- .../0.55mm SPEED @CORE One HF 0.8.json | 1 + .../0.55mm SPEED @CORE One L HF 0.8.json | 1 + .../process/0.55mm SPEED @MK4S HF0.8.json | 1 + .../0.55mm STRUCTURAL @MK4S HF0.8.json | 1 + .../Prusa/process/0.56mm Standard @MK4.json | 2 +- resources/profiles/Qidi.json | 2 +- .../Qidi/filament/Bambu ABS @0.2 nozzle.json | 2 +- .../Qidi/filament/Bambu ABS @0.6 nozzle.json | 2 +- .../Qidi/filament/Bambu ABS @0.8 nozzle.json | 2 +- .../Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json | 2 +- .../Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json | 2 +- .../Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json | 2 +- .../Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json | 2 +- .../Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/Bambu ABS.json | 2 +- .../Qidi/filament/Bambu PETG @0.2 nozzle.json | 2 +- .../Qidi/filament/Bambu PETG @0.6 nozzle.json | 2 +- .../Qidi/filament/Bambu PETG @0.8 nozzle.json | 2 +- .../Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json | 2 +- .../Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json | 2 +- .../Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json | 2 +- .../Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json | 2 +- .../Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/Bambu PETG.json | 2 +- .../Qidi/filament/Bambu PLA @0.2 nozzle.json | 2 +- .../Qidi/filament/Bambu PLA @0.6 nozzle.json | 2 +- .../Qidi/filament/Bambu PLA @0.8 nozzle.json | 2 +- .../Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json | 2 +- .../Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json | 2 +- .../Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json | 2 +- .../Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json | 2 +- .../Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/Bambu PLA.json | 2 +- .../HATCHBOX ABS @Qidi 0.2 nozzle.json | 2 +- .../HATCHBOX ABS @Qidi 0.6 nozzle.json | 2 +- .../HATCHBOX ABS @Qidi 0.8 nozzle.json | 2 +- .../HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...ATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...ATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...ATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...ATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/HATCHBOX ABS @Qidi.json | 2 +- .../HATCHBOX PETG @Qidi 0.2 nozzle.json | 2 +- .../HATCHBOX PETG @Qidi 0.6 nozzle.json | 2 +- .../HATCHBOX PETG @Qidi 0.8 nozzle.json | 2 +- ...HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...TCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...TCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...TCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...TCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/HATCHBOX PETG @Qidi.json | 2 +- .../HATCHBOX PLA @Qidi 0.2 nozzle.json | 2 +- .../HATCHBOX PLA @Qidi 0.6 nozzle.json | 2 +- .../HATCHBOX PLA @Qidi 0.8 nozzle.json | 2 +- .../HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...ATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...ATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...ATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...ATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/HATCHBOX PLA @Qidi.json | 2 +- .../Overture ABS @Qidi 0.2 nozzle.json | 2 +- .../Overture ABS @Qidi 0.6 nozzle.json | 2 +- .../Overture ABS @Qidi 0.8 nozzle.json | 2 +- .../Overture ABS @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../Overture ABS @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../Overture ABS @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../Overture ABS @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...verture ABS @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...verture ABS @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...verture ABS @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...verture ABS @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/Overture ABS @Qidi.json | 2 +- .../Overture PLA @Qidi 0.2 nozzle.json | 2 +- .../Overture PLA @Qidi 0.6 nozzle.json | 2 +- .../Overture PLA @Qidi 0.8 nozzle.json | 2 +- .../Overture PLA @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../Overture PLA @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../Overture PLA @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../Overture PLA @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...verture PLA @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...verture PLA @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...verture PLA @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...verture PLA @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/Overture PLA @Qidi.json | 2 +- .../PolyLite ABS @Qidi 0.2 nozzle.json | 2 +- .../PolyLite ABS @Qidi 0.6 nozzle.json | 2 +- .../PolyLite ABS @Qidi 0.8 nozzle.json | 2 +- .../PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...olyLite ABS @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...olyLite ABS @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...olyLite ABS @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...olyLite ABS @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/PolyLite ABS @Qidi.json | 2 +- .../PolyLite PLA @Qidi 0.2 nozzle.json | 2 +- .../PolyLite PLA @Qidi 0.6 nozzle.json | 2 +- .../PolyLite PLA @Qidi 0.8 nozzle.json | 2 +- .../PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...olyLite PLA @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...olyLite PLA @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...olyLite PLA @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...olyLite PLA @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/PolyLite PLA @Qidi.json | 2 +- .../Qidi/filament/Q2/Bambu ABS @Q2.json | 1 - .../Qidi/filament/Q2/Bambu ABS @Q2C.json | 1 - .../Q2/Bambu ABS @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/Bambu ABS @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/Bambu ABS @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/Bambu ABS @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/Bambu PETG @Q2.json | 1 - .../Qidi/filament/Q2/Bambu PETG @Q2C.json | 1 - .../Q2/Bambu PETG @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/Bambu PETG @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/Bambu PETG @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/Bambu PETG @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/Bambu PLA @Q2.json | 1 - .../Qidi/filament/Q2/Bambu PLA @Q2C.json | 1 - .../Q2/Bambu PLA @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/Bambu PLA @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/Bambu PLA @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/Bambu PLA @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/Generic ABS @Q2.json | 1 - .../Qidi/filament/Q2/Generic ABS @Q2C.json | 1 - .../Q2/Generic ABS @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/Generic ABS @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/Generic ABS @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/Generic ABS @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/Generic PC @Q2.json | 1 - .../Qidi/filament/Q2/Generic PC @Q2C.json | 1 - .../Q2/Generic PC @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/Generic PC @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/Generic PC @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/Generic PC @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/Generic PC @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/Generic PC @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/Generic PC @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/Generic PC @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/Generic PETG @Q2.json | 1 - .../Qidi/filament/Q2/Generic PETG @Q2C.json | 1 - .../Q2/Generic PETG @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/Generic PETG @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/Generic PETG @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/Generic PETG @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/Generic PLA @Q2.json | 1 - .../Qidi/filament/Q2/Generic PLA @Q2C.json | 1 - .../Q2/Generic PLA @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/Generic PLA @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/Generic PLA @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/Generic PLA @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json | 2 +- .../filament/Q2/Generic PLA Silk @Q2.json | 1 - .../filament/Q2/Generic PLA Silk @Q2C.json | 1 - .../Generic PLA Silk @Qidi Q2 0.4 nozzle.json | 2 +- .../Generic PLA Silk @Qidi Q2 0.6 nozzle.json | 2 +- ...Generic PLA Silk @Qidi Q2C 0.4 nozzle.json | 2 +- ...Generic PLA Silk @Qidi Q2C 0.6 nozzle.json | 2 +- .../Qidi/filament/Q2/Generic PLA+ @Q2.json | 1 - .../Qidi/filament/Q2/Generic PLA+ @Q2C.json | 1 - .../Q2/Generic PLA+ @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/Generic PLA+ @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/Generic PLA+ @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/Generic PLA+ @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/Generic TPU 95A @Q2.json | 1 - .../filament/Q2/Generic TPU 95A @Q2C.json | 1 - .../Generic TPU 95A @Qidi Q2 0.4 nozzle.json | 2 +- .../Generic TPU 95A @Qidi Q2 0.6 nozzle.json | 2 +- .../Generic TPU 95A @Qidi Q2 0.8 nozzle.json | 2 +- .../Generic TPU 95A @Qidi Q2C 0.4 nozzle.json | 2 +- .../Generic TPU 95A @Qidi Q2C 0.6 nozzle.json | 2 +- .../Generic TPU 95A @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/HATCHBOX ABS @Q2.json | 1 - .../Qidi/filament/Q2/HATCHBOX ABS @Q2C.json | 1 - .../Q2/HATCHBOX ABS @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/HATCHBOX ABS @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/HATCHBOX ABS @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/HATCHBOX ABS @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/HATCHBOX PETG @Q2.json | 1 - .../Qidi/filament/Q2/HATCHBOX PETG @Q2C.json | 1 - .../Q2/HATCHBOX PETG @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/HATCHBOX PETG @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/HATCHBOX PETG @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/HATCHBOX PETG @Qidi Q2 0.8 nozzle.json | 2 +- .../HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json | 2 +- .../HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json | 2 +- .../HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json | 2 +- .../HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/HATCHBOX PLA @Q2.json | 1 - .../Qidi/filament/Q2/HATCHBOX PLA @Q2C.json | 1 - .../Q2/HATCHBOX PLA @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/HATCHBOX PLA @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/HATCHBOX PLA @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/HATCHBOX PLA @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/Overture ABS @Q2.json | 1 - .../Qidi/filament/Q2/Overture ABS @Q2C.json | 1 - .../Q2/Overture ABS @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/Overture ABS @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/Overture ABS @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/Overture ABS @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/Overture PLA @Q2.json | 1 - .../Qidi/filament/Q2/Overture PLA @Q2C.json | 1 - .../Q2/Overture PLA @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/Overture PLA @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/Overture PLA @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/Overture PLA @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/PolyLite ABS @Q2.json | 1 - .../Qidi/filament/Q2/PolyLite ABS @Q2C.json | 1 - .../Q2/PolyLite ABS @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/PolyLite ABS @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/PolyLite ABS @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/PolyLite ABS @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/PolyLite PLA @Q2.json | 1 - .../Qidi/filament/Q2/PolyLite PLA @Q2C.json | 1 - .../Q2/PolyLite PLA @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/PolyLite PLA @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/PolyLite PLA @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/PolyLite PLA @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json | 2 +- .../filament/Q2/QIDI ABS Odorless @Q2.json | 1 - .../filament/Q2/QIDI ABS Odorless @Q2C.json | 1 - ...QIDI ABS Odorless @Qidi Q2 0.2 nozzle.json | 2 +- ...QIDI ABS Odorless @Qidi Q2 0.4 nozzle.json | 2 +- ...QIDI ABS Odorless @Qidi Q2 0.6 nozzle.json | 2 +- ...QIDI ABS Odorless @Qidi Q2 0.8 nozzle.json | 2 +- ...IDI ABS Odorless @Qidi Q2C 0.2 nozzle.json | 2 +- ...IDI ABS Odorless @Qidi Q2C 0.4 nozzle.json | 2 +- ...IDI ABS Odorless @Qidi Q2C 0.6 nozzle.json | 2 +- ...IDI ABS Odorless @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI ABS Rapido @Q2.json | 1 - .../filament/Q2/QIDI ABS Rapido @Q2C.json | 1 - .../QIDI ABS Rapido @Qidi Q2 0.2 nozzle.json | 2 +- .../QIDI ABS Rapido @Qidi Q2 0.4 nozzle.json | 2 +- .../QIDI ABS Rapido @Qidi Q2 0.6 nozzle.json | 2 +- .../QIDI ABS Rapido @Qidi Q2 0.8 nozzle.json | 2 +- .../QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json | 2 +- .../QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json | 2 +- .../QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json | 2 +- .../QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json | 2 +- .../Q2/QIDI ABS Rapido Metal @Q2.json | 1 - .../Q2/QIDI ABS Rapido Metal @Q2C.json | 1 - ... ABS Rapido Metal @Qidi Q2 0.2 nozzle.json | 2 +- ... ABS Rapido Metal @Qidi Q2 0.4 nozzle.json | 2 +- ... ABS Rapido Metal @Qidi Q2 0.6 nozzle.json | 2 +- ... ABS Rapido Metal @Qidi Q2 0.8 nozzle.json | 2 +- ...ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json | 2 +- ...ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json | 2 +- ...ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json | 2 +- ...ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI ABS-GF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI ABS-GF @Q2C.json | 1 - .../Q2/QIDI ABS-GF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI ABS-GF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI ABS-GF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI ASA @Q2.json | 1 - .../Qidi/filament/Q2/QIDI ASA @Q2C.json | 1 - .../Q2/QIDI ASA @Qidi Q2 0.2 nozzle.json | 2 +- .../Q2/QIDI ASA @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI ASA @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI ASA @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json | 2 +- .../Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI ASA-Aero @Q2.json | 1 - .../Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json | 1 - .../Q2/QIDI ASA-Aero @Qidi Q2 0.4 nozzle.json | 2 +- .../QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI ASA-CF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI ASA-CF @Q2C.json | 1 - .../Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PA12-CF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PA12-CF @Q2C.json | 1 - .../Q2/QIDI PA12-CF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI PA12-CF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI PA12-CF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PAHT-CF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json | 1 - .../Q2/QIDI PAHT-CF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI PAHT-CF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI PAHT-CF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PAHT-GF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json | 1 - .../Q2/QIDI PAHT-GF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI PAHT-GF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI PAHT-GF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json | 1 - .../QIDI PC-ABS-FR @Qidi Q2 0.4 nozzle.json | 2 +- .../QIDI PC-ABS-FR @Qidi Q2 0.6 nozzle.json | 2 +- .../QIDI PC-ABS-FR @Qidi Q2 0.8 nozzle.json | 2 +- .../QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json | 2 +- .../QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json | 2 +- .../QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PEBA 95A @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json | 1 - .../Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json | 2 +- .../QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json | 2 +- .../QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PET-CF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PET-CF @Q2C.json | 1 - .../Q2/QIDI PET-CF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI PET-CF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI PET-CF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PET-GF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PET-GF @Q2C.json | 1 - .../Q2/QIDI PET-GF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI PET-GF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI PET-GF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PETG Basic @Q2.json | 1 - .../filament/Q2/QIDI PETG Basic @Q2C.json | 1 - .../QIDI PETG Basic @Qidi Q2 0.2 nozzle.json | 2 +- .../QIDI PETG Basic @Qidi Q2 0.4 nozzle.json | 2 +- .../QIDI PETG Basic @Qidi Q2 0.6 nozzle.json | 2 +- .../QIDI PETG Basic @Qidi Q2 0.8 nozzle.json | 2 +- .../QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json | 2 +- .../QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json | 2 +- .../QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json | 2 +- .../QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json | 2 +- .../filament/Q2/QIDI PETG Rapido @Q2.json | 1 - .../filament/Q2/QIDI PETG Rapido @Q2C.json | 1 - .../QIDI PETG Rapido @Qidi Q2 0.2 nozzle.json | 2 +- .../QIDI PETG Rapido @Qidi Q2 0.4 nozzle.json | 2 +- .../QIDI PETG Rapido @Qidi Q2 0.6 nozzle.json | 2 +- .../QIDI PETG Rapido @Qidi Q2 0.8 nozzle.json | 2 +- ...QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json | 2 +- ...QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json | 2 +- ...QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json | 2 +- ...QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PETG Tough @Q2.json | 1 - .../filament/Q2/QIDI PETG Tough @Q2C.json | 1 - .../QIDI PETG Tough @Qidi Q2 0.2 nozzle.json | 2 +- .../QIDI PETG Tough @Qidi Q2 0.4 nozzle.json | 2 +- .../QIDI PETG Tough @Qidi Q2 0.6 nozzle.json | 2 +- .../QIDI PETG Tough @Qidi Q2 0.8 nozzle.json | 2 +- .../QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json | 2 +- .../QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json | 2 +- .../QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json | 2 +- .../QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json | 2 +- .../Q2/QIDI PETG Translucent @Q2.json | 1 - .../Q2/QIDI PETG Translucent @Q2C.json | 1 - ... PETG Translucent @Qidi Q2 0.2 nozzle.json | 2 +- ... PETG Translucent @Qidi Q2 0.4 nozzle.json | 2 +- ... PETG Translucent @Qidi Q2 0.6 nozzle.json | 2 +- ... PETG Translucent @Qidi Q2 0.8 nozzle.json | 2 +- ...PETG Translucent @Qidi Q2C 0.2 nozzle.json | 2 +- ...PETG Translucent @Qidi Q2C 0.4 nozzle.json | 2 +- ...PETG Translucent @Qidi Q2C 0.6 nozzle.json | 2 +- ...PETG Translucent @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PETG-CF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PETG-CF @Q2C.json | 1 - .../Q2/QIDI PETG-CF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI PETG-CF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI PETG-CF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PETG-GF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PETG-GF @Q2C.json | 1 - .../Q2/QIDI PETG-GF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI PETG-GF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI PETG-GF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PLA Basic @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PLA Basic @Q2C.json | 1 - .../QIDI PLA Basic @Qidi Q2 0.2 nozzle.json | 2 +- .../QIDI PLA Basic @Qidi Q2 0.4 nozzle.json | 2 +- .../QIDI PLA Basic @Qidi Q2 0.6 nozzle.json | 2 +- .../QIDI PLA Basic @Qidi Q2 0.8 nozzle.json | 2 +- .../QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json | 2 +- .../QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json | 2 +- .../QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json | 2 +- .../QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json | 2 +- .../filament/Q2/QIDI PLA Matte Basic @Q2.json | 1 - .../Q2/QIDI PLA Matte Basic @Q2C.json | 1 - ...I PLA Matte Basic @Qidi Q2 0.2 nozzle.json | 2 +- ...I PLA Matte Basic @Qidi Q2 0.4 nozzle.json | 2 +- ...I PLA Matte Basic @Qidi Q2 0.6 nozzle.json | 2 +- ...I PLA Matte Basic @Qidi Q2 0.8 nozzle.json | 2 +- ... PLA Matte Basic @Qidi Q2C 0.2 nozzle.json | 2 +- ... PLA Matte Basic @Qidi Q2C 0.4 nozzle.json | 2 +- ... PLA Matte Basic @Qidi Q2C 0.6 nozzle.json | 2 +- ... PLA Matte Basic @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PLA Rapido @Q2.json | 1 - .../filament/Q2/QIDI PLA Rapido @Q2C.json | 1 - .../QIDI PLA Rapido @Qidi Q2 0.2 nozzle.json | 2 +- .../QIDI PLA Rapido @Qidi Q2 0.4 nozzle.json | 2 +- .../QIDI PLA Rapido @Qidi Q2 0.6 nozzle.json | 2 +- .../QIDI PLA Rapido @Qidi Q2 0.8 nozzle.json | 2 +- .../QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json | 2 +- .../QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json | 2 +- .../QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json | 2 +- .../QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json | 2 +- .../Q2/QIDI PLA Rapido Matte @Q2.json | 1 - .../Q2/QIDI PLA Rapido Matte @Q2C.json | 1 - ... PLA Rapido Matte @Qidi Q2 0.2 nozzle.json | 2 +- ... PLA Rapido Matte @Qidi Q2 0.4 nozzle.json | 2 +- ... PLA Rapido Matte @Qidi Q2 0.6 nozzle.json | 2 +- ... PLA Rapido Matte @Qidi Q2 0.8 nozzle.json | 2 +- ...PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json | 2 +- ...PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json | 2 +- ...PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json | 2 +- ...PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json | 2 +- .../Q2/QIDI PLA Rapido Metal @Q2.json | 1 - .../Q2/QIDI PLA Rapido Metal @Q2C.json | 1 - ... PLA Rapido Metal @Qidi Q2 0.2 nozzle.json | 2 +- ... PLA Rapido Metal @Qidi Q2 0.4 nozzle.json | 2 +- ... PLA Rapido Metal @Qidi Q2 0.6 nozzle.json | 2 +- ... PLA Rapido Metal @Qidi Q2 0.8 nozzle.json | 2 +- ...PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json | 2 +- ...PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json | 2 +- ...PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json | 2 +- ...PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json | 2 +- .../filament/Q2/QIDI PLA Rapido Silk @Q2.json | 1 - .../Q2/QIDI PLA Rapido Silk @Q2C.json | 1 - ...I PLA Rapido Silk @Qidi Q2 0.4 nozzle.json | 2 +- ...I PLA Rapido Silk @Qidi Q2 0.6 nozzle.json | 2 +- ... PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json | 2 +- ... PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PLA-CF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PLA-CF @Q2C.json | 1 - .../Q2/QIDI PLA-CF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI PLA-CF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI PLA-CF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PPS-CF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PPS-CF @Q2C.json | 1 - .../Q2/QIDI PPS-CF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI PPS-CF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI PPS-CF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI PPS-GF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI PPS-GF @Q2C.json | 1 - .../Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Q2/QIDI Support For PAHT @Q2.json | 1 - .../Q2/QIDI Support For PAHT @Q2C.json | 1 - ... Support For PAHT @Qidi Q2 0.4 nozzle.json | 2 +- ... Support For PAHT @Qidi Q2 0.6 nozzle.json | 2 +- ... Support For PAHT @Qidi Q2 0.8 nozzle.json | 2 +- ...Support For PAHT @Qidi Q2C 0.4 nozzle.json | 2 +- ...Support For PAHT @Qidi Q2C 0.6 nozzle.json | 2 +- ...Support For PAHT @Qidi Q2C 0.8 nozzle.json | 2 +- .../Q2/QIDI Support For PET-PA @Q2.json | 1 - .../Q2/QIDI Support For PET-PA @Q2C.json | 1 - ...upport For PET-PA @Qidi Q2 0.4 nozzle.json | 2 +- ...upport For PET-PA @Qidi Q2 0.6 nozzle.json | 2 +- ...upport For PET-PA @Qidi Q2 0.8 nozzle.json | 2 +- ...pport For PET-PA @Qidi Q2C 0.4 nozzle.json | 2 +- ...pport For PET-PA @Qidi Q2C 0.6 nozzle.json | 2 +- ...pport For PET-PA @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json | 1 - .../filament/Q2/QIDI TPU 95A-HF @Q2C.json | 1 - .../QIDI TPU 95A-HF @Qidi Q2 0.4 nozzle.json | 2 +- .../QIDI TPU 95A-HF @Qidi Q2 0.6 nozzle.json | 2 +- .../QIDI TPU 95A-HF @Qidi Q2 0.8 nozzle.json | 2 +- .../QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json | 2 +- .../QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json | 2 +- .../QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI TPU-Aero @Q2.json | 1 - .../Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json | 1 - .../Q2/QIDI TPU-Aero @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI TPU-Aero @Qidi Q2 0.6 nozzle.json | 2 +- .../QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json | 2 +- .../QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI TPU-GF @Q2.json | 1 - .../Qidi/filament/Q2/QIDI TPU-GF @Q2C.json | 1 - .../Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json | 2 +- .../Qidi/filament/Q2/QIDI UltraPA @Q2.json | 1 - .../Qidi/filament/Q2/QIDI UltraPA @Q2C.json | 1 - .../Q2/QIDI UltraPA @Qidi Q2 0.4 nozzle.json | 2 +- .../Q2/QIDI UltraPA @Qidi Q2 0.6 nozzle.json | 2 +- .../Q2/QIDI UltraPA @Qidi Q2 0.8 nozzle.json | 2 +- .../Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json | 2 +- .../Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json | 2 +- .../Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json | 2 +- .../filament/Q2/QIDI UltraPA-CF25 @Q2.json | 1 - .../filament/Q2/QIDI UltraPA-CF25 @Q2C.json | 1 - ...QIDI UltraPA-CF25 @Qidi Q2 0.4 nozzle.json | 2 +- ...QIDI UltraPA-CF25 @Qidi Q2 0.6 nozzle.json | 2 +- ...QIDI UltraPA-CF25 @Qidi Q2 0.8 nozzle.json | 2 +- ...IDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json | 2 +- ...IDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json | 2 +- ...IDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json | 2 +- .../filament/Q2/QIDI WOOD Rapido @Q2.json | 1 - .../filament/Q2/QIDI WOOD Rapido @Q2C.json | 1 - .../QIDI WOOD Rapido @Qidi Q2 0.4 nozzle.json | 2 +- .../QIDI WOOD Rapido @Qidi Q2 0.6 nozzle.json | 2 +- .../QIDI WOOD Rapido @Qidi Q2 0.8 nozzle.json | 2 +- ...QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json | 2 +- ...QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json | 2 +- ...QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json | 2 +- .../QIDI ABS Odorless @0.2 nozzle.json | 2 +- .../QIDI ABS Odorless @0.6 nozzle.json | 2 +- .../QIDI ABS Odorless @0.8 nozzle.json | 2 +- ... ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ... ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ... ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ... ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...BS Odorless @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...BS Odorless @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...BS Odorless @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...BS Odorless @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI ABS Odorless.json | 2 +- .../filament/QIDI ABS Rapido 0.2 nozzle.json | 2 +- .../filament/QIDI ABS Rapido 0.6 nozzle.json | 2 +- .../filament/QIDI ABS Rapido 0.8 nozzle.json | 2 +- ...DI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...DI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...DI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...DI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ... ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ... ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ... ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ... ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../QIDI ABS Rapido Metal @0.2 nozzle.json | 2 +- .../QIDI ABS Rapido Metal @0.6 nozzle.json | 2 +- .../QIDI ABS Rapido Metal @0.8 nozzle.json | 2 +- ... Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ... Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ... Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ... Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...apido Metal @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...apido Metal @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...apido Metal @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...apido Metal @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI ABS Rapido Metal.json | 2 +- .../Qidi/filament/QIDI ABS Rapido.json | 2 +- .../QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI ABS-GF.json | 2 +- ...QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...DI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...DI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...DI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI ABS-GF10.json | 2 +- ...QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...DI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...DI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...DI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI ABS-GF25.json | 2 +- .../QIDI ASA @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../QIDI ASA @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI ASA @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI ASA @Qidi Q1 Pro 0.8 nozzle.json | 2 +- .../QIDI ASA @Qidi X-Max 3 0.2 nozzle.json | 2 +- .../QIDI ASA @Qidi X-Plus 3 0.2 nozzle.json | 2 +- .../QIDI ASA @Qidi X-Plus 4 0.2 nozzle.json | 2 +- .../QIDI ASA @Qidi X-Plus 4 0.4 nozzle.json | 2 +- .../QIDI ASA @Qidi X-Plus 4 0.6 nozzle.json | 2 +- .../QIDI ASA @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../QIDI ASA @Qidi X-Smart 3 0.2 nozzle.json | 2 +- .../QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- .../QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json | 2 +- .../QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json | 2 +- .../QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json | 2 +- ...QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json | 2 +- ...QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json | 2 +- ...QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json | 2 +- ...QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- ...IDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json | 2 +- ...IDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json | 2 +- ...IDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI ASA-CF.json | 1 - .../profiles/Qidi/filament/QIDI ASA.json | 2 +- ...QIDI PA-Ultra @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...QIDI PA-Ultra @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...QIDI PA-Ultra @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...DI PA-Ultra @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...DI PA-Ultra @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...DI PA-Ultra @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI PA-Ultra.json | 2 +- .../QIDI PA12-CF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI PA12-CF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI PA12-CF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...IDI PA12-CF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...IDI PA12-CF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...IDI PA12-CF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI PA12-CF.json | 2 +- .../QIDI PAHT-CF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI PAHT-CF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI PAHT-CF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...IDI PAHT-CF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...IDI PAHT-CF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...IDI PAHT-CF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI PAHT-CF.json | 2 +- .../filament/QIDI PAHT-GF @0.6 nozzle.json | 2 +- .../filament/QIDI PAHT-GF @0.8 nozzle.json | 2 +- .../QIDI PAHT-GF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI PAHT-GF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI PAHT-GF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...IDI PAHT-GF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...IDI PAHT-GF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...IDI PAHT-GF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI PAHT-GF.json | 2 +- ...QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...DI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...DI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI PEBA 95A.json | 2 +- .../QIDI PET-CF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI PET-CF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI PET-CF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...QIDI PET-CF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...QIDI PET-CF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...QIDI PET-CF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI PET-CF.json | 2 +- .../filament/QIDI PET-GF @0.6 nozzle.json | 2 +- .../filament/QIDI PET-GF @0.8 nozzle.json | 2 +- .../QIDI PET-GF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI PET-GF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI PET-GF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...QIDI PET-GF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...QIDI PET-GF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...QIDI PET-GF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI PET-GF.json | 2 +- .../filament/QIDI PETG Basic @0.2 nozzle.json | 2 +- .../filament/QIDI PETG Basic @0.6 nozzle.json | 2 +- .../filament/QIDI PETG Basic @0.8 nozzle.json | 2 +- ...DI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...DI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...DI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...DI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ... PETG Basic @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ... PETG Basic @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ... PETG Basic @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ... PETG Basic @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI PETG Basic.json | 2 +- .../QIDI PETG Rapido @0.2 nozzle.json | 2 +- .../QIDI PETG Rapido @0.6 nozzle.json | 2 +- .../QIDI PETG Rapido @0.8 nozzle.json | 2 +- ...I PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...I PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...I PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...I PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI PETG Rapido.json | 2 +- .../filament/QIDI PETG Tough 0.2 nozzle.json | 2 +- .../filament/QIDI PETG Tough 0.6 nozzle.json | 2 +- .../filament/QIDI PETG Tough 0.8 nozzle.json | 2 +- ...DI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...DI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...DI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...DI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ... PETG Tough @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ... PETG Tough @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ... PETG Tough @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ... PETG Tough @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI PETG Tough.json | 2 +- .../QIDI PETG Translucent @0.2 nozzle.json | 2 +- .../QIDI PETG Translucent @0.6 nozzle.json | 2 +- .../QIDI PETG Translucent @0.8 nozzle.json | 2 +- ...G Translucent @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...G Translucent @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...G Translucent @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...G Translucent @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...Translucent @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...Translucent @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...Translucent @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...Translucent @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI PETG Translucent.json | 2 +- .../QIDI PETG-CF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI PETG-CF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI PETG-CF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...IDI PETG-CF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...IDI PETG-CF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...IDI PETG-CF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI PETG-CF.json | 2 +- .../QIDI PETG-GF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI PETG-GF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI PETG-GF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...IDI PETG-GF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...IDI PETG-GF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...IDI PETG-GF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI PETG-GF.json | 2 +- .../filament/QIDI PLA Basic @0.2 nozzle.json | 2 +- .../filament/QIDI PLA Basic @0.6 nozzle.json | 2 +- .../filament/QIDI PLA Basic @0.8 nozzle.json | 2 +- ...IDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...IDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...IDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...IDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...I PLA Basic @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...I PLA Basic @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...I PLA Basic @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...I PLA Basic @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI PLA Basic.json | 2 +- .../QIDI PLA Matte Basic @0.2 nozzle.json | 2 +- .../QIDI PLA Matte Basic @0.6 nozzle.json | 2 +- .../QIDI PLA Matte Basic @0.8 nozzle.json | 2 +- ...A Matte Basic @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...A Matte Basic @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...A Matte Basic @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...A Matte Basic @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...Matte Basic @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...Matte Basic @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...Matte Basic @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...Matte Basic @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI PLA Matte Basic.json | 2 +- .../filament/QIDI PLA Rapido 0.2 nozzle.json | 2 +- .../filament/QIDI PLA Rapido 0.8 nozzle.json | 2 +- .../filament/QIDI PLA Rapido @0.6 nozzle.json | 2 +- ...DI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...DI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...DI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...DI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ... PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ... PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ... PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ... PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../QIDI PLA Rapido Matte @0.2 nozzle.json | 2 +- .../QIDI PLA Rapido Matte @0.6 nozzle.json | 2 +- .../QIDI PLA Rapido Matte @0.8 nozzle.json | 2 +- ... Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ... Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ... Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ... Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...apido Matte @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...apido Matte @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...apido Matte @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...apido Matte @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI PLA Rapido Matte.json | 2 +- .../QIDI PLA Rapido Metal @0.2 nozzle.json | 2 +- .../QIDI PLA Rapido Metal @0.6 nozzle.json | 2 +- .../QIDI PLA Rapido Metal @0.8 nozzle.json | 2 +- ... Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ... Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ... Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ... Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...apido Metal @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...apido Metal @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...apido Metal @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...apido Metal @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI PLA Rapido Metal.json | 2 +- .../QIDI PLA Rapido Silk @0.6 nozzle.json | 2 +- ...A Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...A Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json | 2 +- .../Qidi/filament/QIDI PLA Rapido Silk.json | 2 +- .../Qidi/filament/QIDI PLA Rapido.json | 2 +- .../filament/QIDI PLA-CF @0.6 nozzle.json | 2 +- .../filament/QIDI PLA-CF @0.8 nozzle.json | 2 +- .../QIDI PLA-CF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI PLA-CF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI PLA-CF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...QIDI PLA-CF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...QIDI PLA-CF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...QIDI PLA-CF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../filament/QIDI PPS-CF @0.6 nozzle.json | 2 +- .../filament/QIDI PPS-CF @0.8 nozzle.json | 2 +- .../QIDI PPS-CF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI PPS-CF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI PPS-CF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...QIDI PPS-CF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...QIDI PPS-CF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...QIDI PPS-CF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI PPS-CF.json | 2 +- .../QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI PPS-GF.json | 2 +- ...rt For PAHT @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...rt For PAHT @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...rt For PAHT @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI Support For PAHT.json | 2 +- ... For PET-PA @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ... For PET-PA @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ... For PET-PA @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../filament/QIDI Support For PET-PA.json | 2 +- ...QIDI TPU-Aero @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...QIDI TPU-Aero @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...DI TPU-Aero @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...DI TPU-Aero @Qidi X-Plus 4 0.6 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI TPU-Aero.json | 2 +- .../QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../profiles/Qidi/filament/QIDI TPU-GF.json | 2 +- ... UltraPA-CF25 @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ... UltraPA-CF25 @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ... UltraPA-CF25 @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...ltraPA-CF25 @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...ltraPA-CF25 @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...ltraPA-CF25 @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI UltraPA-CF25.json | 2 +- .../QIDI WOOD Rapido @0.6 nozzle.json | 2 +- .../QIDI WOOD Rapido @0.8 nozzle.json | 2 +- ...I WOOD Rapido @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...I WOOD Rapido @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...I WOOD Rapido @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...WOOD Rapido @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...WOOD Rapido @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...WOOD Rapido @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/QIDI WOOD Rapido.json | 2 +- ...Qidi ASA-Aero @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...di ASA-Aero @Qidi X-Plus 4 0.4 nozzle.json | 2 +- .../profiles/Qidi/filament/Qidi ASA-Aero.json | 2 +- ...i Generic ABS @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...i Generic ABS @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...i Generic ABS @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...i Generic ABS @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ... Generic ABS @Qidi X-Max 3 0.2 nozzle.json | 2 +- ...Generic ABS @Qidi X-Plus 3 0.2 nozzle.json | 2 +- ...Generic ABS @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...Generic ABS @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...Generic ABS @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...Generic ABS @Qidi X-Plus 4 0.8 nozzle.json | 2 +- ...eneric ABS @Qidi X-Smart 3 0.2 nozzle.json | 2 +- .../Qidi/filament/Qidi Generic ABS.json | 2 +- ...i Generic ASA @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...i Generic ASA @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...i Generic ASA @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...i Generic ASA @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ... Generic ASA @Qidi X-Max 3 0.2 nozzle.json | 2 +- ...Generic ASA @Qidi X-Plus 3 0.2 nozzle.json | 2 +- ...Generic ASA @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...Generic ASA @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...Generic ASA @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...Generic ASA @Qidi X-Plus 4 0.8 nozzle.json | 2 +- ...eneric ASA @Qidi X-Smart 3 0.2 nozzle.json | 2 +- .../Qidi/filament/Qidi Generic ASA.json | 2 +- .../Qidi/filament/Qidi Generic PA-CF.json | 2 +- .../Qidi/filament/Qidi Generic PA.json | 2 +- .../filament/Qidi Generic PC @0.2 nozzle.json | 2 +- .../filament/Qidi Generic PC @0.8 nozzle.json | 2 +- ...di Generic PC @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...di Generic PC @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...di Generic PC @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...di Generic PC @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ... Generic PC @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ... Generic PC @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ... Generic PC @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ... Generic PC @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/Qidi Generic PC.json | 2 +- ... Generic PETG @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ... Generic PETG @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ... Generic PETG @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ... Generic PETG @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...Generic PETG @Qidi X-Max 3 0.2 nozzle.json | 2 +- ...eneric PETG @Qidi X-Plus 3 0.2 nozzle.json | 2 +- ...eneric PETG @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...eneric PETG @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...eneric PETG @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...eneric PETG @Qidi X-Plus 4 0.8 nozzle.json | 2 +- ...neric PETG @Qidi X-Smart 3 0.2 nozzle.json | 2 +- .../Qidi/filament/Qidi Generic PETG-CF.json | 2 +- .../Qidi/filament/Qidi Generic PETG.json | 2 +- ...i Generic PLA @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ...i Generic PLA @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...i Generic PLA @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...i Generic PLA @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ... Generic PLA @Qidi X-Max 3 0.2 nozzle.json | 2 +- ... Generic PLA @Qidi X-Max 3 0.6 nozzle.json | 2 +- ... Generic PLA @Qidi X-Max 3 0.8 nozzle.json | 2 +- ...Generic PLA @Qidi X-Plus 3 0.2 nozzle.json | 2 +- ...Generic PLA @Qidi X-Plus 3 0.6 nozzle.json | 2 +- ...Generic PLA @Qidi X-Plus 3 0.8 nozzle.json | 2 +- ...Generic PLA @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...Generic PLA @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...Generic PLA @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...Generic PLA @Qidi X-Plus 4 0.8 nozzle.json | 2 +- ...eneric PLA @Qidi X-Smart 3 0.2 nozzle.json | 2 +- ...eneric PLA @Qidi X-Smart 3 0.6 nozzle.json | 2 +- ...eneric PLA @Qidi X-Smart 3 0.8 nozzle.json | 2 +- ... High Speed @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ... High Speed @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ... High Speed @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ... High Speed @Qidi X-Plus 4 0.8 nozzle.json | 2 +- ...eric PLA Silk @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...ic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json | 2 +- .../Qidi/filament/Qidi Generic PLA Silk.json | 2 +- ... Generic PLA+ @Qidi Q1 Pro 0.2 nozzle.json | 2 +- ... Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ... Generic PLA+ @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ... Generic PLA+ @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...Generic PLA+ @Qidi X-Max 3 0.2 nozzle.json | 2 +- ...Generic PLA+ @Qidi X-Max 3 0.6 nozzle.json | 2 +- ...Generic PLA+ @Qidi X-Max 3 0.8 nozzle.json | 2 +- ...eneric PLA+ @Qidi X-Plus 3 0.2 nozzle.json | 2 +- ...eneric PLA+ @Qidi X-Plus 3 0.6 nozzle.json | 2 +- ...eneric PLA+ @Qidi X-Plus 3 0.8 nozzle.json | 2 +- ...eneric PLA+ @Qidi X-Plus 4 0.2 nozzle.json | 2 +- ...eneric PLA+ @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...eneric PLA+ @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...eneric PLA+ @Qidi X-Plus 4 0.8 nozzle.json | 2 +- ...neric PLA+ @Qidi X-Smart 3 0.2 nozzle.json | 2 +- ...neric PLA+ @Qidi X-Smart 3 0.6 nozzle.json | 2 +- ...neric PLA+ @Qidi X-Smart 3 0.8 nozzle.json | 2 +- .../Qidi/filament/Qidi Generic PLA+.json | 2 +- .../Qidi/filament/Qidi Generic PLA-CF.json | 2 +- .../Qidi/filament/Qidi Generic PLA.json | 2 +- .../Qidi/filament/Qidi Generic PVA.json | 2 +- ...neric TPU 95A @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...ric TPU 95A @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/Qidi Generic TPU 95A.json | 2 +- ...i Generic TPU @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...Generic TPU @Qidi X-Plus 4 0.4 nozzle.json | 2 +- .../Qidi/filament/Qidi Generic TPU.json | 2 +- ...idi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...idi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...idi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ...i PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ...i PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json | 2 +- ...i PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/Qidi PC-ABS-FR.json | 2 +- .../profiles/Qidi/filament/Qidi PLA-CF.json | 2 +- ...di TPU 95A-HF @Qidi Q1 Pro 0.4 nozzle.json | 2 +- ...di TPU 95A-HF @Qidi Q1 Pro 0.8 nozzle.json | 2 +- ... TPU 95A-HF @Qidi X-Plus 4 0.4 nozzle.json | 2 +- ... TPU 95A-HF @Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../Qidi/filament/Qidi TPU 95A-HF.json | 2 +- .../Qidi/filament/Tinmorry PETG-ECO.json | 2 +- .../Bambu ABS @Qidi X-Max 4 0.2 nozzle.json | 2 +- .../Bambu ABS @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../Bambu ABS @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../Bambu ABS @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../Qidi/filament/X4/Bambu ABS @X-Max 4.json | 1 - .../Bambu PETG @Qidi X-Max 4 0.2 nozzle.json | 2 +- .../Bambu PETG @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../Bambu PETG @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../Bambu PETG @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../Qidi/filament/X4/Bambu PETG @X-Max 4.json | 1 - .../Bambu PLA @Qidi X-Max 4 0.2 nozzle.json | 2 +- .../Bambu PLA @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../Bambu PLA @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../Bambu PLA @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../Qidi/filament/X4/Bambu PLA @X-Max 4.json | 1 - .../Generic ABS @Qidi X-Max 4 0.2 nozzle.json | 2 +- .../Generic ABS @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../Generic ABS @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../Generic ABS @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/Generic ABS @X-Max 4.json | 1 - .../Generic PC @Qidi X-Max 4 0.2 nozzle.json | 2 +- .../Generic PC @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../Generic PC @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../Generic PC @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../Qidi/filament/X4/Generic PC @X-Max 4.json | 1 - ...Generic PETG @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...Generic PETG @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...Generic PETG @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...Generic PETG @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/Generic PETG @X-Max 4.json | 1 - .../Generic PLA @Qidi X-Max 4 0.2 nozzle.json | 2 +- .../Generic PLA @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../Generic PLA @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../Generic PLA @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/Generic PLA @X-Max 4.json | 1 - ...ric PLA Silk @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...ric PLA Silk @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../X4/Generic PLA Silk @X-Max 4.json | 1 - ...Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/Generic PLA+ @X-Max 4.json | 1 - ...eric TPU 95A @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...eric TPU 95A @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...eric TPU 95A @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/Generic TPU 95A @X-Max 4.json | 1 - ...HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/HATCHBOX ABS @X-Max 4.json | 1 - ...ATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...ATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...ATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...ATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/HATCHBOX PETG @X-Max 4.json | 1 - ...HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/HATCHBOX PLA @X-Max 4.json | 1 - ...Overture ABS @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...Overture ABS @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...Overture ABS @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...Overture ABS @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/Overture ABS @X-Max 4.json | 1 - ...Overture PLA @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...Overture PLA @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...Overture PLA @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...Overture PLA @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/Overture PLA @X-Max 4.json | 1 - ...PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/PolyLite ABS @X-Max 4.json | 1 - ...PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/PolyLite PLA @X-Max 4.json | 1 - ...ABS Odorless @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...ABS Odorless @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...ABS Odorless @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...ABS Odorless @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../X4/QIDI ABS Odorless @X-Max 4.json | 1 - ...I ABS Rapido @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...I ABS Rapido @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...I ABS Rapido @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...I ABS Rapido @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI ABS Rapido @X-Max 4.json | 1 - ...Rapido Metal @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...Rapido Metal @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...Rapido Metal @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...Rapido Metal @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../X4/QIDI ABS Rapido Metal @X-Max 4.json | 1 - .../QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI ABS-GF @X-Max 4.json | 1 - .../X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json | 2 +- .../X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../Qidi/filament/X4/QIDI ASA @X-Max 4.json | 1 - ...IDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../filament/X4/QIDI ASA-Aero @X-Max 4.json | 1 - .../QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI ASA-CF @X-Max 4.json | 1 - ...QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PA12-CF @X-Max 4.json | 1 - ...QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PAHT-CF @X-Max 4.json | 1 - ...QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PAHT-GF @X-Max 4.json | 1 - ...DI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...DI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...DI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PC-ABS-FR @X-Max 4.json | 1 - ...IDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...IDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../filament/X4/QIDI PEBA 95A @X-Max 4.json | 1 - .../QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PET-CF @X-Max 4.json | 1 - .../QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PET-GF @X-Max 4.json | 1 - ...I PETG Basic @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...I PETG Basic @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...I PETG Basic @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...I PETG Basic @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PETG Basic @X-Max 4.json | 1 - ... PETG Rapido @Qidi X-Max 4 0.2 nozzle.json | 2 +- ... PETG Rapido @Qidi X-Max 4 0.4 nozzle.json | 2 +- ... PETG Rapido @Qidi X-Max 4 0.6 nozzle.json | 2 +- ... PETG Rapido @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../X4/QIDI PETG Rapido @X-Max 4.json | 1 - ...I PETG Tough @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...I PETG Tough @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...I PETG Tough @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...I PETG Tough @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PETG Tough @X-Max 4.json | 1 - ... Translucent @Qidi X-Max 4 0.2 nozzle.json | 2 +- ... Translucent @Qidi X-Max 4 0.4 nozzle.json | 2 +- ... Translucent @Qidi X-Max 4 0.6 nozzle.json | 2 +- ... Translucent @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../X4/QIDI PETG Translucent @X-Max 4.json | 1 - ...QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PETG-CF @X-Max 4.json | 1 - ...QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PETG-GF @X-Max 4.json | 1 - ...DI PLA Basic @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...DI PLA Basic @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...DI PLA Basic @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...DI PLA Basic @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PLA Basic @X-Max 4.json | 1 - ... Matte Basic @Qidi X-Max 4 0.2 nozzle.json | 2 +- ... Matte Basic @Qidi X-Max 4 0.4 nozzle.json | 2 +- ... Matte Basic @Qidi X-Max 4 0.6 nozzle.json | 2 +- ... Matte Basic @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../X4/QIDI PLA Matte Basic @X-Max 4.json | 1 - ...I PLA Rapido @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...I PLA Rapido @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...I PLA Rapido @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...I PLA Rapido @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PLA Rapido @X-Max 4.json | 1 - ...Rapido Matte @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...Rapido Matte @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...Rapido Matte @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...Rapido Matte @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../X4/QIDI PLA Rapido Matte @X-Max 4.json | 1 - ...Rapido Metal @Qidi X-Max 4 0.2 nozzle.json | 2 +- ...Rapido Metal @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...Rapido Metal @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...Rapido Metal @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../X4/QIDI PLA Rapido Metal @X-Max 4.json | 1 - ... Rapido Silk @Qidi X-Max 4 0.4 nozzle.json | 2 +- ... Rapido Silk @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../X4/QIDI PLA Rapido Silk @X-Max 4.json | 1 - .../QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PLA-CF @X-Max 4.json | 1 - .../QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PPS-CF @X-Max 4.json | 1 - .../QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI PPS-GF @X-Max 4.json | 1 - ...ort For PAHT @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...ort For PAHT @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...ort For PAHT @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../X4/QIDI Support For PAHT @X-Max 4.json | 1 - ...t For PET-PA @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...t For PET-PA @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...t For PET-PA @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../X4/QIDI Support For PET-PA @X-Max 4.json | 1 - ...I TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...I TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...I TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI TPU 95A-HF @X-Max 4.json | 1 - ...IDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...IDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../filament/X4/QIDI TPU-Aero @X-Max 4.json | 1 - .../QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json | 2 +- .../QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json | 2 +- .../QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI TPU-GF @X-Max 4.json | 1 - ...QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../filament/X4/QIDI UltraPA @X-Max 4.json | 1 - ...UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json | 2 +- ...UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json | 2 +- ...UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../X4/QIDI UltraPA-CF25 @X-Max 4.json | 1 - ... WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json | 2 +- ... WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json | 2 +- ... WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json | 2 +- .../X4/QIDI WOOD Rapido @X-Max 4.json | 1 - .../Qidi/machine/Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json | 2 +- .../Qidi/machine/Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../Qidi/machine/Qidi Q1 Pro 0.8 nozzle.json | 2 +- .../Qidi/machine/Qidi Q2 0.2 nozzle.json | 2 +- .../Qidi/machine/Qidi Q2 0.4 nozzle.json | 2 +- .../Qidi/machine/Qidi Q2 0.6 nozzle.json | 2 +- .../Qidi/machine/Qidi Q2 0.8 nozzle.json | 2 +- .../Qidi/machine/Qidi Q2C 0.2 nozzle.json | 2 +- .../Qidi/machine/Qidi Q2C 0.4 nozzle.json | 2 +- .../Qidi/machine/Qidi Q2C 0.6 nozzle.json | 2 +- .../Qidi/machine/Qidi Q2C 0.8 nozzle.json | 2 +- .../machine/Qidi X-CF Pro 0.4 nozzle.json | 2 +- .../Qidi/machine/Qidi X-Max 0.4 nozzle.json | 2 +- .../Qidi/machine/Qidi X-Max 3 0.2 nozzle.json | 2 +- .../Qidi/machine/Qidi X-Max 3 0.4 nozzle.json | 2 +- .../Qidi/machine/Qidi X-Max 3 0.6 nozzle.json | 2 +- .../Qidi/machine/Qidi X-Max 3 0.8 nozzle.json | 2 +- .../Qidi/machine/Qidi X-Max 4 0.2 nozzle.json | 2 +- .../Qidi/machine/Qidi X-Max 4 0.4 nozzle.json | 2 +- .../Qidi/machine/Qidi X-Max 4 0.6 nozzle.json | 2 +- .../Qidi/machine/Qidi X-Max 4 0.8 nozzle.json | 2 +- .../Qidi/machine/Qidi X-Plus 0.4 nozzle.json | 2 +- .../machine/Qidi X-Plus 3 0.2 nozzle.json | 2 +- .../machine/Qidi X-Plus 3 0.4 nozzle.json | 2 +- .../machine/Qidi X-Plus 3 0.6 nozzle.json | 2 +- .../machine/Qidi X-Plus 3 0.8 nozzle.json | 2 +- .../machine/Qidi X-Plus 4 0.2 nozzle.json | 2 +- .../machine/Qidi X-Plus 4 0.4 nozzle.json | 2 +- .../machine/Qidi X-Plus 4 0.6 nozzle.json | 2 +- .../machine/Qidi X-Plus 4 0.8 nozzle.json | 2 +- .../machine/Qidi X-Smart 3 0.2 nozzle.json | 2 +- .../machine/Qidi X-Smart 3 0.4 nozzle.json | 2 +- .../machine/Qidi X-Smart 3 0.6 nozzle.json | 2 +- .../machine/Qidi X-Smart 3 0.8 nozzle.json | 2 +- ...06mm Standard @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../0.06mm Standard @Qidi Q2 0.2 nozzle.json | 2 +- .../0.06mm Standard @Qidi Q2C 0.2 nozzle.json | 2 +- ....06mm Standard @Qidi XMax3 0.2 nozzle.json | 2 +- ...06mm Standard @Qidi XPlus3 0.2 nozzle.json | 2 +- ...06mm Standard @Qidi XPlus4 0.2 nozzle.json | 2 +- ...6mm Standard @Qidi XSmart3 0.2 nozzle.json | 2 +- ...0.08mm Extra Fine @X-Max 4 0.2 nozzle.json | 2 +- .../process/0.08mm Extra Fine @X-Max 4.json | 2 +- ...08mm Standard @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../0.08mm Standard @Qidi Q2 0.2 nozzle.json | 2 +- .../0.08mm Standard @Qidi Q2C 0.2 nozzle.json | 2 +- ....08mm Standard @Qidi XMax3 0.2 nozzle.json | 2 +- ...08mm Standard @Qidi XPlus3 0.2 nozzle.json | 2 +- ...08mm Standard @Qidi XPlus4 0.2 nozzle.json | 2 +- ...8mm Standard @Qidi XSmart3 0.2 nozzle.json | 2 +- ...10mm Standard @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../0.10mm Standard @Qidi Q2 0.2 nozzle.json | 2 +- .../0.10mm Standard @Qidi Q2C 0.2 nozzle.json | 2 +- ....10mm Standard @Qidi XMax3 0.2 nozzle.json | 2 +- ...10mm Standard @Qidi XPlus3 0.2 nozzle.json | 2 +- ...10mm Standard @Qidi XPlus4 0.2 nozzle.json | 2 +- ...0mm Standard @Qidi XSmart3 0.2 nozzle.json | 2 +- .../0.10mm Standard @X-Max 4 0.2 nozzle.json | 2 +- ... Balanced Quality @X-Max 4 0.2 nozzle.json | 2 +- .../process/0.12mm Fine @Qidi Q1 Pro.json | 2 +- .../Qidi/process/0.12mm Fine @Qidi Q2.json | 2 +- .../Qidi/process/0.12mm Fine @Qidi Q2C.json | 2 +- .../Qidi/process/0.12mm Fine @Qidi X3.json | 1 - .../process/0.12mm Fine @Qidi XCFPro.json | 2 +- .../Qidi/process/0.12mm Fine @Qidi XMax.json | 2 +- .../Qidi/process/0.12mm Fine @Qidi XMax3.json | 2 +- .../Qidi/process/0.12mm Fine @Qidi XPlus.json | 2 +- .../process/0.12mm Fine @Qidi XPlus3.json | 2 +- .../process/0.12mm Fine @Qidi XPlus4.json | 2 +- .../process/0.12mm Fine @Qidi XSmart3.json | 2 +- .../Qidi/process/0.12mm Fine @X-Max 4.json | 2 +- ...12mm Standard @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../0.12mm Standard @Qidi Q2 0.2 nozzle.json | 2 +- .../0.12mm Standard @Qidi Q2C 0.2 nozzle.json | 2 +- ....12mm Standard @Qidi XMax3 0.2 nozzle.json | 2 +- ...12mm Standard @Qidi XPlus3 0.2 nozzle.json | 2 +- ...12mm Standard @Qidi XPlus4 0.2 nozzle.json | 2 +- ...2mm Standard @Qidi XSmart3 0.2 nozzle.json | 2 +- ...14mm Standard @Qidi Q1 Pro 0.2 nozzle.json | 2 +- .../0.14mm Standard @Qidi Q2 0.2 nozzle.json | 2 +- .../0.14mm Standard @Qidi Q2C 0.2 nozzle.json | 2 +- ....14mm Standard @Qidi XMax3 0.2 nozzle.json | 2 +- ...14mm Standard @Qidi XPlus3 0.2 nozzle.json | 2 +- ...14mm Standard @Qidi XPlus4 0.2 nozzle.json | 2 +- ...4mm Standard @Qidi XSmart3 0.2 nozzle.json | 2 +- .../0.16mm Balanced Quality @X-Max 4.json | 2 +- .../process/0.16mm Optimal @Qidi Q1 Pro.json | 2 +- .../Qidi/process/0.16mm Optimal @Qidi Q2.json | 2 +- .../process/0.16mm Optimal @Qidi Q2C.json | 2 +- .../Qidi/process/0.16mm Optimal @Qidi X3.json | 1 - .../process/0.16mm Optimal @Qidi XCFPro.json | 2 +- .../process/0.16mm Optimal @Qidi XMax.json | 2 +- .../process/0.16mm Optimal @Qidi XMax3.json | 2 +- .../process/0.16mm Optimal @Qidi XPlus.json | 2 +- .../process/0.16mm Optimal @Qidi XPlus3.json | 2 +- .../process/0.16mm Optimal @Qidi XPlus4.json | 2 +- .../process/0.16mm Optimal @Qidi XSmart3.json | 2 +- .../process/0.16mm Standard @X-Max 4.json | 2 +- ... Balanced Quality @X-Max 4 0.6 nozzle.json | 2 +- ...18mm Standard @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../0.18mm Standard @Qidi Q2 0.6 nozzle.json | 2 +- .../0.18mm Standard @Qidi Q2C 0.6 nozzle.json | 2 +- ....18mm Standard @Qidi XMax3 0.6 nozzle.json | 2 +- ...18mm Standard @Qidi XPlus3 0.6 nozzle.json | 2 +- ...18mm Standard @Qidi XPlus4 0.6 nozzle.json | 2 +- ...8mm Standard @Qidi XSmart3 0.6 nozzle.json | 2 +- .../0.20mm Balanced Strength @X-Max 4.json | 2 +- .../process/0.20mm Standard @Qidi Q1 Pro.json | 2 +- .../process/0.20mm Standard @Qidi Q2.json | 2 +- .../process/0.20mm Standard @Qidi Q2C.json | 2 +- .../process/0.20mm Standard @Qidi X3.json | 1 - .../process/0.20mm Standard @Qidi XCFPro.json | 2 +- .../process/0.20mm Standard @Qidi XMax.json | 2 +- .../process/0.20mm Standard @Qidi XMax3.json | 2 +- .../process/0.20mm Standard @Qidi XPlus.json | 2 +- .../process/0.20mm Standard @Qidi XPlus3.json | 2 +- .../process/0.20mm Standard @Qidi XPlus4.json | 2 +- .../0.20mm Standard @Qidi XSmart3.json | 2 +- .../process/0.20mm Standard @X-Max 4.json | 2 +- ... Balanced Quality @X-Max 4 0.8 nozzle.json | 2 +- ...Balanced Strength @X-Max 4 0.6 nozzle.json | 2 +- .../process/0.24mm Draft @Qidi Q1 Pro.json | 2 +- .../Qidi/process/0.24mm Draft @Qidi Q2.json | 2 +- .../Qidi/process/0.24mm Draft @Qidi Q2C.json | 2 +- .../Qidi/process/0.24mm Draft @Qidi X3.json | 1 - .../process/0.24mm Draft @Qidi XMax3.json | 2 +- .../process/0.24mm Draft @Qidi XPlus3.json | 2 +- .../process/0.24mm Draft @Qidi XPlus4.json | 2 +- .../process/0.24mm Draft @Qidi XSmart3.json | 2 +- ...24mm Standard @Qidi Q1 Pro 0.6 nozzle.json | 2 +- ...24mm Standard @Qidi Q1 Pro 0.8 nozzle.json | 2 +- .../0.24mm Standard @Qidi Q2 0.6 nozzle.json | 2 +- .../0.24mm Standard @Qidi Q2 0.8 nozzle.json | 2 +- .../0.24mm Standard @Qidi Q2C 0.6 nozzle.json | 2 +- .../0.24mm Standard @Qidi Q2C 0.8 nozzle.json | 2 +- ....24mm Standard @Qidi XMax3 0.6 nozzle.json | 2 +- ....24mm Standard @Qidi XMax3 0.8 nozzle.json | 2 +- ...24mm Standard @Qidi XPlus3 0.6 nozzle.json | 2 +- ...24mm Standard @Qidi XPlus3 0.8 nozzle.json | 2 +- ...24mm Standard @Qidi XPlus4 0.6 nozzle.json | 2 +- ...24mm Standard @Qidi XPlus4 0.8 nozzle.json | 2 +- ...4mm Standard @Qidi XSmart3 0.6 nozzle.json | 2 +- ...4mm Standard @Qidi XSmart3 0.8 nozzle.json | 2 +- .../process/0.24mm Standard @X-Max 4.json | 2 +- .../process/0.25mm Draft @Qidi Q1 Pro.json | 2 +- .../Qidi/process/0.25mm Draft @Qidi Q2.json | 2 +- .../Qidi/process/0.25mm Draft @Qidi Q2C.json | 2 +- .../process/0.25mm Draft @Qidi XCFPro.json | 2 +- .../Qidi/process/0.25mm Draft @Qidi XMax.json | 2 +- .../process/0.25mm Draft @Qidi XMax3.json | 2 +- .../process/0.25mm Draft @Qidi XPlus.json | 2 +- .../process/0.25mm Draft @Qidi XPlus3.json | 2 +- .../process/0.25mm Draft @Qidi XPlus4.json | 2 +- .../process/0.25mm Draft @Qidi XSmart3.json | 2 +- .../0.28mm Extra Draft @Qidi Q1 Pro.json | 2 +- .../process/0.28mm Extra Draft @Qidi Q2.json | 2 +- .../process/0.28mm Extra Draft @Qidi Q2C.json | 2 +- .../process/0.28mm Extra Draft @Qidi X3.json | 1 - .../0.28mm Extra Draft @Qidi XMax3.json | 2 +- .../0.28mm Extra Draft @Qidi XPlus3.json | 2 +- .../0.28mm Extra Draft @Qidi XPlus4.json | 2 +- .../0.28mm Extra Draft @Qidi XSmart3.json | 2 +- .../0.30mm Extra Draft @Qidi Q1 Pro.json | 2 +- .../process/0.30mm Extra Draft @Qidi Q2.json | 2 +- .../process/0.30mm Extra Draft @Qidi Q2C.json | 2 +- .../0.30mm Extra Draft @Qidi XCFPro.json | 2 +- .../0.30mm Extra Draft @Qidi XMax.json | 2 +- .../0.30mm Extra Draft @Qidi XMax3.json | 2 +- .../0.30mm Extra Draft @Qidi XPlus.json | 2 +- .../0.30mm Extra Draft @Qidi XPlus3.json | 2 +- .../0.30mm Extra Draft @Qidi XPlus4.json | 2 +- .../0.30mm Extra Draft @Qidi XSmart3.json | 2 +- ...30mm Standard @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../0.30mm Standard @Qidi Q2 0.6 nozzle.json | 2 +- .../0.30mm Standard @Qidi Q2C 0.6 nozzle.json | 2 +- ....30mm Standard @Qidi XMax3 0.6 nozzle.json | 2 +- ...30mm Standard @Qidi XPlus3 0.6 nozzle.json | 2 +- ...30mm Standard @Qidi XPlus4 0.6 nozzle.json | 2 +- ...0mm Standard @Qidi XSmart3 0.6 nozzle.json | 2 +- .../0.30mm Standard @X-Max 4 0.6 nozzle.json | 2 +- ...Balanced Strength @X-Max 4 0.8 nozzle.json | 2 +- ...32mm Standard @Qidi Q1 Pro 0.8 nozzle.json | 2 +- .../0.32mm Standard @Qidi Q2 0.8 nozzle.json | 2 +- .../0.32mm Standard @Qidi Q2C 0.8 nozzle.json | 2 +- ....32mm Standard @Qidi XMax3 0.8 nozzle.json | 2 +- ...32mm Standard @Qidi XPlus3 0.8 nozzle.json | 2 +- ...32mm Standard @Qidi XPlus4 0.8 nozzle.json | 2 +- ...2mm Standard @Qidi XSmart3 0.8 nozzle.json | 2 +- ...36mm Standard @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../0.36mm Standard @Qidi Q2 0.6 nozzle.json | 2 +- .../0.36mm Standard @Qidi Q2C 0.6 nozzle.json | 2 +- ....36mm Standard @Qidi XMax3 0.6 nozzle.json | 2 +- ...36mm Standard @Qidi XPlus3 0.6 nozzle.json | 2 +- ...36mm Standard @Qidi XPlus4 0.6 nozzle.json | 2 +- ...6mm Standard @Qidi XSmart3 0.6 nozzle.json | 2 +- ...40mm Standard @Qidi Q1 Pro 0.8 nozzle.json | 2 +- .../0.40mm Standard @Qidi Q2 0.8 nozzle.json | 2 +- .../0.40mm Standard @Qidi Q2C 0.8 nozzle.json | 2 +- ....40mm Standard @Qidi XMax3 0.8 nozzle.json | 2 +- ...40mm Standard @Qidi XPlus3 0.8 nozzle.json | 2 +- ...40mm Standard @Qidi XPlus4 0.8 nozzle.json | 2 +- ...0mm Standard @Qidi XSmart3 0.8 nozzle.json | 2 +- .../0.40mm Standard @X-Max 4 0.8 nozzle.json | 2 +- ...42mm Standard @Qidi Q1 Pro 0.6 nozzle.json | 2 +- .../0.42mm Standard @Qidi Q2 0.6 nozzle.json | 2 +- .../0.42mm Standard @Qidi Q2C 0.6 nozzle.json | 2 +- ....42mm Standard @Qidi XMax3 0.6 nozzle.json | 2 +- ...42mm Standard @Qidi XPlus3 0.6 nozzle.json | 2 +- ...42mm Standard @Qidi XPlus4 0.6 nozzle.json | 2 +- ...2mm Standard @Qidi XSmart3 0.6 nozzle.json | 2 +- ...48mm Standard @Qidi Q1 Pro 0.8 nozzle.json | 2 +- .../0.48mm Standard @Qidi Q2 0.8 nozzle.json | 2 +- .../0.48mm Standard @Qidi Q2C 0.8 nozzle.json | 2 +- ....48mm Standard @Qidi XMax3 0.8 nozzle.json | 2 +- ...48mm Standard @Qidi XPlus3 0.8 nozzle.json | 2 +- ...48mm Standard @Qidi XPlus4 0.8 nozzle.json | 2 +- ...8mm Standard @Qidi XSmart3 0.8 nozzle.json | 2 +- ...56mm Standard @Qidi Q1 Pro 0.8 nozzle.json | 2 +- .../0.56mm Standard @Qidi Q2 0.8 nozzle.json | 2 +- .../0.56mm Standard @Qidi Q2C 0.8 nozzle.json | 2 +- ....56mm Standard @Qidi XMax3 0.8 nozzle.json | 2 +- ...56mm Standard @Qidi XPlus3 0.8 nozzle.json | 2 +- ...56mm Standard @Qidi XPlus4 0.8 nozzle.json | 2 +- ...6mm Standard @Qidi XSmart3 0.8 nozzle.json | 2 +- resources/profiles/RH3D.json | 2 +- .../filament/Generic ABS @E3NG v1.2S.json | 2 +- .../filament/Generic ASA @E3NG v1.2S.json | 2 +- .../filament/Generic PCCF @E3NG v1.2S.json | 2 +- .../filament/Generic PETG @E3NG v1.2S.json | 2 +- .../filament/Generic PLA @E3NG v1.2S.json | 2 +- .../filament/Generic TPU @E3NG v1.2S.json | 2 +- .../RH3D/machine/E3NG v1.2S - 0.2 nozzle.json | 1 + .../RH3D/machine/E3NG v1.2S - 0.3 nozzle.json | 1 + .../RH3D/machine/E3NG v1.2S - 0.4 nozzle.json | 1 + .../RH3D/machine/E3NG v1.2S - 0.5 nozzle.json | 1 + .../RH3D/machine/E3NG v1.2S - 0.6 nozzle.json | 1 + .../process/0.10mm Standard @E3NG v1.2S.json | 2 +- .../process/0.15mm Standard @E3NG v1.2S.json | 2 +- .../RH3D/process/0.20mm Fast @E3NG v1.2S.json | 2 +- .../RH3D/process/0.20mm Slow @E3NG v1.2S.json | 2 +- .../process/0.20mm Standard @E3NG v1.2S.json | 2 +- .../RH3D/process/0.25mm Fast @E3NG v1.2S.json | 2 +- .../process/0.25mm Standard @E3NG v1.2S.json | 2 +- resources/profiles/Raise3D.json | 2 +- .../Raise3D Pro3 0.4 nozzle (Dual).json | 2 +- .../Raise3D Pro3 0.4 nozzle (Left).json | 2 +- .../Raise3D Pro3 0.4 nozzle (Right).json | 2 +- .../Raise3D Pro3 Plus 0.4 nozzle (Dual).json | 2 +- .../Raise3D Pro3 Plus 0.4 nozzle (Left).json | 2 +- .../Raise3D Pro3 Plus 0.4 nozzle (Right).json | 2 +- .../process/0.10mm Fine @Raise3D Pro3.json | 2 +- .../0.10mm Fine @Raise3D Pro3Plus.json | 2 +- .../0.20mm Standard @Raise3D Pro3.json | 2 +- .../0.20mm Standard @Raise3D Pro3Plus.json | 2 +- .../process/0.25mm Draft @Raise3D Pro3.json | 2 +- .../0.25mm Draft @Raise3D Pro3Plus.json | 2 +- resources/profiles/Ratrig.json | 2 +- .../Ratrig/filament/RatRig BigNozzle ABS.json | 2 +- .../Ratrig/filament/RatRig BigNozzle ASA.json | 2 +- .../filament/RatRig BigNozzle PCTG.json | 2 +- .../filament/RatRig BigNozzle PETG.json | 2 +- .../Ratrig/filament/RatRig BigNozzle PLA.json | 2 +- .../Ratrig/filament/RatRig BigNozzle TPU.json | 2 +- .../Ratrig/filament/RatRig Generic ABS.json | 2 +- .../Ratrig/filament/RatRig Generic ASA.json | 2 +- .../Ratrig/filament/RatRig Generic PA-CF.json | 2 +- .../Ratrig/filament/RatRig Generic PA.json | 2 +- .../Ratrig/filament/RatRig Generic PC.json | 2 +- .../Ratrig/filament/RatRig Generic PCTG.json | 2 +- .../Ratrig/filament/RatRig Generic PETG.json | 2 +- .../filament/RatRig Generic PLA-CF.json | 2 +- .../Ratrig/filament/RatRig Generic PLA.json | 2 +- .../Ratrig/filament/RatRig Generic PVA.json | 2 +- .../Ratrig/filament/RatRig Generic TPU.json | 2 +- .../Ratrig/filament/RatRig PunkFil ABS.json | 2 +- .../filament/RatRig PunkFil PETG CF.json | 2 +- .../Ratrig/filament/RatRig PunkFil PETG.json | 2 +- .../machine/RatRig V-Cast 0.4 nozzle.json | 2 +- .../machine/RatRig V-Cast 0.6 nozzle.json | 2 +- .../RatRig V-Core 3 200 0.4 nozzle.json | 2 +- .../RatRig V-Core 3 300 0.4 nozzle.json | 2 +- .../RatRig V-Core 3 400 0.4 nozzle.json | 2 +- .../RatRig V-Core 3 500 0.4 nozzle.json | 2 +- .../RatRig V-Core 4 300 0.4 nozzle.json | 2 +- .../RatRig V-Core 4 300 0.5 nozzle.json | 2 +- .../RatRig V-Core 4 300 0.6 nozzle.json | 2 +- .../RatRig V-Core 4 300 0.8 nozzle.json | 2 +- .../RatRig V-Core 4 400 0.4 nozzle.json | 2 +- .../RatRig V-Core 4 400 0.5 nozzle.json | 2 +- .../RatRig V-Core 4 400 0.6 nozzle.json | 2 +- .../RatRig V-Core 4 400 0.8 nozzle.json | 2 +- .../RatRig V-Core 4 500 0.4 nozzle.json | 2 +- .../RatRig V-Core 4 500 0.5 nozzle.json | 2 +- .../RatRig V-Core 4 500 0.6 nozzle.json | 2 +- .../RatRig V-Core 4 500 0.8 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 300 0.4 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 300 0.5 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 300 0.6 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 300 0.8 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 400 0.4 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 400 0.5 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 400 0.6 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 400 0.8 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 500 0.4 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 500 0.5 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 500 0.6 nozzle.json | 2 +- ...RatRig V-Core 4 HYBRID 500 0.8 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 300 0.4 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 300 0.5 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 300 0.6 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 300 0.8 nozzle.json | 2 +- ...-Core 4 IDEX 300 COPY MODE 0.4 nozzle.json | 2 +- ...-Core 4 IDEX 300 COPY MODE 0.5 nozzle.json | 2 +- ...-Core 4 IDEX 300 COPY MODE 0.6 nozzle.json | 2 +- ...-Core 4 IDEX 300 COPY MODE 0.8 nozzle.json | 2 +- ...ore 4 IDEX 300 MIRROR MODE 0.4 nozzle.json | 2 +- ...ore 4 IDEX 300 MIRROR MODE 0.5 nozzle.json | 2 +- ...ore 4 IDEX 300 MIRROR MODE 0.6 nozzle.json | 2 +- ...ore 4 IDEX 300 MIRROR MODE 0.8 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 400 0.4 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 400 0.5 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 400 0.6 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 400 0.8 nozzle.json | 2 +- ...-Core 4 IDEX 400 COPY MODE 0.4 nozzle.json | 2 +- ...-Core 4 IDEX 400 COPY MODE 0.5 nozzle.json | 2 +- ...-Core 4 IDEX 400 COPY MODE 0.6 nozzle.json | 2 +- ...-Core 4 IDEX 400 COPY MODE 0.8 nozzle.json | 2 +- ...ore 4 IDEX 400 MIRROR MODE 0.4 nozzle.json | 2 +- ...ore 4 IDEX 400 MIRROR MODE 0.5 nozzle.json | 2 +- ...ore 4 IDEX 400 MIRROR MODE 0.6 nozzle.json | 2 +- ...ore 4 IDEX 400 MIRROR MODE 0.8 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 500 0.4 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 500 0.5 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 500 0.6 nozzle.json | 2 +- .../RatRig V-Core 4 IDEX 500 0.8 nozzle.json | 2 +- ...-Core 4 IDEX 500 COPY MODE 0.4 nozzle.json | 2 +- ...-Core 4 IDEX 500 COPY MODE 0.5 nozzle.json | 2 +- ...-Core 4 IDEX 500 COPY MODE 0.6 nozzle.json | 2 +- ...-Core 4 IDEX 500 COPY MODE 0.8 nozzle.json | 2 +- ...ore 4 IDEX 500 MIRROR MODE 0.4 nozzle.json | 2 +- ...ore 4 IDEX 500 MIRROR MODE 0.5 nozzle.json | 2 +- ...ore 4 IDEX 500 MIRROR MODE 0.6 nozzle.json | 2 +- ...ore 4 IDEX 500 MIRROR MODE 0.8 nozzle.json | 2 +- .../machine/RatRig V-Minion 0.4 nozzle.json | 2 +- .../process/0.08mm Extra Fine @RatRig.json | 2 +- .../Ratrig/process/0.12mm Fine @RatRig.json | 2 +- .../process/0.15mm Optimal @RatRig.json | 2 +- .../0.20mm Quality @RatRig V-Core 4 0.4.json | 2 +- .../0.20mm Quality @RatRig V-Core 4 0.5.json | 2 +- ...m Quality @RatRig V-Core 4 HYBRID 0.4.json | 2 +- ...m Quality @RatRig V-Core 4 HYBRID 0.5.json | 2 +- ...m Quality @RatRig V-Core 4 HYBRID 0.6.json | 2 +- ...0mm Quality @RatRig V-Core 4 IDEX 0.4.json | 2 +- ...0mm Quality @RatRig V-Core 4 IDEX 0.5.json | 2 +- ...0mm Quality @RatRig V-Core 4 IDEX 0.6.json | 2 +- .../process/0.20mm Standard @RatRig.json | 2 +- .../Ratrig/process/0.24mm Draft @RatRig.json | 2 +- ...mm Quality Speed @RatRig V-Core 4 0.4.json | 2 +- ...mm Quality Speed @RatRig V-Core 4 0.5.json | 2 +- ...mm Quality Speed @RatRig V-Core 4 0.6.json | 2 +- ...ity Speed @RatRig V-Core 4 HYBRID 0.4.json | 2 +- ...ity Speed @RatRig V-Core 4 HYBRID 0.5.json | 2 +- ...ity Speed @RatRig V-Core 4 HYBRID 0.6.json | 2 +- ...ality Speed @RatRig V-Core 4 IDEX 0.4.json | 2 +- ...ality Speed @RatRig V-Core 4 IDEX 0.5.json | 2 +- ...ality Speed @RatRig V-Core 4 IDEX 0.6.json | 2 +- .../0.25mm Speed @RatRig V-Core 4 0.4.json | 2 +- .../0.25mm Speed @RatRig V-Core 4 0.5.json | 2 +- .../0.25mm Speed @RatRig V-Core 4 0.6.json | 2 +- ...5mm Speed @RatRig V-Core 4 HYBRID 0.4.json | 2 +- ...5mm Speed @RatRig V-Core 4 HYBRID 0.5.json | 2 +- ...5mm Speed @RatRig V-Core 4 HYBRID 0.6.json | 2 +- ...5mm Speed @RatRig V-Core 4 HYBRID 0.8.json | 2 +- ....25mm Speed @RatRig V-Core 4 IDEX 0.4.json | 2 +- ....25mm Speed @RatRig V-Core 4 IDEX 0.5.json | 2 +- ....25mm Speed @RatRig V-Core 4 IDEX 0.6.json | 2 +- ....25mm Speed @RatRig V-Core 4 IDEX 0.8.json | 2 +- .../process/0.28mm Extra Draft @RatRig.json | 2 +- .../0.30mm Big @RatRig V-Core 4 0.6.json | 2 +- ....30mm Big @RatRig V-Core 4 HYBRID 0.6.json | 2 +- ....30mm Big @RatRig V-Core 4 HYBRID 0.8.json | 2 +- .../0.30mm Big @RatRig V-Core 4 IDEX 0.6.json | 2 +- .../0.30mm Big @RatRig V-Core 4 IDEX 0.8.json | 2 +- ...Extra Big @RatRig V-Core 4 HYBRID 0.8.json | 2 +- ...m Extra Big @RatRig V-Core 4 IDEX 0.8.json | 2 +- resources/profiles/RolohaunDesign.json | 2 +- ...Rolohaun Delta Flyer Refit 0.4 nozzle.json | 2 +- .../machine/Rook MK1 LDO 0.2 nozzle.json | 2 +- .../machine/Rook MK1 LDO 0.4 nozzle.json | 2 +- .../machine/Rook MK1 LDO 0.6 nozzle.json | 2 +- .../machine/Rook MK1 LDO 0.8 nozzle.json | 2 +- .../0.08mm Extra Fine @Rook MK1 LDO.json | 2 +- ...uper Fine @Rolohaun Delta Flyer Refit.json | 1 + ...10mm Fine @Rolohaun Delta Flyer Refit.json | 1 + .../process/0.12mm Fine @Rook MK1 LDO.json | 2 +- ...m Optimal @Rolohaun Delta Flyer Refit.json | 1 + .../process/0.16mm Optimal @Rook MK1 LDO.json | 2 +- ... Standard @Rolohaun Delta Flyer Refit.json | 1 + .../0.20mm Standard @Rook MK1 LDO.json | 2 +- ...4mm Draft @Rolohaun Delta Flyer Refit.json | 1 + .../process/0.24mm Draft @Rook MK1 LDO.json | 2 +- .../0.28mm Extra Draft @Rook MK1 LDO.json | 2 +- ...ugh Draft @Rolohaun Delta Flyer Refit.json | 1 + ...Vase Mode @Rolohaun Delta Flyer Refit.json | 1 + .../0.32mm Extra Draft @Rook MK1 LDO.json | 2 +- .../0.40mm Extra Draft @Rook MK1 LDO.json | 2 +- .../0.56mm Extra Draft @Rook MK1 LDO.json | 2 +- resources/profiles/SecKit.json | 2 +- .../SecKit/filament/SecKit Generic ABS.json | 2 +- .../SecKit/filament/SecKit Generic ASA.json | 2 +- .../SecKit/filament/SecKit Generic PA-CF.json | 2 +- .../SecKit/filament/SecKit Generic PA.json | 2 +- .../SecKit/filament/SecKit Generic PC.json | 2 +- .../SecKit/filament/SecKit Generic PETG.json | 2 +- .../filament/SecKit Generic PLA-CF.json | 2 +- .../SecKit/filament/SecKit Generic PLA.json | 2 +- .../SecKit/filament/SecKit Generic PVA.json | 2 +- .../SecKit/filament/SecKit Generic TPU.json | 2 +- .../SecKit/machine/SecKit Go3 0.4 nozzle.json | 2 +- .../machine/SecKit SK-Tank 0.4 nozzle.json | 2 +- .../process/0.08mm Extra Fine @SecKit.json | 2 +- .../SecKit/process/0.12mm Fine @SecKit.json | 2 +- .../process/0.15mm Optimal @SecKit.json | 2 +- .../process/0.20mm Standard @SecKit.json | 2 +- .../SecKit/process/0.24mm Draft @SecKit.json | 2 +- .../process/0.28mm Extra Draft @SecKit.json | 2 +- .../SecKit/process/0.30mm Fast @SecKit.json | 2 +- resources/profiles/SeeMeCNC.json | 2 +- .../SeeMeCNC/filament/SeeMeCNC_ABS.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_ABS_0_4mm.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_ABS_0_5mm.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_ABS_0_7mm.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_ABS_1_0mm.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_PA-CF.json | 1 + .../filament/SeeMeCNC_PA_CF_0_4mm.json | 1 + .../filament/SeeMeCNC_PA_CF_0_5mm.json | 1 + .../filament/SeeMeCNC_PA_CF_0_7mm.json | 1 + .../filament/SeeMeCNC_PA_CF_1_0mm.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_PETG-CF.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_PETG.json | 1 + .../filament/SeeMeCNC_PETG_0_4mm.json | 1 + .../filament/SeeMeCNC_PETG_0_5mm.json | 1 + .../filament/SeeMeCNC_PETG_0_7mm.json | 1 + .../filament/SeeMeCNC_PETG_1_0mm.json | 1 + .../filament/SeeMeCNC_PETG_CF_0_4mm.json | 1 + .../filament/SeeMeCNC_PETG_CF_0_5mm.json | 1 + .../filament/SeeMeCNC_PETG_CF_0_7mm.json | 1 + .../filament/SeeMeCNC_PETG_CF_1_0mm.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_PLA.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_PLA_0_4mm.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_PLA_0_5mm.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_PLA_0_7mm.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_PLA_1_0mm.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_TPU.json | 1 + .../SeeMeCNC/filament/SeeMeCNC_TPU_0_7mm.json | 1 + .../machine/SeeMeCNC_Artemis_0_4mm.json | 1 + .../machine/SeeMeCNC_Artemis_0_5mm.json | 1 + .../machine/SeeMeCNC_Artemis_0_7mm.json | 1 + .../machine/SeeMeCNC_Artemis_1_0mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0505_0_4mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0505_0_5mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0505_0_7mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0505_1_0mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0510_0_4mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0510_0_5mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0510_0_7mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0510_1_0mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0521_0_4mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0521_0_5mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0521_0_7mm.json | 1 + .../SeeMeCNC_BOSSdelta500_0521_1_0mm.json | 1 + .../machine/SeeMeCNC_BOSSdelta_300_0_4mm.json | 1 + .../machine/SeeMeCNC_BOSSdelta_300_0_5mm.json | 1 + .../machine/SeeMeCNC_BOSSdelta_300_0_7mm.json | 1 + .../machine/SeeMeCNC_BOSSdelta_300_1_0mm.json | 1 + .../SeeMeCNC_RostockMAX_v3.2_0_4mm.json | 1 + .../SeeMeCNC_RostockMAX_v3.2_0_5mm.json | 1 + .../SeeMeCNC_RostockMAX_v3.2_0_7mm.json | 1 + .../SeeMeCNC_RostockMAX_v3.2_1_0mm.json | 1 + .../machine/SeeMeCNC_RostockMAX_v4_0_4mm.json | 1 + .../machine/SeeMeCNC_RostockMAX_v4_0_5mm.json | 1 + .../machine/SeeMeCNC_RostockMAX_v4_0_7mm.json | 1 + .../machine/SeeMeCNC_RostockMAX_v4_1_0mm.json | 1 + .../0.16mm Fine @SeeMeCNC Artemis 0.4.json | 1 + ...16mm Fine @SeeMeCNC BOSSdelta 300 0.4.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0505 0.4.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0510 0.4.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0521 0.4.json | 1 + ...mm Fine @SeeMeCNC RostockMAX v3.2 0.4.json | 1 + ...16mm Fine @SeeMeCNC RostockMAX v4 0.4.json | 1 + ...m Draft @SeeMeCNC RostockMAX v3.2 0.4.json | 1 + .../0.20mm Fine @SeeMeCNC Artemis 0.5.json | 1 + ...20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json | 1 + ...mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json | 1 + ...20mm Fine @SeeMeCNC RostockMAX v4 0.5.json | 1 + ...0.20mm Standard @SeeMeCNC Artemis 0.4.json | 1 + ... Standard @SeeMeCNC BOSSdelta 300 0.4.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0505 0.4.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0510 0.4.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0521 0.4.json | 1 + ...tandard @SeeMeCNC RostockMAX v3.2 0.4.json | 1 + ... Standard @SeeMeCNC RostockMAX v4 0.4.json | 1 + .../0.24mm Draft @SeeMeCNC Artemis 0.4.json | 1 + ...4mm Draft @SeeMeCNC BOSSdelta 300 0.4.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0505 0.4.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0510 0.4.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0521 0.4.json | 1 + ...m Draft @SeeMeCNC RostockMAX v3.2 0.4.json | 1 + ...4mm Draft @SeeMeCNC RostockMAX v4 0.4.json | 1 + ...0.25mm Standard @SeeMeCNC Artemis 0.5.json | 1 + ... Standard @SeeMeCNC BOSSdelta 300 0.5.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0505 0.5.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0510 0.5.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0521 0.5.json | 1 + ...tandard @SeeMeCNC RostockMAX v3.2 0.5.json | 1 + ... Standard @SeeMeCNC RostockMAX v4 0.5.json | 1 + ...8mm Extra Draft @SeeMeCNC Artemis 0.4.json | 1 + ...tra Draft @SeeMeCNC BOSSdelta 300 0.4.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0505 0.4.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0510 0.4.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0521 0.4.json | 1 + ...a Draft @SeeMeCNC RostockMAX v3.2 0.4.json | 1 + ...tra Draft @SeeMeCNC RostockMAX v4 0.4.json | 1 + .../0.28mm Fine @SeeMeCNC Artemis 0.7.json | 1 + ...28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json | 1 + ...mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json | 1 + ...28mm Fine @SeeMeCNC RostockMAX v4 0.7.json | 1 + .../0.30mm Draft @SeeMeCNC Artemis 0.5.json | 1 + ...0mm Draft @SeeMeCNC BOSSdelta 300 0.5.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0505 0.5.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0510 0.5.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0521 0.5.json | 1 + ...m Draft @SeeMeCNC RostockMAX v3.2 0.5.json | 1 + ...0mm Draft @SeeMeCNC RostockMAX v4 0.5.json | 1 + ....30mm TPU Solid @SeeMeCNC Artemis 0.7.json | 1 + ...TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json | 1 + ...olid @SeeMeCNC BOSSdelta 500 0505 0.7.json | 1 + ...olid @SeeMeCNC BOSSdelta 500 0510 0.7.json | 1 + ...olid @SeeMeCNC BOSSdelta 500 0521 0.7.json | 1 + ...U Solid @SeeMeCNC RostockMAX v3.2 0.7.json | 1 + ...TPU Solid @SeeMeCNC RostockMAX v4 0.7.json | 1 + ...5mm Extra Draft @SeeMeCNC Artemis 0.5.json | 1 + ...tra Draft @SeeMeCNC BOSSdelta 300 0.5.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0505 0.5.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0510 0.5.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0521 0.5.json | 1 + ...a Draft @SeeMeCNC RostockMAX v3.2 0.5.json | 1 + ...tra Draft @SeeMeCNC RostockMAX v4 0.5.json | 1 + ...0.35mm Standard @SeeMeCNC Artemis 0.7.json | 1 + ... Standard @SeeMeCNC BOSSdelta 300 0.7.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0505 0.7.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0510 0.7.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0521 0.7.json | 1 + ...tandard @SeeMeCNC RostockMAX v3.2 0.7.json | 1 + ... Standard @SeeMeCNC RostockMAX v4 0.7.json | 1 + ...0.35mm TPU Vase @SeeMeCNC Artemis 0.7.json | 1 + ... TPU Vase @SeeMeCNC BOSSdelta 300 0.7.json | 1 + ...Vase @SeeMeCNC BOSSdelta 500 0505 0.7.json | 1 + ...Vase @SeeMeCNC BOSSdelta 500 0510 0.7.json | 1 + ...Vase @SeeMeCNC BOSSdelta 500 0521 0.7.json | 1 + ...PU Vase @SeeMeCNC RostockMAX v3.2 0.7.json | 1 + ... TPU Vase @SeeMeCNC RostockMAX v4 0.7.json | 1 + .../0.40mm Fine @SeeMeCNC Artemis 1.0.json | 1 + ...40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json | 1 + ...Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json | 1 + ...mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json | 1 + ...40mm Fine @SeeMeCNC RostockMAX v4 1.0.json | 1 + .../0.42mm Draft @SeeMeCNC Artemis 0.7.json | 1 + ...2mm Draft @SeeMeCNC BOSSdelta 300 0.7.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0505 0.7.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0510 0.7.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0521 0.7.json | 1 + ...m Draft @SeeMeCNC RostockMAX v3.2 0.7.json | 1 + ...2mm Draft @SeeMeCNC RostockMAX v4 0.7.json | 1 + ...9mm Extra Draft @SeeMeCNC Artemis 0.7.json | 1 + ...tra Draft @SeeMeCNC BOSSdelta 300 0.7.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0505 0.7.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0510 0.7.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0521 0.7.json | 1 + ...a Draft @SeeMeCNC RostockMAX v3.2 0.7.json | 1 + ...tra Draft @SeeMeCNC RostockMAX v4 0.7.json | 1 + ...0.50mm Standard @SeeMeCNC Artemis 1.0.json | 1 + ... Standard @SeeMeCNC BOSSdelta 300 1.0.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0505 1.0.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0510 1.0.json | 1 + ...dard @SeeMeCNC BOSSdelta 500 0521 1.0.json | 1 + ...tandard @SeeMeCNC RostockMAX v3.2 1.0.json | 1 + ... Standard @SeeMeCNC RostockMAX v4 1.0.json | 1 + .../0.60mm Draft @SeeMeCNC Artemis 1.0.json | 1 + ...0mm Draft @SeeMeCNC BOSSdelta 300 1.0.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0505 1.0.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0510 1.0.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0521 1.0.json | 1 + ...m Draft @SeeMeCNC RostockMAX v3.2 1.0.json | 1 + ...0mm Draft @SeeMeCNC RostockMAX v4 1.0.json | 1 + ...0mm Extra Draft @SeeMeCNC Artemis 1.0.json | 1 + ...tra Draft @SeeMeCNC BOSSdelta 300 1.0.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0505 1.0.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0510 1.0.json | 1 + ...raft @SeeMeCNC BOSSdelta 500 0521 1.0.json | 1 + ...a Draft @SeeMeCNC RostockMAX v3.2 1.0.json | 1 + ...tra Draft @SeeMeCNC RostockMAX v4 1.0.json | 1 + resources/profiles/Snapmaker.json | 2 +- .../Fiberon ASA-CF08 @Snapmaker U1.json | 2 +- .../Fiberon PA12-CF10 @Snapmaker U1.json | 2 +- .../Fiberon PA6-CF20 @Snapmaker U1.json | 2 +- .../Fiberon PA612-ESD @Snapmaker U1.json | 2 +- .../Fiberon PETG-ESD @Snapmaker U1.json | 2 +- .../Fiberon PPS-GF20 @Snapmaker U1.json | 2 +- .../Panchroma CoPE @Snapmaker U1.json | 2 +- .../Panchroma PLA @Snapmaker U1.json | 2 +- ...Panchroma PLA Celestial @Snapmaker U1.json | 2 +- .../Panchroma PLA Galaxy @Snapmaker U1.json | 2 +- .../Panchroma PLA Glow @Snapmaker U1.json | 2 +- .../Panchroma PLA Luminous @Snapmaker U1.json | 2 +- .../Panchroma PLA Marble @Snapmaker U1.json | 2 +- .../Panchroma PLA Matte @Snapmaker U1.json | 2 +- .../Panchroma PLA Metallic @Snapmaker U1.json | 2 +- .../Panchroma PLA Neon @Snapmaker U1.json | 2 +- .../Panchroma PLA Satin @Snapmaker U1.json | 2 +- .../Panchroma PLA Silk @Snapmaker U1.json | 2 +- ...Panchroma PLA Starlight @Snapmaker U1.json | 2 +- ...anchroma PLA Temp Shift @Snapmaker U1.json | 2 +- ...nchroma PLA Translucent @Snapmaker U1.json | 2 +- .../Panchroma PLA UV Shift @Snapmaker U1.json | 2 +- .../PolyLite CosPLA @Snapmaker U1.json | 2 +- .../PolyLite Dual PLA @0.2 nozzle.json | 2 +- .../PolyLite J1 PLA @0.2 nozzle.json | 2 +- .../filament/Polymaker/PolyLite J1 PLA.json | 2 +- .../PolyLite PETG @Snapmaker U1.json | 2 +- ...lyLite PETG Translucent @Snapmaker U1.json | 2 +- .../Polymaker/PolyLite PLA @0.2 nozzle.json | 2 +- .../Polymaker/PolyLite PLA @Snapmaker U1.json | 2 +- .../PolyLite PLA Galaxy @Snapmaker U1.json | 2 +- .../PolyLite PLA Glow @Snapmaker U1.json | 2 +- .../PolyLite PLA Luminous @Snapmaker U1.json | 2 +- .../PolyLite PLA Neon @Snapmaker U1.json | 2 +- .../PolyLite PLA Pro @Snapmaker U1.json | 2 +- ...lyLite PLA Pro Metallic @Snapmaker U1.json | 2 +- .../PolyLite PLA Starlight @Snapmaker U1.json | 2 +- ...olyLite PLA Translucent @Snapmaker U1.json | 2 +- .../PolyTerra Dual PLA @0.2 nozzle.json | 2 +- .../PolyTerra J1 PLA @0.2 nozzle.json | 2 +- .../filament/Polymaker/PolyTerra J1 PLA.json | 2 +- .../Polymaker/PolyTerra PLA @0.2 nozzle.json | 2 +- .../PolyTerra PLA @Snapmaker U1.json | 2 +- .../PolyTerra PLA Marble @Snapmaker U1.json | 2 +- .../PolyTerra PLA+ @Snapmaker U1.json | 2 +- .../Polymaker HT-PLA @Snapmaker U1.json | 2 +- .../Polymaker HT-PLA-GF @Snapmaker U1.json | 2 +- .../Polymaker PETG @Snapmaker U1.json | 2 +- .../Polymaker PETG Galaxy @Snapmaker U1.json | 2 +- .../Polymaker PLA @Snapmaker U1.json | 2 +- .../Polymaker PLA Pro @Snapmaker U1.json | 2 +- ...ymaker PLA Pro Metallic @Snapmaker U1.json | 2 +- .../filament/Snapmaker ABS @0.2 nozzle.json | 2 +- .../Snapmaker/filament/Snapmaker ABS @U1.json | 2 +- .../filament/Snapmaker ABS Benchy @U1.json | 2 +- .../Snapmaker/filament/Snapmaker ABS.json | 2 +- .../filament/Snapmaker ASA @0.2 nozzle.json | 2 +- .../Snapmaker/filament/Snapmaker ASA @U1.json | 2 +- .../Snapmaker/filament/Snapmaker ASA.json | 2 +- ...apmaker Breakaway Support For PLA @U1.json | 2 +- .../Snapmaker Dual ABS @0.2 nozzle.json | 2 +- .../Snapmaker Dual ABS @0.8 nozzle.json | 2 +- .../filament/Snapmaker Dual ABS Benchy.json | 2 +- .../filament/Snapmaker Dual ABS.json | 2 +- .../Snapmaker Dual ASA @0.2 nozzle.json | 2 +- .../filament/Snapmaker Dual ASA.json | 2 +- .../Snapmaker Dual Breakaway @0.2 nozzle.json | 2 +- .../filament/Snapmaker Dual Breakaway.json | 2 +- .../filament/Snapmaker Dual PA-CF.json | 2 +- .../filament/Snapmaker Dual PET.json | 2 +- .../Snapmaker Dual PETG @0.2 nozzle.json | 2 +- .../Snapmaker Dual PETG @0.8 nozzle.json | 2 +- .../filament/Snapmaker Dual PETG-CF.json | 2 +- .../filament/Snapmaker Dual PETG.json | 2 +- .../Snapmaker Dual PLA Eco @0.2 nozzle.json | 2 +- .../Snapmaker Dual PLA Eco @0.8 nozzle.json | 2 +- .../filament/Snapmaker Dual PLA Eco.json | 2 +- .../Snapmaker Dual PLA Matte @0.2 nozzle.json | 2 +- .../Snapmaker Dual PLA Matte @0.8 nozzle.json | 2 +- .../filament/Snapmaker Dual PLA Matte.json | 2 +- .../Snapmaker Dual PLA Metal @0.2 nozzle.json | 2 +- .../filament/Snapmaker Dual PLA Metal.json | 2 +- .../Snapmaker Dual PLA Silk @0.2 nozzle.json | 2 +- .../filament/Snapmaker Dual PLA Silk.json | 2 +- .../Snapmaker Dual PLA-CF @0.8 nozzle.json | 2 +- .../filament/Snapmaker Dual PLA-CF.json | 2 +- .../filament/Snapmaker Dual PLA.json | 2 +- .../Snapmaker Dual PVA @0.2 nozzle.json | 2 +- .../filament/Snapmaker Dual PVA.json | 2 +- .../filament/Snapmaker Dual TPE.json | 2 +- .../Snapmaker Dual TPU High-Flow.json | 2 +- .../filament/Snapmaker Dual TPU.json | 2 +- .../Snapmaker J1 ABS @0.2 nozzle.json | 2 +- .../Snapmaker J1 ABS @0.8 nozzle.json | 2 +- .../filament/Snapmaker J1 ABS Benchy.json | 2 +- .../Snapmaker/filament/Snapmaker J1 ABS.json | 2 +- .../Snapmaker J1 ASA @0.2 nozzle.json | 2 +- .../Snapmaker/filament/Snapmaker J1 ASA.json | 2 +- .../Snapmaker J1 Breakaway @0.2 nozzle.json | 2 +- .../filament/Snapmaker J1 Breakaway.json | 2 +- .../filament/Snapmaker J1 PA-CF.json | 2 +- .../Snapmaker/filament/Snapmaker J1 PET.json | 2 +- .../Snapmaker J1 PETG @0.2 nozzle.json | 2 +- .../Snapmaker J1 PETG @0.8 nozzle.json | 2 +- .../filament/Snapmaker J1 PETG-CF.json | 2 +- .../Snapmaker/filament/Snapmaker J1 PETG.json | 2 +- .../Snapmaker J1 PLA Eco @0.2 nozzle.json | 2 +- .../Snapmaker J1 PLA Eco @0.8 nozzle.json | 2 +- .../filament/Snapmaker J1 PLA Eco.json | 2 +- .../Snapmaker J1 PLA Matte @0.2 nozzle.json | 2 +- .../Snapmaker J1 PLA Matte @0.8 nozzle.json | 2 +- .../filament/Snapmaker J1 PLA Matte.json | 2 +- .../Snapmaker J1 PLA Metal @0.2 nozzle.json | 2 +- .../filament/Snapmaker J1 PLA Metal.json | 2 +- .../Snapmaker J1 PLA Silk @0.2 nozzle.json | 2 +- .../filament/Snapmaker J1 PLA Silk.json | 2 +- .../Snapmaker J1 PLA-CF @0.8 nozzle.json | 2 +- .../filament/Snapmaker J1 PLA-CF.json | 2 +- .../Snapmaker/filament/Snapmaker J1 PLA.json | 2 +- .../Snapmaker J1 PVA @0.2 nozzle.json | 2 +- .../Snapmaker/filament/Snapmaker J1 PVA.json | 2 +- .../Snapmaker/filament/Snapmaker J1 TPE.json | 2 +- .../filament/Snapmaker J1 TPU High-Flow.json | 2 +- .../Snapmaker/filament/Snapmaker J1 TPU.json | 2 +- .../filament/Snapmaker PA-CF @U1.json | 2 +- .../Snapmaker/filament/Snapmaker PA-CF.json | 2 +- .../filament/Snapmaker PET @Dual.json | 2 +- .../Snapmaker/filament/Snapmaker PET @U1.json | 2 +- .../Snapmaker/filament/Snapmaker PET.json | 2 +- .../filament/Snapmaker PETG @0.2 nozzle.json | 2 +- .../filament/Snapmaker PETG @U1.json | 2 +- .../filament/Snapmaker PETG-CF @U1.json | 2 +- .../Snapmaker/filament/Snapmaker PETG-CF.json | 2 +- .../Snapmaker/filament/Snapmaker PETG.json | 2 +- .../Snapmaker/filament/Snapmaker PLA @U1.json | 2 +- .../filament/Snapmaker PLA Eco @U1.json | 2 +- .../Snapmaker/filament/Snapmaker PLA Eco.json | 2 +- .../filament/Snapmaker PLA Lite @U1.json | 2 +- .../filament/Snapmaker PLA Matte @U1.json | 2 +- .../filament/Snapmaker PLA Metal @U1.json | 2 +- .../Snapmaker PLA Silk @0.2 nozzle.json | 2 +- .../filament/Snapmaker PLA Silk @U1.json | 2 +- .../filament/Snapmaker PLA Silk.json | 2 +- .../filament/Snapmaker PLA SnapSpeed @U1.json | 2 +- .../filament/Snapmaker PLA-CF @U1.json | 2 +- .../Snapmaker/filament/Snapmaker PLA-CF.json | 2 +- .../Snapmaker/filament/Snapmaker PLA.json | 2 +- .../filament/Snapmaker PVA @0.2 nozzle.json | 2 +- .../Snapmaker/filament/Snapmaker PVA @U1.json | 2 +- .../Snapmaker/filament/Snapmaker PVA.json | 2 +- .../Snapmaker/filament/Snapmaker TPE @U1.json | 2 +- .../Snapmaker/filament/Snapmaker TPE.json | 2 +- .../filament/Snapmaker TPU 95A @U1.json | 2 +- .../Snapmaker/filament/Snapmaker TPU @U1.json | 2 +- .../filament/Snapmaker TPU High-Flow @U1.json | 2 +- .../Snapmaker/filament/Snapmaker TPU.json | 2 +- .../machine/Snapmaker A250 (0.2 nozzle).json | 2 +- .../machine/Snapmaker A250 (0.4 nozzle).json | 2 +- .../machine/Snapmaker A250 (0.6 nozzle).json | 2 +- .../machine/Snapmaker A250 (0.8 nozzle).json | 2 +- .../Snapmaker A250 BKit (0.2 nozzle).json | 2 +- .../Snapmaker A250 BKit (0.4 nozzle).json | 2 +- .../Snapmaker A250 BKit (0.6 nozzle).json | 2 +- .../Snapmaker A250 BKit (0.8 nozzle).json | 2 +- .../Snapmaker A250 Dual (0.2 nozzle).json | 2 +- .../Snapmaker A250 Dual (0.4 nozzle).json | 2 +- .../Snapmaker A250 Dual (0.6 nozzle).json | 2 +- .../Snapmaker A250 Dual (0.8 nozzle).json | 2 +- ...Snapmaker A250 Dual BKit (0.2 nozzle).json | 2 +- ...Snapmaker A250 Dual BKit (0.4 nozzle).json | 2 +- ...Snapmaker A250 Dual BKit (0.6 nozzle).json | 2 +- ...Snapmaker A250 Dual BKit (0.8 nozzle).json | 2 +- ...maker A250 Dual QS+B Kit (0.2 nozzle).json | 2 +- ...maker A250 Dual QS+B Kit (0.4 nozzle).json | 2 +- ...maker A250 Dual QS+B Kit (0.6 nozzle).json | 2 +- ...maker A250 Dual QS+B Kit (0.8 nozzle).json | 2 +- ...napmaker A250 Dual QSKit (0.2 nozzle).json | 2 +- ...napmaker A250 Dual QSKit (0.4 nozzle).json | 2 +- ...napmaker A250 Dual QSKit (0.6 nozzle).json | 2 +- ...napmaker A250 Dual QSKit (0.8 nozzle).json | 2 +- .../Snapmaker A250 QS+B Kit (0.2 nozzle).json | 2 +- .../Snapmaker A250 QS+B Kit (0.4 nozzle).json | 2 +- .../Snapmaker A250 QS+B Kit (0.6 nozzle).json | 2 +- .../Snapmaker A250 QS+B Kit (0.8 nozzle).json | 2 +- .../Snapmaker A250 QSKit (0.2 nozzle).json | 2 +- .../Snapmaker A250 QSKit (0.4 nozzle).json | 2 +- .../Snapmaker A250 QSKit (0.6 nozzle).json | 2 +- .../Snapmaker A250 QSKit (0.8 nozzle).json | 2 +- .../machine/Snapmaker A350 (0.2 nozzle).json | 2 +- .../machine/Snapmaker A350 (0.4 nozzle).json | 2 +- .../machine/Snapmaker A350 (0.6 nozzle).json | 2 +- .../machine/Snapmaker A350 (0.8 nozzle).json | 2 +- .../Snapmaker A350 BKit (0.2 nozzle).json | 2 +- .../Snapmaker A350 BKit (0.4 nozzle).json | 2 +- .../Snapmaker A350 BKit (0.6 nozzle).json | 2 +- .../Snapmaker A350 BKit (0.8 nozzle).json | 2 +- .../Snapmaker A350 Dual (0.2 nozzle).json | 2 +- .../Snapmaker A350 Dual (0.4 nozzle).json | 2 +- .../Snapmaker A350 Dual (0.6 nozzle).json | 2 +- .../Snapmaker A350 Dual (0.8 nozzle).json | 2 +- ...Snapmaker A350 Dual BKit (0.2 nozzle).json | 2 +- ...Snapmaker A350 Dual BKit (0.4 nozzle).json | 2 +- ...Snapmaker A350 Dual BKit (0.6 nozzle).json | 2 +- ...Snapmaker A350 Dual BKit (0.8 nozzle).json | 2 +- ...maker A350 Dual QS+B Kit (0.2 nozzle).json | 2 +- ...maker A350 Dual QS+B Kit (0.4 nozzle).json | 2 +- ...maker A350 Dual QS+B Kit (0.6 nozzle).json | 2 +- ...maker A350 Dual QS+B Kit (0.8 nozzle).json | 2 +- ...napmaker A350 Dual QSKit (0.2 nozzle).json | 2 +- ...napmaker A350 Dual QSKit (0.4 nozzle).json | 2 +- ...napmaker A350 Dual QSKit (0.6 nozzle).json | 2 +- ...napmaker A350 Dual QSKit (0.8 nozzle).json | 2 +- .../Snapmaker A350 QS+B Kit (0.2 nozzle).json | 2 +- .../Snapmaker A350 QS+B Kit (0.4 nozzle).json | 2 +- .../Snapmaker A350 QS+B Kit (0.6 nozzle).json | 2 +- .../Snapmaker A350 QS+B Kit (0.8 nozzle).json | 2 +- .../Snapmaker A350 QSKit (0.2 nozzle).json | 2 +- .../Snapmaker A350 QSKit (0.4 nozzle).json | 2 +- .../Snapmaker A350 QSKit (0.6 nozzle).json | 2 +- .../Snapmaker A350 QSKit (0.8 nozzle).json | 2 +- .../Snapmaker Artisan (0.2 nozzle).json | 2 +- .../Snapmaker Artisan (0.4 nozzle).json | 2 +- .../Snapmaker Artisan (0.6 nozzle).json | 2 +- .../Snapmaker Artisan (0.8 nozzle).json | 2 +- .../machine/Snapmaker J1 (0.2 nozzle).json | 2 +- .../machine/Snapmaker J1 (0.4 nozzle).json | 2 +- .../machine/Snapmaker J1 (0.6 nozzle).json | 2 +- .../machine/Snapmaker J1 (0.8 nozzle).json | 2 +- .../machine/Snapmaker U1 (0.2 nozzle).json | 2 +- .../machine/Snapmaker U1 (0.4 nozzle).json | 2 +- .../Snapmaker U1 (0.4+0.6 nozzle).json | 2 +- .../machine/Snapmaker U1 (0.6 nozzle).json | 2 +- .../machine/Snapmaker U1 (0.8 nozzle).json | 2 +- ...gh Quality @Snapmaker U1 (0.2 nozzle).json | 2 +- ...0.06 Standard @Snapmaker (0.2 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.2 nozzle).json | 2 +- ...6 Standard @Snapmaker J1 (0.2 nozzle).json | 2 +- ...6 Standard @Snapmaker U1 (0.2 nozzle).json | 2 +- ...08 Extra Fine @Snapmaker (0.4 nozzle).json | 2 +- ... Fine @Snapmaker Artisan (0.4 nozzle).json | 2 +- ...Extra Fine @Snapmaker J1 (0.4 nozzle).json | 2 +- ...Extra Fine @Snapmaker U1 (0.4 nozzle).json | 2 +- ...gh Quality @Snapmaker U1 (0.2 nozzle).json | 2 +- ...gh Quality @Snapmaker U1 (0.4 nozzle).json | 2 +- ...8 Standard @Snapmaker U1 (0.2 nozzle).json | 2 +- ...gh Quality @Snapmaker U1 (0.2 nozzle).json | 2 +- ...0.10 Standard @Snapmaker (0.2 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.2 nozzle).json | 2 +- ...0 Standard @Snapmaker J1 (0.2 nozzle).json | 2 +- ...0 Standard @Snapmaker U1 (0.2 nozzle).json | 2 +- .../0.12 Fine @Snapmaker (0.4 nozzle).json | 2 +- ... Fine @Snapmaker Artisan (0.4 nozzle).json | 2 +- .../0.12 Fine @Snapmaker J1 (0.4 nozzle).json | 2 +- .../0.12 Fine @Snapmaker U1 (0.4 nozzle).json | 2 +- ...gh Quality @Snapmaker U1 (0.4 nozzle).json | 2 +- ...2 Standard @Snapmaker U1 (0.2 nozzle).json | 2 +- ...0.14 Standard @Snapmaker (0.2 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.2 nozzle).json | 2 +- ...4 Standard @Snapmaker J1 (0.2 nozzle).json | 2 +- ...4 Standard @Snapmaker U1 (0.2 nozzle).json | 2 +- ...gh Quality @Snapmaker U1 (0.4 nozzle).json | 2 +- .../0.16 Optimal @Snapmaker (0.4 nozzle).json | 2 +- ...timal @Snapmaker Artisan (0.4 nozzle).json | 2 +- ...16 Optimal @Snapmaker J1 (0.4 nozzle).json | 2 +- ...16 Optimal @Snapmaker U1 (0.4 nozzle).json | 2 +- ...0.18 Standard @Snapmaker (0.6 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.6 nozzle).json | 2 +- ...8 Standard @Snapmaker J1 (0.6 nozzle).json | 2 +- ...8 Standard @Snapmaker U1 (0.6 nozzle).json | 2 +- ... Support W @Snapmaker U1 (0.4 nozzle).json | 2 +- ...20 Quality @Snapmaker U1 (0.4 nozzle).json | 2 +- ...0.20 Standard @Snapmaker (0.4 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.4 nozzle).json | 2 +- ...0 Standard @Snapmaker J1 (0.4 nozzle).json | 2 +- ...0 Standard @Snapmaker U1 (0.4 nozzle).json | 2 +- ...andard @Snapmaker U1 (0.4+0.6 nozzle).json | 2 +- ...0 Standard @Snapmaker U1 (0.6 nozzle).json | 2 +- ...0.20 Strength @Snapmaker (0.4 nozzle).json | 2 +- ...ength @Snapmaker Artisan (0.4 nozzle).json | 2 +- ...0 Strength @Snapmaker J1 (0.4 nozzle).json | 2 +- ...0 Strength @Snapmaker U1 (0.4 nozzle).json | 2 +- ...20 Support @Snapmaker U1 (0.4 nozzle).json | 2 +- ... Support W @Snapmaker U1 (0.4 nozzle).json | 2 +- .../0.24 Draft @Snapmaker (0.4 nozzle).json | 2 +- ...Draft @Snapmaker Artisan (0.4 nozzle).json | 2 +- ...0.24 Draft @Snapmaker J1 (0.4 nozzle).json | 2 +- ...0.24 Draft @Snapmaker U1 (0.4 nozzle).json | 2 +- ...0.24 Standard @Snapmaker (0.6 nozzle).json | 2 +- ...0.24 Standard @Snapmaker (0.8 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.6 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.8 nozzle).json | 2 +- ...4 Standard @Snapmaker J1 (0.6 nozzle).json | 2 +- ...4 Standard @Snapmaker J1 (0.8 nozzle).json | 2 +- ...4 Standard @Snapmaker U1 (0.6 nozzle).json | 2 +- ...4 Standard @Snapmaker U1 (0.8 nozzle).json | 2 +- ...enchy @Snapmaker Artisan (0.4 nozzle).json | 2 +- ....25 Benchy @Snapmaker J1 (0.4 nozzle).json | 2 +- ....25 Benchy @Snapmaker U1 (0.4 nozzle).json | 2 +- ...8 Extra Draft @Snapmaker (0.4 nozzle).json | 2 +- ...Draft @Snapmaker Artisan (0.4 nozzle).json | 2 +- ...xtra Draft @Snapmaker J1 (0.4 nozzle).json | 2 +- ...xtra Draft @Snapmaker U1 (0.4 nozzle).json | 2 +- ...0.30 Draft @Snapmaker U1 (0.6 nozzle).json | 2 +- ...0.30 Standard @Snapmaker (0.6 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.6 nozzle).json | 2 +- ...0 Standard @Snapmaker J1 (0.6 nozzle).json | 2 +- ...0 Standard @Snapmaker U1 (0.6 nozzle).json | 2 +- ...0.30 Strength @Snapmaker (0.6 nozzle).json | 2 +- ...ength @Snapmaker Artisan (0.6 nozzle).json | 2 +- ...0 Strength @Snapmaker J1 (0.6 nozzle).json | 2 +- ...0 Strength @Snapmaker U1 (0.6 nozzle).json | 2 +- ...0.32 Standard @Snapmaker (0.8 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.8 nozzle).json | 2 +- ...2 Standard @Snapmaker J1 (0.8 nozzle).json | 2 +- ...2 Standard @Snapmaker U1 (0.8 nozzle).json | 2 +- ...0.34 Standard @Snapmaker (0.6 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.6 nozzle).json | 2 +- ...4 Standard @Snapmaker J1 (0.6 nozzle).json | 2 +- ...0.36 Standard @Snapmaker (0.8 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.8 nozzle).json | 2 +- ...6 Standard @Snapmaker J1 (0.8 nozzle).json | 2 +- ...6 Standard @Snapmaker U1 (0.6 nozzle).json | 2 +- ...0.38 Standard @Snapmaker (0.6 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.6 nozzle).json | 2 +- ...8 Standard @Snapmaker J1 (0.6 nozzle).json | 2 +- ...xtra Draft @Snapmaker U1 (0.6 nozzle).json | 2 +- ...0.40 Standard @Snapmaker (0.8 nozzle).json | 2 +- ...ndard @Snapmaker Artisan (0.8 nozzle).json | 2 +- ...0 Standard @Snapmaker J1 (0.8 nozzle).json | 2 +- ...0 Standard @Snapmaker U1 (0.8 nozzle).json | 2 +- .../0.42 Draft @Snapmaker (0.6 nozzle).json | 2 +- ...Draft @Snapmaker Artisan (0.6 nozzle).json | 2 +- ...0.42 Draft @Snapmaker J1 (0.6 nozzle).json | 2 +- ...2 Standard @Snapmaker U1 (0.6 nozzle).json | 2 +- .../0.48 Draft @Snapmaker (0.8 nozzle).json | 2 +- ...Draft @Snapmaker Artisan (0.8 nozzle).json | 2 +- ...0.48 Draft @Snapmaker J1 (0.8 nozzle).json | 2 +- ...8 Standard @Snapmaker U1 (0.8 nozzle).json | 2 +- ...6 Standard @Snapmaker U1 (0.8 nozzle).json | 2 +- .../Snapmaker/process/fdm_process_a400.json | 1 - .../Snapmaker/process/fdm_process_common.json | 1 - .../Snapmaker/process/fdm_process_idex.json | 1 - resources/profiles/Sovol.json | 2 +- .../filament/Generic ABS @Sovol SV08 MAX.json | 2 +- .../filament/Generic PC @Sovol SV08 MAX.json | 2 +- .../Generic PETG @Sovol SV08 MAX.json | 2 +- .../filament/Generic PLA @Sovol SV08 MAX.json | 2 +- .../Generic PLA Silk @Sovol SV08 MAX.json | 2 +- .../filament/Generic TPU @Sovol SV08 MAX.json | 2 +- .../Polymaker PETG @Sovol SV08 MAX.json | 2 +- .../filament/SUNLU PETG @Sovol SV08 MAX.json | 2 +- .../Sovol/filament/Sovol SV06 ACE ABS.json | 2 +- .../Sovol/filament/Sovol SV06 ACE PETG.json | 2 +- .../Sovol/filament/Sovol SV06 ACE PLA.json | 2 +- .../Sovol/filament/Sovol SV06 ACE TPU.json | 2 +- .../filament/Sovol SV06 Plus ACE ABS.json | 2 +- .../filament/Sovol SV06 Plus ACE PETG.json | 2 +- .../filament/Sovol SV06 Plus ACE PLA.json | 2 +- .../filament/Sovol SV06 Plus ACE TPU.json | 2 +- .../Sovol/filament/Sovol SV07 PLA.json | 2 +- .../Sovol/filament/Sovol SV08 ABS.json | 2 +- .../Sovol/filament/Sovol SV08 PETG.json | 2 +- .../Sovol SV08 PLA @SV08 0.2 nozzle.json | 2 +- .../Sovol/filament/Sovol SV08 PLA.json | 2 +- .../Sovol/filament/Sovol SV08 TPU.json | 2 +- .../Sovol/filament/Sovol Zero ABS.json | 2 +- .../Sovol/filament/Sovol Zero PC.json | 2 +- .../filament/Sovol Zero PETG HS Nozzle.json | 2 +- .../Sovol/filament/Sovol Zero PETG.json | 2 +- .../Sovol Zero PLA Basic HS Nozzle.json | 2 +- .../Sovol/filament/Sovol Zero PLA Basic.json | 2 +- .../Sovol Zero PLA Silk HS Nozzle.json | 2 +- .../Sovol/filament/Sovol Zero PLA Silk.json | 2 +- .../Sovol/filament/Sovol Zero TPU.json | 2 +- .../Sovol/machine/Sovol SV01 0.4 nozzle.json | 2 +- .../machine/Sovol SV01 Pro 0.4 nozzle.json | 2 +- .../Sovol/machine/Sovol SV02 0.4 nozzle.json | 2 +- .../Sovol/machine/Sovol SV05 0.4 nozzle.json | 2 +- .../Sovol SV06 0.4 High-Speed nozzle.json | 2 +- .../Sovol/machine/Sovol SV06 0.4 nozzle.json | 2 +- .../machine/Sovol SV06 ACE 0.2 nozzle.json | 2 +- .../machine/Sovol SV06 ACE 0.4 nozzle.json | 2 +- .../machine/Sovol SV06 ACE 0.6 nozzle.json | 2 +- .../machine/Sovol SV06 ACE 0.8 nozzle.json | 2 +- .../machine/Sovol SV06 Plus 0.4 nozzle.json | 2 +- .../Sovol SV06 Plus ACE 0.4 nozzle.json | 2 +- .../Sovol/machine/Sovol SV07 0.4 nozzle.json | 2 +- .../machine/Sovol SV07 Plus 0.4 nozzle.json | 2 +- .../Sovol/machine/Sovol SV08 0.2 nozzle.json | 2 +- .../Sovol/machine/Sovol SV08 0.4 nozzle.json | 2 +- .../Sovol/machine/Sovol SV08 0.6 nozzle.json | 2 +- .../Sovol/machine/Sovol SV08 0.8 nozzle.json | 2 +- .../machine/Sovol SV08 MAX 0.4 nozzle.json | 2 +- .../machine/Sovol SV08 MAX 0.6 nozzle.json | 2 +- .../machine/Sovol SV08 MAX 0.8 nozzle.json | 2 +- .../Sovol/machine/Sovol Zero 0.4 nozzle.json | 2 +- ...gh Quality @Sovol SV06 ACE 0.4 nozzle.json | 2 +- ....10mm Standard @Sovol SV08 0.2 nozzle.json | 2 +- ...mm Quality @Sovol SV06 ACE 0.4 nozzle.json | 2 +- ...m Standard @Sovol SV06 ACE 0.2 nozzle.json | 2 +- .../0.18mm Optimal @Sovol SV01Pro.json | 2 +- .../process/0.18mm Optimal @Sovol SV02.json | 2 +- .../process/0.18mm Optimal @Sovol SV05.json | 2 +- .../process/0.18mm Optimal @Sovol SV06.json | 2 +- .../0.18mm Optimal @Sovol SV06Plus.json | 2 +- .../process/0.18mm Optimal @Sovol SV07.json | 2 +- .../0.18mm Optimal @Sovol SV07Plus.json | 2 +- .../process/0.18mm Optimal @Sovol SV08.json | 2 +- .../0.20mm High-Speed @Sovol SV06.json | 2 +- .../process/0.20mm Standard @Sovol SV01.json | 2 +- .../0.20mm Standard @Sovol SV01Pro.json | 2 +- .../process/0.20mm Standard @Sovol SV02.json | 2 +- .../process/0.20mm Standard @Sovol SV05.json | 2 +- .../0.20mm Standard @Sovol SV06 ACE.json | 2 +- .../0.20mm Standard @Sovol SV06 Plus ACE.json | 2 +- .../process/0.20mm Standard @Sovol SV06.json | 2 +- .../0.20mm Standard @Sovol SV06Plus.json | 2 +- .../process/0.20mm Standard @Sovol SV07.json | 2 +- .../0.20mm Standard @Sovol SV07Plus.json | 2 +- ....20mm Standard @Sovol SV08 0.4 nozzle.json | 2 +- ...m Standard @Sovol SV08 MAX 0.4 nozzle.json | 2 +- .../process/0.20mm Standard @Sovol SV08.json | 2 +- ....20mm Standard @Sovol Zero 0.4 nozzle.json | 2 +- ....28mm Fast @Sovol SV06 ACE 0.4 nozzle.json | 2 +- ...m Standard @Sovol SV06 ACE 0.6 nozzle.json | 2 +- ....30mm Standard @Sovol SV08 0.6 nozzle.json | 2 +- ...m Standard @Sovol SV08 MAX 0.6 nozzle.json | 2 +- ...m Standard @Sovol SV06 ACE 0.8 nozzle.json | 2 +- ....40mm Standard @Sovol SV08 0.8 nozzle.json | 2 +- ...m Standard @Sovol SV08 MAX 0.8 nozzle.json | 2 +- resources/profiles/Tiertime.json | 2 +- .../Tiertime/filament/Tiertime ABS.json | 2 +- .../Tiertime/filament/Tiertime ABS@300HS.json | 2 +- .../Tiertime/filament/Tiertime ASA.json | 1 + .../Tiertime/filament/Tiertime ASA@300HS.json | 1 + .../filament/Tiertime Generic ABS.json | 1 + .../filament/Tiertime Generic ABS@300HS.json | 1 + .../filament/Tiertime Generic ASA.json | 1 + .../filament/Tiertime Generic ASA@300HS.json | 1 + .../filament/Tiertime Generic BVOH.json | 1 + .../filament/Tiertime Generic BVOH@300HS.json | 1 + .../filament/Tiertime Generic EVA.json | 1 + .../filament/Tiertime Generic EVA@300HS.json | 1 + .../filament/Tiertime Generic HIPS.json | 1 + .../filament/Tiertime Generic HIPS@300HS.json | 1 + .../filament/Tiertime Generic PA-CF.json | 2 +- .../Tiertime Generic PA-CF@300HS.json | 2 +- .../filament/Tiertime Generic PA.json | 2 +- .../filament/Tiertime Generic PA@300HS.json | 2 +- .../filament/Tiertime Generic PC.json | 1 + .../filament/Tiertime Generic PC@300HS.json | 1 + .../filament/Tiertime Generic PCTG.json | 1 + .../filament/Tiertime Generic PCTG@300HS.json | 1 + .../filament/Tiertime Generic PE-CF.json | 1 + .../Tiertime Generic PE-CF@300HS.json | 1 + .../filament/Tiertime Generic PE.json | 1 + .../filament/Tiertime Generic PE@300HS.json | 1 + .../filament/Tiertime Generic PETG-CF.json | 1 + .../Tiertime Generic PETG-CF@300HS.json | 1 + .../filament/Tiertime Generic PETG.json | 1 + .../filament/Tiertime Generic PETG@300HS.json | 1 + .../filament/Tiertime Generic PHA.json | 1 + .../filament/Tiertime Generic PHA@300HS.json | 1 + .../Tiertime Generic PLA High Speed.json | 1 + ...Tiertime Generic PLA High Speed@300HS.json | 1 + .../filament/Tiertime Generic PLA Silk.json | 1 + .../Tiertime Generic PLA Silk@300HS.json | 1 + .../filament/Tiertime Generic PLA-CF.json | 1 + .../Tiertime Generic PLA-CF@300HS.json | 1 + .../filament/Tiertime Generic PLA.json | 1 + .../filament/Tiertime Generic PLA@300HS.json | 1 + .../filament/Tiertime Generic PP-CF.json | 1 + .../Tiertime Generic PP-CF@300HS.json | 1 + .../filament/Tiertime Generic PP-GF.json | 1 + .../Tiertime Generic PP-GF@300HS.json | 1 + .../filament/Tiertime Generic PP.json | 1 + .../filament/Tiertime Generic PP@300HS.json | 1 + .../filament/Tiertime Generic PPA-CF.json | 1 + .../Tiertime Generic PPA-CF@300HS.json | 1 + .../filament/Tiertime Generic PPA-GF.json | 1 + .../Tiertime Generic PPA-GF@300HS.json | 1 + .../filament/Tiertime Generic PPS-CF.json | 1 + .../Tiertime Generic PPS-CF@300HS.json | 1 + .../filament/Tiertime Generic PPS.json | 1 + .../filament/Tiertime Generic PPS@300HS.json | 1 + .../filament/Tiertime Generic PVA.json | 1 + .../filament/Tiertime Generic PVA@300HS.json | 1 + .../filament/Tiertime Generic SBS.json | 1 + .../filament/Tiertime Generic SBS@300HS.json | 1 + .../filament/Tiertime Generic TPU.json | 2 +- .../filament/Tiertime Generic TPU@300HS.json | 2 +- .../Tiertime/filament/Tiertime PA6-CF.json | 1 + .../filament/Tiertime PA6-CF@300HS.json | 1 + .../Tiertime/filament/Tiertime PC.json | 1 + .../Tiertime/filament/Tiertime PC@300HS.json | 1 + .../Tiertime/filament/Tiertime PET-CF.json | 1 + .../filament/Tiertime PET-CF@300HS.json | 1 + .../Tiertime/filament/Tiertime PETG.json | 1 + .../filament/Tiertime PETG@300HS.json | 1 + .../Tiertime/filament/Tiertime PLA-CF.json | 1 + .../filament/Tiertime PLA-CF@300HS.json | 1 + .../Tiertime/filament/Tiertime PLA.json | 2 +- .../Tiertime/filament/Tiertime PLA@300HS.json | 2 +- .../Tiertime/filament/Tiertime PVA.json | 1 + .../Tiertime/filament/Tiertime PVA@300HS.json | 1 + .../Tiertime/filament/Tiertime TPU 95A.json | 1 + .../filament/Tiertime TPU 95A@300HS.json | 1 + .../machine/Tiertime UP300 HS 0.4 nozzle.json | 2 +- .../Tiertime UP310 Pro 0.4 nozzle.json | 2 +- .../Tiertime UP400 Pro 0.4 nozzle.json | 2 +- .../Tiertime UP400 Pro 0.6 nozzle.json | 2 +- .../Tiertime UP400 Pro 0.8 nozzle.json | 2 +- .../machine/Tiertime UP600 HS 0.4 nozzle.json | 2 +- .../machine/Tiertime UP600 HS 0.6 nozzle.json | 2 +- .../machine/Tiertime UP600 HS 0.8 nozzle.json | 2 +- .../0.12mm Fine @Tiertime UP300 HS.json | 2 +- .../0.12mm Fine @Tiertime UP310 Pro.json | 2 +- .../0.12mm Fine @Tiertime UP400 Pro.json | 2 +- .../0.12mm Fine @Tiertime UP600 HS.json | 2 +- .../0.16mm Optimal @Tiertime UP300 HS.json | 2 +- .../0.16mm Optimal @Tiertime UP310 Pro.json | 2 +- .../0.16mm Optimal @Tiertime UP400 Pro.json | 2 +- .../0.16mm Optimal @Tiertime UP600 HS.json | 2 +- ...m Fine @Tiertime UP400 Pro 0.6 nozzle.json | 2 +- ...mm Fine @Tiertime UP600 HS 0.6 nozzle.json | 2 +- .../0.20mm Standard @Tiertime UP300 HS.json | 2 +- .../0.20mm Standard @Tiertime UP310 Pro.json | 2 +- .../0.20mm Standard @Tiertime UP400 Pro.json | 2 +- .../0.20mm Standard @Tiertime UP600 HS.json | 2 +- .../0.24mm Draft @Tiertime UP300 HS.json | 2 +- .../0.24mm Draft @Tiertime UP310 Pro.json | 2 +- .../0.24mm Draft @Tiertime UP400 Pro.json | 2 +- .../0.24mm Draft @Tiertime UP600 HS.json | 2 +- ...m Fine @Tiertime UP400 Pro 0.8 nozzle.json | 2 +- ...mm Fine @Tiertime UP600 HS 0.8 nozzle.json | 2 +- ...andard @Tiertime UP400 Pro 0.6 nozzle.json | 2 +- ...tandard @Tiertime UP600 HS 0.6 nozzle.json | 2 +- ...0.28mm Extra Draft @Tiertime UP300 HS.json | 2 +- ....28mm Extra Draft @Tiertime UP310 Pro.json | 2 +- ....28mm Extra Draft @Tiertime UP400 Pro.json | 2 +- ...0.28mm Extra Draft @Tiertime UP600 HS.json | 2 +- ...andard @Tiertime UP400 Pro 0.6 nozzle.json | 2 +- ...tandard @Tiertime UP600 HS 0.6 nozzle.json | 2 +- ...rength @Tiertime UP400 Pro 0.6 nozzle.json | 2 +- ...trength @Tiertime UP600 HS 0.6 nozzle.json | 2 +- ...andard @Tiertime UP400 Pro 0.8 nozzle.json | 2 +- ...tandard @Tiertime UP600 HS 0.8 nozzle.json | 2 +- ... Draft @Tiertime UP400 Pro 0.6 nozzle.json | 2 +- ...m Draft @Tiertime UP600 HS 0.6 nozzle.json | 2 +- ...andard @Tiertime UP400 Pro 0.8 nozzle.json | 2 +- ...tandard @Tiertime UP600 HS 0.8 nozzle.json | 2 +- ... Draft @Tiertime UP400 Pro 0.6 nozzle.json | 2 +- ...a Draft @Tiertime UP600 HS 0.6 nozzle.json | 2 +- ... Draft @Tiertime UP400 Pro 0.8 nozzle.json | 2 +- ...m Draft @Tiertime UP600 HS 0.8 nozzle.json | 2 +- ... Draft @Tiertime UP400 Pro 0.8 nozzle.json | 2 +- ...a Draft @Tiertime UP600 HS 0.8 nozzle.json | 2 +- resources/profiles/Tronxy.json | 2 +- .../machine/Tronxy X5SA 400 0.4 nozzle.json | 2 +- .../process/0.08mm Extra Fine @Tronxy.json | 2 +- .../Tronxy/process/0.12mm Fine @Tronxy.json | 2 +- .../process/0.15mm Optimal @Tronxy.json | 2 +- .../process/0.20mm Standard @Tronxy.json | 2 +- .../Tronxy/process/0.24mm Draft @Tronxy.json | 2 +- .../process/0.28mm Extra Draft @Tronxy.json | 2 +- resources/profiles/TwoTrees.json | 2 +- .../TwoTrees Generic 95A TPU @SK1.json | 2 +- .../TwoTrees Generic HS PLA @SK1.json | 2 +- .../machine/TwoTrees SK1 0.4 nozzle.json | 2 +- .../TwoTrees SP-5 Klipper 0.4 nozzle.json | 2 +- .../process/0.08mm Extra Fine @SK1.json | 1 + .../process/0.08mm Extra Fine @TwoTrees.json | 2 +- .../TwoTrees/process/0.12mm Fine @SK1.json | 1 + .../process/0.12mm Fine @TwoTrees.json | 2 +- .../process/0.15mm Optimal @TwoTrees.json | 2 +- .../TwoTrees/process/0.16mm Optimal @SK1.json | 1 + .../TwoTrees/process/0.20mm Quality @SK1.json | 1 + .../process/0.20mm Standard @SK1.json | 1 + .../process/0.20mm Standard @TwoTrees.json | 2 +- .../TwoTrees/process/0.24mm Draft @SK1.json | 1 + .../process/0.24mm Draft @TwoTrees.json | 2 +- .../TwoTrees/process/0.24mm HSpeed @SK1.json | 1 + .../process/0.28mm Extra Draft @SK1.json | 1 + .../process/0.28mm Extra Draft @TwoTrees.json | 2 +- resources/profiles/UltiMaker.json | 2 +- .../machine/UltiMaker 2 0.4 nozzle.json | 2 +- .../process/0.12mm Fine @UltiMaker 2.json | 2 +- .../process/0.18mm Standard @UltiMaker 2.json | 2 +- .../process/0.25mm Darft @UltiMaker 2.json | 2 +- resources/profiles/Vivedino.json | 2 +- .../Troodon 2.0 Klipper 0.4 nozzle.json | 2 +- .../machine/Troodon 2.0 RRF 0.4 nozzle.json | 2 +- .../process/0.08mm Extra Fine @Troodon2.json | 2 +- .../process/0.12mm Fine @Troodon2.json | 2 +- .../process/0.15mm Optimal @Troodon2.json | 2 +- .../process/0.20mm Standard @Troodon2.json | 2 +- .../process/0.24mm Draft @Troodon2.json | 2 +- .../process/0.28mm Extra Draft @Troodon2.json | 2 +- resources/profiles/Volumic.json | 2 +- .../filament/PA6 CF20 (Performance).json | 2 +- .../filament/PETG ESD (Performance).json | 2 +- .../filament/PPS Carbone (Performance).json | 2 +- .../Volumic ABS Ultra Performance.json | 2 +- .../Volumic/filament/Volumic ABS Ultra.json | 2 +- .../Volumic ASA Ultra Performance.json | 2 +- .../Volumic/filament/Volumic ASA Ultra.json | 2 +- .../Volumic FLEX93 Ultra Performance.json | 2 +- .../filament/Volumic FLEX93 Ultra.json | 2 +- .../Volumic NYLON Ultra Performance.json | 2 +- .../Volumic/filament/Volumic NYLON Ultra.json | 2 +- .../filament/Volumic PC Performance.json | 2 +- .../profiles/Volumic/filament/Volumic PC.json | 2 +- .../Volumic PCTG Ultra (Performance).json | 2 +- .../Volumic PETG Ultra Performance.json | 2 +- ...olumic PETG Ultra carbone Performance.json | 2 +- .../filament/Volumic PETG Ultra carbone.json | 2 +- .../Volumic/filament/Volumic PETG Ultra.json | 2 +- .../Volumic PLA Ultra Performance.json | 2 +- .../Volumic/filament/Volumic PLA Ultra.json | 2 +- .../Volumic PP Ultra Performance.json | 2 +- .../Volumic/filament/Volumic PP Ultra.json | 2 +- .../filament/Volumic PVA Performance.json | 2 +- .../Volumic/filament/Volumic PVA.json | 2 +- .../Volumic UNIVERSAL Ultra Performance.json | 2 +- .../filament/Volumic UNIVERSAL Ultra.json | 2 +- .../profiles/Volumic/filament/desactive.json | 2 +- .../Volumic/machine/EXO42 (0.4 nozzle).json | 2 +- .../machine/EXO42 IDRE (0.4 nozzle).json | 2 +- .../EXO42 IDRE COPY MODE (0.4 nozzle).json | 2 +- .../EXO42 IDRE MIRROR MODE (0.4 nozzle).json | 2 +- .../EXO42 Performance (0.4 nozzle).json | 2 +- .../machine/EXO42 Stage 2 (0.4 nozzle).json | 2 +- .../Volumic/machine/EXO65 (0.6 nozzle).json | 2 +- .../machine/EXO65 IDRE (0.4 nozzle).json | 2 +- .../EXO65 IDRE COPY MODE (0.4 nozzle).json | 2 +- .../EXO65 IDRE MIRROR MODE (0.4 nozzle).json | 2 +- .../EXO65 Performance (0.4 nozzle).json | 2 +- .../EXO65 Performance (0.6 nozzle).json | 2 +- .../EXO65 Performance (0.8 nozzle).json | 2 +- .../machine/EXO65 Stage 2 (0.6 nozzle).json | 2 +- .../Volumic/machine/SH65 (0.4 nozzle).json | 2 +- .../machine/SH65 IDRE (0.4 nozzle).json | 2 +- .../SH65 IDRE COPY MODE (0.4 nozzle).json | 2 +- .../SH65 IDRE MIRROR MODE (0.4 nozzle).json | 2 +- .../SH65 Performance (0.4 nozzle).json | 2 +- .../machine/SH65 Stage 2 (0.4 nozzle).json | 2 +- .../Volumic/machine/VS20MK2 (0.4 nozzle).json | 2 +- .../Volumic/machine/VS30MK2 (0.4 nozzle).json | 2 +- .../Volumic/machine/VS30MK3 (0.4 nozzle).json | 2 +- .../machine/VS30MK3 Stage 2 (0.4 nozzle).json | 2 +- .../Volumic/machine/VS30SC (0.4 nozzle).json | 2 +- .../Volumic/machine/VS30SC2 (0.4 nozzle).json | 2 +- .../VS30SC2 Performance (0.4 nozzle).json | 2 +- .../machine/VS30SC2 Stage 2 (0.4 nozzle).json | 2 +- .../machine/VS30ULTRA (0.4 nozzle).json | 2 +- .../process/Compatible speed - 0.10mm.json | 2 +- .../process/Compatible speed - 0.15mm.json | 2 +- .../process/Compatible speed - 0.20mm.json | 2 +- .../process/Compatible speed - 0.25mm.json | 2 +- .../process/Compatible speed - 0.30mm.json | 2 +- .../process/Full performance - 0.10mm.json | 2 +- .../process/Full performance - 0.15mm.json | 2 +- .../process/Full performance - 0.20mm.json | 2 +- .../process/Full performance - 0.25mm.json | 2 +- .../process/Full performance - 0.30mm.json | 2 +- .../Full performance DUAL - 0.10mm.json | 2 +- .../Full performance DUAL - 0.15mm.json | 2 +- .../Full performance DUAL - 0.20mm.json | 2 +- .../Full performance DUAL - 0.25mm.json | 2 +- .../Full performance DUAL - 0.30mm.json | 2 +- .../Full performance VS30 - 0.10mm.json | 2 +- .../Full performance VS30 - 0.15mm.json | 2 +- .../Full performance VS30 - 0.20mm.json | 2 +- .../Full performance VS30 - 0.25mm.json | 2 +- .../Full performance VS30 - 0.30mm.json | 2 +- .../process/High performance - 0.10mm.json | 2 +- .../process/High performance - 0.15mm.json | 2 +- .../process/High performance - 0.20mm.json | 2 +- .../process/High performance - 0.25mm.json | 2 +- .../process/High performance - 0.30mm.json | 2 +- .../High performance DUAL - 0.10mm.json | 2 +- .../High performance DUAL - 0.15mm.json | 2 +- .../High performance DUAL - 0.20mm.json | 2 +- .../High performance DUAL - 0.25mm.json | 2 +- .../High performance DUAL - 0.30mm.json | 2 +- .../High performance VS30 - 0.10mm.json | 2 +- .../High performance VS30 - 0.15mm.json | 2 +- .../High performance VS30 - 0.20mm.json | 2 +- .../High performance VS30 - 0.25mm.json | 2 +- .../High performance VS30 - 0.30mm.json | 2 +- .../High speed (Stage 2) - 0.10mm.json | 2 +- .../High speed (Stage 2) - 0.15mm.json | 2 +- .../High speed (Stage 2) - 0.20mm.json | 2 +- .../High speed (Stage 2) - 0.25mm.json | 2 +- .../High speed (Stage 2) - 0.30mm.json | 2 +- .../Volumic/process/High speed - 0.10mm.json | 2 +- .../Volumic/process/High speed - 0.15mm.json | 2 +- .../Volumic/process/High speed - 0.20mm.json | 2 +- .../Volumic/process/High speed - 0.25mm.json | 2 +- .../Volumic/process/High speed - 0.30mm.json | 2 +- .../process/Normal performance - 0.10mm.json | 2 +- .../process/Normal performance - 0.15mm.json | 2 +- .../process/Normal performance - 0.20mm.json | 2 +- .../process/Normal performance - 0.25mm.json | 2 +- .../process/Normal performance - 0.30mm.json | 2 +- .../Normal performance DUAL - 0.10mm.json | 2 +- .../Normal performance DUAL - 0.15mm.json | 2 +- .../Normal performance DUAL - 0.20mm.json | 2 +- .../Normal performance DUAL - 0.25mm.json | 2 +- .../Normal performance DUAL - 0.30mm.json | 2 +- .../Normal performance VS30 - 0.10mm.json | 2 +- .../Normal performance VS30 - 0.15mm.json | 2 +- .../Normal performance VS30 - 0.20mm.json | 2 +- .../Normal performance VS30 - 0.25mm.json | 2 +- .../Normal performance VS30 - 0.30mm.json | 2 +- .../Normal speed (Stage 2) - 0.10mm.json | 2 +- .../Normal speed (Stage 2) - 0.15mm.json | 2 +- .../Normal speed (Stage 2) - 0.20mm.json | 2 +- .../Normal speed (Stage 2) - 0.25mm.json | 2 +- .../Normal speed (Stage 2) - 0.30mm.json | 2 +- .../process/Normal speed - 0.10mm.json | 2 +- .../process/Normal speed - 0.15mm.json | 2 +- .../process/Normal speed - 0.20mm.json | 2 +- .../process/Normal speed - 0.25mm.json | 2 +- .../process/Normal speed - 0.30mm.json | 2 +- .../Very high speed (Stage 2) - 0.10mm.json | 2 +- .../Very high speed (Stage 2) - 0.15mm.json | 2 +- .../Very high speed (Stage 2) - 0.20mm.json | 2 +- .../Very high speed (Stage 2) - 0.25mm.json | 2 +- .../Very high speed (Stage 2) - 0.30mm.json | 2 +- .../process/Very high speed - 0.10mm.json | 2 +- .../process/Very high speed - 0.15mm.json | 2 +- .../process/Very high speed - 0.20mm.json | 2 +- .../process/Very high speed - 0.25mm.json | 2 +- .../process/Very high speed - 0.30mm.json | 2 +- resources/profiles/Voron.json | 2 +- .../Voron/machine/Voron 0.1 0.15 nozzle.json | 2 +- .../Voron/machine/Voron 0.1 0.2 nozzle.json | 2 +- .../Voron/machine/Voron 0.1 0.25 nozzle.json | 2 +- .../Voron/machine/Voron 0.1 0.4 nozzle.json | 2 +- .../Voron/machine/Voron 0.1 0.5 nozzle.json | 2 +- .../Voron/machine/Voron 0.1 0.6 nozzle.json | 2 +- .../Voron/machine/Voron 0.1 0.8 nozzle.json | 2 +- .../Voron/machine/Voron 0.1 1.0 nozzle.json | 2 +- .../machine/Voron 2.4 250 0.15 nozzle.json | 2 +- .../machine/Voron 2.4 250 0.2 nozzle.json | 2 +- .../machine/Voron 2.4 250 0.25 nozzle.json | 2 +- .../machine/Voron 2.4 250 0.4 nozzle.json | 2 +- .../machine/Voron 2.4 250 0.5 nozzle.json | 2 +- .../machine/Voron 2.4 250 0.6 nozzle.json | 2 +- .../machine/Voron 2.4 250 0.8 nozzle.json | 2 +- .../machine/Voron 2.4 250 1.0 nozzle.json | 2 +- .../machine/Voron 2.4 300 0.15 nozzle.json | 2 +- .../machine/Voron 2.4 300 0.2 nozzle.json | 2 +- .../machine/Voron 2.4 300 0.25 nozzle.json | 2 +- .../machine/Voron 2.4 300 0.4 nozzle.json | 2 +- .../machine/Voron 2.4 300 0.5 nozzle.json | 2 +- .../machine/Voron 2.4 300 0.6 nozzle.json | 2 +- .../machine/Voron 2.4 300 0.8 nozzle.json | 2 +- .../machine/Voron 2.4 300 1.0 nozzle.json | 2 +- .../machine/Voron 2.4 350 0.15 nozzle.json | 2 +- .../machine/Voron 2.4 350 0.2 nozzle.json | 2 +- .../machine/Voron 2.4 350 0.25 nozzle.json | 2 +- .../machine/Voron 2.4 350 0.4 nozzle.json | 2 +- .../machine/Voron 2.4 350 0.5 nozzle.json | 2 +- .../machine/Voron 2.4 350 0.6 nozzle.json | 2 +- .../machine/Voron 2.4 350 0.8 nozzle.json | 2 +- .../machine/Voron 2.4 350 1.0 nozzle.json | 2 +- .../Voron Switchwire 250 0.15 nozzle.json | 2 +- .../Voron Switchwire 250 0.2 nozzle.json | 2 +- .../Voron Switchwire 250 0.25 nozzle.json | 2 +- .../Voron Switchwire 250 0.4 nozzle.json | 2 +- .../Voron Switchwire 250 0.5 nozzle.json | 2 +- .../Voron Switchwire 250 0.6 nozzle.json | 2 +- .../Voron Switchwire 250 0.8 nozzle.json | 2 +- .../Voron Switchwire 250 1.0 nozzle.json | 2 +- .../Voron Trident 250 0.15 nozzle.json | 2 +- .../machine/Voron Trident 250 0.2 nozzle.json | 2 +- .../Voron Trident 250 0.25 nozzle.json | 2 +- .../machine/Voron Trident 250 0.4 nozzle.json | 2 +- .../machine/Voron Trident 250 0.5 nozzle.json | 2 +- .../machine/Voron Trident 250 0.6 nozzle.json | 2 +- .../machine/Voron Trident 250 0.8 nozzle.json | 2 +- .../machine/Voron Trident 250 1.0 nozzle.json | 2 +- .../Voron Trident 300 0.15 nozzle.json | 2 +- .../machine/Voron Trident 300 0.2 nozzle.json | 2 +- .../Voron Trident 300 0.25 nozzle.json | 2 +- .../machine/Voron Trident 300 0.4 nozzle.json | 2 +- .../machine/Voron Trident 300 0.5 nozzle.json | 2 +- .../machine/Voron Trident 300 0.6 nozzle.json | 2 +- .../machine/Voron Trident 300 0.8 nozzle.json | 2 +- .../machine/Voron Trident 300 1.0 nozzle.json | 2 +- .../Voron Trident 350 0.15 nozzle.json | 2 +- .../machine/Voron Trident 350 0.2 nozzle.json | 2 +- .../Voron Trident 350 0.25 nozzle.json | 2 +- .../machine/Voron Trident 350 0.4 nozzle.json | 2 +- .../machine/Voron Trident 350 0.5 nozzle.json | 2 +- .../machine/Voron Trident 350 0.6 nozzle.json | 2 +- .../machine/Voron Trident 350 0.8 nozzle.json | 2 +- .../machine/Voron Trident 350 1.0 nozzle.json | 2 +- .../0.05mm Fine 0.15 nozzle @Voron.json | 2 +- .../0.06mm Fine 0.2 nozzle @Voron.json | 2 +- .../0.06mm Fine 0.25 nozzle @Voron.json | 2 +- .../0.07mm Optimal 0.15 nozzle @Voron.json | 2 +- .../process/0.08mm Extra Fine @Voron.json | 2 +- .../0.08mm Optimal 0.2 nozzle @Voron.json | 2 +- .../0.08mm Optimal 0.25 nozzle @Voron.json | 2 +- .../0.09mm Standard 0.15 nozzle @Voron.json | 2 +- .../0.10mm Extra Fine 0.5 nozzle @Voron.json | 2 +- .../0.10mm Standard 0.2 nozzle @Voron.json | 2 +- .../0.10mm Standard 0.25 nozzle @Voron.json | 2 +- .../0.12mm Draft 0.15 nozzle @Voron.json | 2 +- .../0.12mm Draft 0.2 nozzle @Voron.json | 2 +- .../0.12mm Draft 0.25 nozzle @Voron.json | 2 +- .../Voron/process/0.12mm Fine @Voron.json | 2 +- .../0.14mm Extra Draft 0.2 nozzle @Voron.json | 2 +- ...0.14mm Extra Draft 0.25 nozzle @Voron.json | 2 +- .../0.15mm Fine 0.5 nozzle @Voron.json | 2 +- .../Voron/process/0.15mm Optimal @Voron.json | 2 +- .../0.18mm Fine 0.6 nozzle @Voron.json | 2 +- .../0.20mm Optimal 0.5 nozzle @Voron.json | 2 +- .../Voron/process/0.20mm Standard @Voron.json | 2 +- .../Voron/process/0.24mm Draft @Voron.json | 2 +- .../0.24mm Fine 0.8 nozzle @Voron.json | 2 +- .../0.24mm Optimal 0.6 nozzle @Voron.json | 2 +- .../0.25mm Standard 0.5 nozzle @Voron.json | 2 +- .../process/0.28mm Extra Draft @Voron.json | 2 +- .../0.30mm Draft 0.5 nozzle @Voron.json | 2 +- .../0.30mm Fine 1.0 nozzle @Voron.json | 2 +- .../0.30mm Standard 0.6 nozzle @Voron.json | 2 +- .../0.32mm Optimal 0.6 nozzle @Voron.json | 2 +- .../0.35mm Extra Draft 0.5 nozzle @Voron.json | 2 +- .../0.36mm Draft 0.6 nozzle @Voron.json | 2 +- .../0.40mm Standard 0.8 nozzle @Voron.json | 2 +- .../0.42mm Extra Draft 0.6 nozzle @Voron.json | 2 +- .../0.48mm Draft 0.8 nozzle @Voron.json | 2 +- .../0.50mm Standard 1.0 nozzle @Voron.json | 2 +- .../0.56mm Extra Draft 0.8 nozzle @Voron.json | 2 +- .../0.60mm Draft 1.0 nozzle @Voron.json | 2 +- .../0.80mm Extra Draft 1.0 nozzle @Voron.json | 2 +- resources/profiles/Voxelab.json | 2 +- .../machine/Voxelab Aquila X2 0.4 nozzle.json | 2 +- .../0.16mm Optimal @Voxelab AquilaX2.json | 2 +- .../0.20mm Standard @Voxelab AquilaX2.json | 2 +- resources/profiles/Vzbot.json | 2 +- .../Vzbot/filament/Vzbot Generic ABS.json | 2 +- .../Vzbot/filament/Vzbot Generic ASA.json | 2 +- .../Vzbot/filament/Vzbot Generic PA-CF.json | 2 +- .../Vzbot/filament/Vzbot Generic PA.json | 2 +- .../Vzbot/filament/Vzbot Generic PC.json | 2 +- .../Vzbot/filament/Vzbot Generic PETG.json | 2 +- .../Vzbot/filament/Vzbot Generic PLA-CF.json | 2 +- .../Vzbot/filament/Vzbot Generic PLA.json | 2 +- .../Vzbot/filament/Vzbot Generic PVA.json | 2 +- .../Vzbot/filament/Vzbot Generic TPU.json | 2 +- .../machine/Vzbot 235 AWD 0.4 nozzle.json | 2 +- .../machine/Vzbot 235 AWD 0.5 nozzle.json | 2 +- .../machine/Vzbot 235 AWD 0.6 nozzle.json | 2 +- .../machine/Vzbot 330 AWD 0.4 nozzle.json | 2 +- .../machine/Vzbot 330 AWD 0.5 nozzle.json | 2 +- .../machine/Vzbot 330 AWD 0.6 nozzle.json | 2 +- .../process/0.08mm Extra Fine @Vzbot.json | 2 +- .../0.08mm Extra Fine @Vzbot_0.5_nozzle.json | 2 +- .../0.08mm Extra Fine @Vzbot_0.6_nozzle.json | 2 +- .../Vzbot/process/0.12mm Fine @Vzbot.json | 2 +- .../0.12mm Fine @Vzbot_0.5_nozzle.json | 2 +- .../0.12mm Fine @Vzbot_0.6_nozzle.json | 2 +- .../Vzbot/process/0.15mm Optimal @Vzbot.json | 2 +- .../0.15mm Optimal @Vzbot_0.5_nozzle.json | 2 +- .../0.15mm Optimal @Vzbot_0.6_nozzle.json | 2 +- .../Vzbot/process/0.20mm Standard @Vzbot.json | 2 +- .../0.20mm Standard @Vzbot_0.5_nozzle.json | 2 +- .../0.20mm Standard @Vzbot_0.6_nozzle.json | 2 +- .../Vzbot/process/0.24mm Draft @Vzbot.json | 2 +- .../0.24mm Draft @Vzbot_0.5_nozzle.json | 2 +- .../0.24mm Draft @Vzbot_0.6_nozzle.json | 2 +- .../process/0.28mm Extra Draft @Vzbot.json | 2 +- .../0.28mm Extra Draft @Vzbot_0.5_nozzle.json | 2 +- .../0.28mm Extra Draft @Vzbot_0.6_nozzle.json | 2 +- resources/profiles/WEMAKE3D.json | 4 +- .../WEMAKE3D PhoenixProV1 0.2mm nozzle.json | 2 +- .../WEMAKE3D PhoenixProV1 0.3mm nozzle.json | 2 +- .../WEMAKE3D PhoenixProV1 0.4mm nozzle.json | 2 +- .../WEMAKE3D PhoenixProV1 0.6mm nozzle.json | 2 +- .../WEMAKE3D TinyBotV1 0.2mm nozzle.json | 2 +- .../WEMAKE3D TinyBotV1 0.3mm nozzle.json | 2 +- .../WEMAKE3D TinyBotV1 0.4mm nozzle.json | 2 +- .../WEMAKE3D TinyBotV1 0.6mm nozzle.json | 2 +- ...e @WEMAKE3D PhoenixProV1 0.3mm nozzle.json | 1 + ...Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json | 1 + ...e @WEMAKE3D PhoenixProV1 0.3mm nozzle.json | 1 + ...Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json | 1 + ...e @WEMAKE3D PhoenixProV1 0.3mm nozzle.json | 40 --- ...Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json | 40 --- ...e @WEMAKE3D PhoenixProV1 0.2mm nozzle.json | 1 + ...Fine @WEMAKE3D TinyBotV1 0.2mm nozzle.json | 1 + ...e @WEMAKE3D PhoenixProV1 0.4mm nozzle.json | 1 + ...e @WEMAKE3D PhoenixProV1 0.6mm nozzle.json | 1 + ...Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json | 1 + ...Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json | 1 + ...e @WEMAKE3D PhoenixProV1 0.3mm nozzle.json | 1 + ...Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json | 1 + ...t @WEMAKE3D PhoenixProV1 0.2mm nozzle.json | 1 + ...raft @WEMAKE3D TinyBotV1 0.2mm nozzle.json | 1 + ...d @WEMAKE3D PhoenixProV1 0.3mm nozzle.json | 1 + ...dard @WEMAKE3D TinyBotV1 0.3mm nozzle.json | 1 + ...t @WEMAKE3D PhoenixProV1 0.2mm nozzle.json | 1 + ...raft @WEMAKE3D TinyBotV1 0.2mm nozzle.json | 1 + ...e @WEMAKE3D PhoenixProV1 0.4mm nozzle.json | 1 + ...Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json | 1 + ...e @WEMAKE3D PhoenixProV1 0.3mm nozzle.json | 1 + ...Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json | 1 + ...t @WEMAKE3D PhoenixProV1 0.3mm nozzle.json | 1 + ...raft @WEMAKE3D TinyBotV1 0.3mm nozzle.json | 1 + ...t @WEMAKE3D PhoenixProV1 0.3mm nozzle.json | 1 + ...raft @WEMAKE3D TinyBotV1 0.3mm nozzle.json | 1 + ...e @WEMAKE3D PhoenixProV1 0.6mm nozzle.json | 1 + ...Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json | 1 + ...d @WEMAKE3D PhoenixProV1 0.4mm nozzle.json | 1 + ...dard @WEMAKE3D TinyBotV1 0.4mm nozzle.json | 1 + ...t @WEMAKE3D PhoenixProV1 0.4mm nozzle.json | 1 + ...raft @WEMAKE3D TinyBotV1 0.4mm nozzle.json | 1 + ...t @WEMAKE3D PhoenixProV1 0.4mm nozzle.json | 1 + ...raft @WEMAKE3D TinyBotV1 0.4mm nozzle.json | 1 + ...t @WEMAKE3D PhoenixProV1 0.6mm nozzle.json | 1 + ...raft @WEMAKE3D TinyBotV1 0.6mm nozzle.json | 1 + ...t @WEMAKE3D PhoenixProV1 0.6mm nozzle.json | 1 + ...raft @WEMAKE3D TinyBotV1 0.6mm nozzle.json | 1 + resources/profiles/Wanhao France.json | 2 +- .../Wanhao France/filament/YUMI PETG.json | 2 +- .../filament/YUMI PLA Bowden.json | 2 +- .../filament/YUMI PLA Direct Drive.json | 2 +- .../filament/Yumi Generic PETG.json | 1 - .../filament/Yumi Generic PLA.json | 1 - .../D12 230 PRO M2 DIRECT 0.4 nozzle.json | 2 +- ... PRO M2 MONO DUAL 0.4 nozzle PoopTool.json | 2 +- .../D12 230 PRO M2 MONO DUAL 0.4 nozzle.json | 2 +- ...12 230 PRO SMARTPAD DIRECT 0.4 nozzle.json | 2 +- ...MARTPAD MONO DUAL 0.4 nozzle PoopTool.json | 2 +- ...230 PRO SMARTPAD MONO DUAL 0.4 nozzle.json | 2 +- .../D12 300 PRO M2 DIRECT 0.4 nozzle.json | 2 +- .../D12 300 PRO M2 MONO DUAL 0.4 nozzle.json | 2 +- ... PRO M2 MONO DUAL PoopTool 0.4 nozzle.json | 2 +- ...12 300 PRO SMARTPAD DIRECT 0.4 nozzle.json | 2 +- ...300 PRO SMARTPAD MONO DUAL 0.4 nozzle.json | 2 +- ...MARTPAD MONO DUAL PoopTool 0.4 nozzle.json | 2 +- .../D12 500 PRO M2 DIRECT 0.4 nozzle.json | 2 +- .../D12 500 PRO M2 MONO DUAL 0.4 nozzle.json | 2 +- ... PRO M2 MONO DUAL PoopTool 0.4 nozzle.json | 2 +- ...12 500 PRO SMARTPAD DIRECT 0.4 nozzle.json | 2 +- ...500 PRO SMARTPAD MONO DUAL 0.4 nozzle.json | 2 +- ...MARTPAD MONO DUAL PoopTool 0.4 nozzle.json | 2 +- .../0.10mm Standard @Wanhao-D12-230.json | 2 +- .../0.10mm Standard @Wanhao-D12-300.json | 2 +- .../0.10mm Standard @Wanhao-D12-500.json | 2 +- .../0.15mm Standard @Wanhao-D12-230.json | 2 +- .../0.15mm Standard @Wanhao-D12-300.json | 2 +- .../0.15mm Standard @Wanhao-D12-500.json | 2 +- ...0mm Standard @Wanhao-D12-230 PoopTool.json | 2 +- .../0.20mm Standard @Wanhao-D12-230.json | 2 +- ...0mm Standard @Wanhao-D12-300 PoopTool.json | 2 +- .../0.20mm Standard @Wanhao-D12-300.json | 2 +- ...0mm Standard @Wanhao-D12-500 PoopTool.json | 2 +- .../0.20mm Standard @Wanhao-D12-500.json | 2 +- .../0.24mm Standard @Wanhao-D12-230.json | 2 +- .../0.24mm Standard @Wanhao-D12-300.json | 2 +- .../0.24mm Standard @Wanhao-D12-500.json | 2 +- resources/profiles/Wanhao.json | 2 +- .../machine/Wanhao D12-300 0.4 nozzle.json | 2 +- .../process/0.12mm Fine @Wanhao D12-300.json | 2 +- .../0.15mm Optimal @Wanhao D12-300.json | 2 +- .../0.20mm Standard @Wanhao D12-300.json | 2 +- .../process/0.24mm Draft @Wanhao D12-300.json | 2 +- resources/profiles/WonderMaker.json | 2 +- ...nderMaker ABS @WonderMaker ZR Ultra S.json | 2 +- .../WonderMaker/filament/WonderMaker ABS.json | 1 + ...nderMaker ASA @WonderMaker ZR Ultra S.json | 2 +- .../WonderMaker/filament/WonderMaker ASA.json | 1 + ...rMaker PET-CF @WonderMaker ZR Ultra S.json | 2 +- .../filament/WonderMaker PET-CF.json | 1 + .../filament/WonderMaker PETG Basic.json | 1 + .../filament/WonderMaker PLA Basic.json | 1 + .../filament/WonderMaker PLA Marble.json | 1 + .../filament/WonderMaker PLA Matte.json | 1 + .../filament/WonderMaker PLA Metal.json | 1 + .../filament/WonderMaker PLA Silk.json | 1 + .../filament/WonderMaker PLA Wood.json | 1 + .../WonderMaker/filament/WonderMaker PVA.json | 1 + .../filament/WonderMaker TPU 95A.json | 1 + .../machine/WonderMaker ZR 0.2 nozzle.json | 2 +- .../machine/WonderMaker ZR 0.4 nozzle.json | 2 +- .../machine/WonderMaker ZR 0.6 nozzle.json | 2 +- .../machine/WonderMaker ZR 0.8 nozzle.json | 2 +- .../WonderMaker ZR Ultra 0.2 nozzle.json | 2 +- .../WonderMaker ZR Ultra 0.4 nozzle.json | 2 +- .../WonderMaker ZR Ultra 0.6 nozzle.json | 2 +- .../WonderMaker ZR Ultra 0.8 nozzle.json | 2 +- .../WonderMaker ZR Ultra S 0.2 nozzle.json | 2 +- .../WonderMaker ZR Ultra S 0.4 nozzle.json | 2 +- .../WonderMaker ZR Ultra S 0.6 nozzle.json | 2 +- .../WonderMaker ZR Ultra S 0.8 nozzle.json | 2 +- ....06mm Fine @WonderMaker ZR 0.2 nozzle.json | 2 +- ...Fine @WonderMaker ZR Ultra 0.2 nozzle.json | 2 +- ...08mm Extra Fine @WonderMaker ZR Ultra.json | 2 +- .../0.08mm Extra Fine @WonderMaker ZR.json | 2 +- ...mm Optimal @WonderMaker ZR 0.2 nozzle.json | 2 +- ...imal @WonderMaker ZR Ultra 0.2 nozzle.json | 2 +- ...m Standard @WonderMaker ZR 0.2 nozzle.json | 2 +- ...dard @WonderMaker ZR Ultra 0.2 nozzle.json | 2 +- ...12mm Draft @WonderMaker ZR 0.2 nozzle.json | 2 +- ...raft @WonderMaker ZR Ultra 0.2 nozzle.json | 2 +- .../0.12mm Fine @WonderMaker ZR Ultra.json | 2 +- .../process/0.12mm Fine @WonderMaker ZR.json | 2 +- ...xtra Draft @WonderMaker ZR 0.2 nozzle.json | 2 +- ...raft @WonderMaker ZR Ultra 0.2 nozzle.json | 2 +- .../0.16mm Optimal @WonderMaker ZR Ultra.json | 2 +- .../0.16mm Optimal @WonderMaker ZR.json | 2 +- ....18mm Fine @WonderMaker ZR 0.6 nozzle.json | 2 +- ...Fine @WonderMaker ZR Ultra 0.6 nozzle.json | 2 +- ...0.20mm Standard @WonderMaker ZR Ultra.json | 2 +- .../0.20mm Standard @WonderMaker ZR.json | 2 +- .../0.24mm Draft @WonderMaker ZR Ultra.json | 2 +- .../process/0.24mm Draft @WonderMaker ZR.json | 2 +- ....24mm Fine @WonderMaker ZR 0.8 nozzle.json | 2 +- ...Fine @WonderMaker ZR Ultra 0.8 nozzle.json | 2 +- ...mm Optimal @WonderMaker ZR 0.6 nozzle.json | 2 +- ...imal @WonderMaker ZR Ultra 0.6 nozzle.json | 2 +- ...8mm Extra Draft @WonderMaker ZR Ultra.json | 2 +- .../0.28mm Extra Draft @WonderMaker ZR.json | 2 +- ...m Standard @WonderMaker ZR 0.6 nozzle.json | 2 +- ...dard @WonderMaker ZR Ultra 0.6 nozzle.json | 2 +- ...mm Optimal @WonderMaker ZR 0.8 nozzle.json | 2 +- ...imal @WonderMaker ZR Ultra 0.8 nozzle.json | 2 +- ...36mm Draft @WonderMaker ZR 0.6 nozzle.json | 2 +- ...raft @WonderMaker ZR Ultra 0.6 nozzle.json | 2 +- ...m Standard @WonderMaker ZR 0.8 nozzle.json | 2 +- ...dard @WonderMaker ZR Ultra 0.8 nozzle.json | 2 +- ...xtra Draft @WonderMaker ZR 0.6 nozzle.json | 2 +- ...raft @WonderMaker ZR Ultra 0.6 nozzle.json | 2 +- ...48mm Draft @WonderMaker ZR 0.8 nozzle.json | 2 +- ...raft @WonderMaker ZR Ultra 0.8 nozzle.json | 2 +- ...xtra Draft @WonderMaker ZR 0.8 nozzle.json | 2 +- ...raft @WonderMaker ZR Ultra 0.8 nozzle.json | 2 +- resources/profiles/Z-Bolt.json | 2 +- .../Generic ABS @Z-Bolt 0.4 nozzle.json | 2 +- .../Generic ABS @Z-Bolt 0.6 nozzle.json | 2 +- .../Generic ABS @Z-Bolt 0.8 nozzle.json | 2 +- .../filament/Generic ABS @Z-Bolt Base.json | 1 - .../Generic ABS HT @Z-Bolt 0.4 nozzle.json | 2 +- .../Generic ABS HT @Z-Bolt 0.6 nozzle.json | 2 +- .../Generic ABS HT @Z-Bolt 0.8 nozzle.json | 2 +- .../filament/Generic ABS HT @Z-Bolt Base.json | 1 - .../Generic PA @Z-Bolt 0.4 nozzle.json | 2 +- .../Generic PA @Z-Bolt 0.6 nozzle.json | 2 +- .../Generic PA @Z-Bolt 0.8 nozzle.json | 2 +- .../filament/Generic PA @Z-Bolt Base.json | 1 - .../Generic PETG @Z-Bolt 0.4 nozzle.json | 2 +- .../Generic PETG @Z-Bolt 0.6 nozzle.json | 2 +- .../Generic PETG @Z-Bolt 0.8 nozzle.json | 2 +- .../filament/Generic PETG @Z-Bolt Base.json | 1 - .../Generic PLA @Z-Bolt 0.4 nozzle.json | 2 +- .../Generic PLA @Z-Bolt 0.6 nozzle.json | 2 +- .../Generic PLA @Z-Bolt 0.8 nozzle.json | 2 +- .../filament/Generic PLA @Z-Bolt Base.json | 1 - .../machine/Z-Bolt S1000 0.4 nozzle.json | 2 +- .../machine/Z-Bolt S1000 0.6 nozzle.json | 2 +- .../machine/Z-Bolt S1000 0.8 nozzle.json | 2 +- .../machine/Z-Bolt S1000 Dual 0.4 nozzle.json | 2 +- .../machine/Z-Bolt S1000 Dual 0.6 nozzle.json | 2 +- .../machine/Z-Bolt S1000 Dual 0.8 nozzle.json | 2 +- .../machine/Z-Bolt S300 0.4 nozzle.json | 2 +- .../machine/Z-Bolt S300 0.6 nozzle.json | 2 +- .../machine/Z-Bolt S300 0.8 nozzle.json | 2 +- .../machine/Z-Bolt S300 Dual 0.4 nozzle.json | 2 +- .../machine/Z-Bolt S300 Dual 0.6 nozzle.json | 2 +- .../machine/Z-Bolt S300 Dual 0.8 nozzle.json | 2 +- .../machine/Z-Bolt S400 0.4 nozzle.json | 2 +- .../machine/Z-Bolt S400 0.6 nozzle.json | 2 +- .../machine/Z-Bolt S400 0.8 nozzle.json | 2 +- .../machine/Z-Bolt S400 Dual 0.4 nozzle.json | 2 +- .../machine/Z-Bolt S400 Dual 0.6 nozzle.json | 2 +- .../machine/Z-Bolt S400 Dual 0.8 nozzle.json | 2 +- .../machine/Z-Bolt S600 0.4 nozzle.json | 2 +- .../machine/Z-Bolt S600 0.6 nozzle.json | 2 +- .../machine/Z-Bolt S600 0.8 nozzle.json | 2 +- .../machine/Z-Bolt S600 Dual 0.4 nozzle.json | 2 +- .../machine/Z-Bolt S600 Dual 0.6 nozzle.json | 2 +- .../machine/Z-Bolt S600 Dual 0.8 nozzle.json | 2 +- .../machine/Z-Bolt S800 Dual 0.4 nozzle.json | 2 +- .../machine/Z-Bolt S800 Dual 0.6 nozzle.json | 2 +- .../machine/Z-Bolt S800 Dual 0.8 nozzle.json | 2 +- .../0.08mm Extra Fine @Z-Bolt 0.4 nozzle.json | 2 +- ....08mm High Quality @Z-Bolt 0.4 nozzle.json | 2 +- .../0.12mm Fine @Z-Bolt 0.4 nozzle.json | 2 +- ....12mm High Quality @Z-Bolt 0.4 nozzle.json | 2 +- ....16mm High Quality @Z-Bolt 0.4 nozzle.json | 2 +- ....16mm High Quality @Z-Bolt 0.6 nozzle.json | 2 +- .../0.16mm Optimal @Z-Bolt 0.4 nozzle.json | 2 +- .../0.16mm Standard @Z-Bolt 0.6 nozzle.json | 2 +- ...16mm Standard @Z-Bolt S300 0.6 nozzle.json | 2 +- ...16mm Standard @Z-Bolt S400 0.6 nozzle.json | 2 +- ...16mm Standard @Z-Bolt S600 0.6 nozzle.json | 2 +- ...16mm Standard @Z-Bolt S800 0.6 nozzle.json | 2 +- ....20mm High Quality @Z-Bolt 0.6 nozzle.json | 2 +- .../0.20mm Standard @Z-Bolt 0.4 nozzle.json | 2 +- .../0.20mm Standard @Z-Bolt 0.6 nozzle.json | 2 +- ...20mm Standard @Z-Bolt S300 0.6 nozzle.json | 2 +- ...20mm Standard @Z-Bolt S400 0.6 nozzle.json | 2 +- ...20mm Standard @Z-Bolt S600 0.6 nozzle.json | 2 +- ...20mm Standard @Z-Bolt S800 0.6 nozzle.json | 2 +- .../0.20mm Strength @Z-Bolt 0.4 nozzle.json | 2 +- .../0.24mm Draft @Z-Bolt 0.4 nozzle.json | 2 +- .../0.24mm Standard @Z-Bolt 0.6 nozzle.json | 2 +- .../0.24mm Standard @Z-Bolt 0.8 nozzle.json | 2 +- ...24mm Standard @Z-Bolt S300 0.6 nozzle.json | 2 +- ...24mm Standard @Z-Bolt S300 0.8 nozzle.json | 2 +- ...24mm Standard @Z-Bolt S400 0.6 nozzle.json | 2 +- ...24mm Standard @Z-Bolt S400 0.8 nozzle.json | 2 +- ...24mm Standard @Z-Bolt S600 0.6 nozzle.json | 2 +- ...24mm Standard @Z-Bolt S600 0.8 nozzle.json | 2 +- ...24mm Standard @Z-Bolt S800 0.6 nozzle.json | 2 +- ...24mm Standard @Z-Bolt S800 0.8 nozzle.json | 2 +- ...0.28mm Extra Draft @Z-Bolt 0.4 nozzle.json | 2 +- .../0.30mm Standard @Z-Bolt 0.6 nozzle.json | 2 +- ...30mm Standard @Z-Bolt S300 0.6 nozzle.json | 2 +- ...30mm Standard @Z-Bolt S400 0.6 nozzle.json | 2 +- ...30mm Standard @Z-Bolt S600 0.6 nozzle.json | 2 +- ...30mm Standard @Z-Bolt S800 0.6 nozzle.json | 2 +- .../0.30mm Strength @Z-Bolt 0.6 nozzle.json | 2 +- ...30mm Strength @Z-Bolt S300 0.6 nozzle.json | 2 +- ...30mm Strength @Z-Bolt S400 0.6 nozzle.json | 2 +- ...30mm Strength @Z-Bolt S600 0.6 nozzle.json | 2 +- ...30mm Strength @Z-Bolt S800 0.6 nozzle.json | 2 +- .../0.32mm Standard @Z-Bolt 0.8 nozzle.json | 2 +- ...32mm Standard @Z-Bolt S300 0.8 nozzle.json | 2 +- ...32mm Standard @Z-Bolt S400 0.8 nozzle.json | 2 +- ...32mm Standard @Z-Bolt S600 0.8 nozzle.json | 2 +- ...32mm Standard @Z-Bolt S800 0.8 nozzle.json | 2 +- .../0.36mm Standard @Z-Bolt 0.6 nozzle.json | 2 +- ...36mm Standard @Z-Bolt S300 0.6 nozzle.json | 2 +- ...36mm Standard @Z-Bolt S400 0.6 nozzle.json | 2 +- ...36mm Standard @Z-Bolt S600 0.6 nozzle.json | 2 +- ...36mm Standard @Z-Bolt S800 0.6 nozzle.json | 2 +- .../0.40mm Standard @Z-Bolt 0.8 nozzle.json | 2 +- ...40mm Standard @Z-Bolt S300 0.8 nozzle.json | 2 +- ...40mm Standard @Z-Bolt S400 0.8 nozzle.json | 2 +- ...40mm Standard @Z-Bolt S600 0.8 nozzle.json | 2 +- ...40mm Standard @Z-Bolt S800 0.8 nozzle.json | 2 +- .../0.42mm Standard @Z-Bolt 0.6 nozzle.json | 2 +- ...42mm Standard @Z-Bolt S300 0.6 nozzle.json | 2 +- ...42mm Standard @Z-Bolt S400 0.6 nozzle.json | 2 +- ...42mm Standard @Z-Bolt S600 0.6 nozzle.json | 2 +- ...42mm Standard @Z-Bolt S800 0.6 nozzle.json | 2 +- .../0.48mm Standard @Z-Bolt 0.8 nozzle.json | 2 +- ...48mm Standard @Z-Bolt S300 0.8 nozzle.json | 2 +- ...48mm Standard @Z-Bolt S400 0.8 nozzle.json | 2 +- ...48mm Standard @Z-Bolt S600 0.8 nozzle.json | 2 +- ...48mm Standard @Z-Bolt S800 0.8 nozzle.json | 2 +- resources/profiles/iQ.json | 2 +- ...three PACF Pro P1 @iQ TiQ2 0.4 Nozzle.json | 2 +- ...three PACF Pro P2 @iQ TiQ2 0.4 Nozzle.json | 2 +- ...rauts HPP4GF25 P1 @iQ TiQ2 0.4 Nozzle.json | 2 +- ...rint ABS Natur P1 @iQ TiQ8 0.4 Nozzle.json | 2 +- ... Polymax black P1 @iQ TiQ2 0.4 Nozzle.json | 2 +- .../VXL90 TiQ2 P2 @iQ TiQ2 0.4 Nozzle.json | 2 +- .../iQ/machine/iQ TiQ2 0.25 nozzle.json | 1 + .../iQ/machine/iQ TiQ2 0.4 nozzle.json | 1 + .../iQ/machine/iQ TiQ2 0.6 nozzle.json | 1 + .../iQ/machine/iQ TiQ2 0.8 nozzle.json | 1 + .../iQ/machine/iQ TiQ8 0.25 nozzle.json | 1 + .../iQ/machine/iQ TiQ8 0.4 nozzle.json | 1 + .../iQ/machine/iQ TiQ8 0.6 nozzle.json | 1 + .../iQ/machine/iQ TiQ8 0.8 nozzle.json | 1 + ...iQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json | 1 + ...P1 - PACF Pro Fiberthree (0.4 Nozzle).json | 1 + ...- PETG Polymax Polymaker (0.4 Nozzle).json | 1 + ...berthree + VXL90 Xioneer (0.4 Nozzle).json | 1 + ...ABS Natur Material4Print (0.4 Nozzle).json | 1 + resources/profiles/re3D.json | 2 +- .../re3D Greengate rPETG @0.8 nozzle.json | 2 +- .../re3D Greengate rPETG @1.75 nozzle.json | 2 +- .../re3D/filament/re3D Greengate rPETG.json | 2 +- .../re3D/filament/re3D PC @0.4 nozzle.json | 2 +- .../re3D/filament/re3D PC @0.8 nozzle.json | 2 +- resources/profiles/re3D/filament/re3D PC.json | 2 +- .../re3D/filament/re3D PETG @0.4 nozzle.json | 2 +- .../re3D/filament/re3D PETG @0.8 nozzle.json | 2 +- .../profiles/re3D/filament/re3D PETG.json | 2 +- .../re3D/filament/re3D PLA @0.4 nozzle.json | 2 +- .../re3D/filament/re3D PLA @0.8 nozzle.json | 2 +- .../profiles/re3D/filament/re3D PLA.json | 2 +- .../re3D/filament/re3D rPP @0.8 nozzle.json | 2 +- .../re3D/filament/re3D rPP @1.75 nozzle.json | 2 +- .../profiles/re3D/filament/re3D rPP.json | 2 +- .../machine/re3D Gigabot 4 0.4 nozzle.json | 2 +- .../machine/re3D Gigabot 4 0.8 nozzle.json | 2 +- .../re3D Gigabot 4 XLT 0.4 nozzle.json | 2 +- .../re3D Gigabot 4 XLT 0.8 nozzle.json | 2 +- .../machine/re3D GigabotX 2 0.8 nozzle.json | 2 +- .../machine/re3D GigabotX 2 1.75 nozzle.json | 2 +- .../re3D GigabotX 2 XLT 0.8 nozzle.json | 2 +- .../re3D GigabotX 2 XLT 1.75 nozzle.json | 2 +- .../machine/re3D Terabot 4 0.4 nozzle.json | 2 +- .../machine/re3D Terabot 4 0.8 nozzle.json | 2 +- .../machine/re3D TerabotX 2 0.8 nozzle.json | 2 +- .../machine/re3D TerabotX 2 1.75 nozzle.json | 2 +- .../0.26mm Standard @re3D fdm 0.4.json | 2 +- .../process/0.2mm Fine @re3D fdm 0.4.json | 2 +- .../process/0.32mm Draft @re3D fdm 0.4.json | 2 +- .../process/0.3mm Fine @re3D fdm 0.8.json | 2 +- .../process/0.4mm Draft @re3D fdm 0.8.json | 2 +- .../process/0.6mm Standard @re3D fgf 0.8.json | 2 +- .../1.0mm Standard @re3D fgf 1.75.json | 2 +- scripts/assign_vendor_setting_ids.py | 258 ++++++++++++++++++ scripts/orca_extra_profile_check.py | 101 +++++++ src/libslic3r/Preset.cpp | 51 +++- src/libslic3r/Preset.hpp | 10 + src/libslic3r/PresetBundle.cpp | 7 + tests/libslic3r/CMakeLists.txt | 1 + tests/libslic3r/test_preset_setting_id.cpp | 41 +++ 7876 files changed, 8152 insertions(+), 6541 deletions(-) delete mode 100644 resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX UNFILLED @System.json delete mode 100644 resources/profiles/Prusa/process/0.15mm Speed @MK3S 0.4.json delete mode 100644 resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json delete mode 100644 resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D TinyBotV1 0.3mm nozzle.json create mode 100644 scripts/assign_vendor_setting_ids.py create mode 100644 tests/libslic3r/test_preset_setting_id.cpp diff --git a/.gitignore b/.gitignore index 8007f0a05ca..916c7207b7d 100644 --- a/.gitignore +++ b/.gitignore @@ -45,4 +45,7 @@ test.js .clangd internal_docs/ *.flatpak -/flatpak-repo/ \ No newline at end of file +/flatpak-repo/ +# Python bytecode +__pycache__/ +*.pyc diff --git a/resources/profiles/Afinia.json b/resources/profiles/Afinia.json index e6841953015..1ffbbcdb616 100644 --- a/resources/profiles/Afinia.json +++ b/resources/profiles/Afinia.json @@ -1,6 +1,6 @@ { "name": "Afinia", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Afinia configurations", "machine_model_list": [ diff --git a/resources/profiles/Afinia/filament/Afinia ABS+.json b/resources/profiles/Afinia/filament/Afinia ABS+.json index 1f64df4ffe0..74308bad42a 100644 --- a/resources/profiles/Afinia/filament/Afinia ABS+.json +++ b/resources/profiles/Afinia/filament/Afinia ABS+.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00", - "setting_id": "GFSB00", + "setting_id": "i5tf9foHnTVNmA2r", "name": "Afinia ABS+", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia ABS+@HS.json b/resources/profiles/Afinia/filament/Afinia ABS+@HS.json index 5c84c3456ea..79a5b294b92 100644 --- a/resources/profiles/Afinia/filament/Afinia ABS+@HS.json +++ b/resources/profiles/Afinia/filament/Afinia ABS+@HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00_01", - "setting_id": "GFSB00", + "setting_id": "wAJTMxtCY7EoavRi", "name": "Afinia ABS+@HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia ABS.json b/resources/profiles/Afinia/filament/Afinia ABS.json index 650ae97fa5a..d51254c1b93 100644 --- a/resources/profiles/Afinia/filament/Afinia ABS.json +++ b/resources/profiles/Afinia/filament/Afinia ABS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00", - "setting_id": "GFSB00", + "setting_id": "LhDHvMepbh8ecfQT", "name": "Afinia ABS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia ABS@HS.json b/resources/profiles/Afinia/filament/Afinia ABS@HS.json index b7dfb114b18..90c4f9610a4 100644 --- a/resources/profiles/Afinia/filament/Afinia ABS@HS.json +++ b/resources/profiles/Afinia/filament/Afinia ABS@HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00_01", - "setting_id": "GFSB00", + "setting_id": "qCDnb2iBaz4hd4vX", "name": "Afinia ABS@HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia PLA.json b/resources/profiles/Afinia/filament/Afinia PLA.json index ef830ee2ea0..c04d368e42e 100644 --- a/resources/profiles/Afinia/filament/Afinia PLA.json +++ b/resources/profiles/Afinia/filament/Afinia PLA.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFA00", - "setting_id": "GFSA00", + "setting_id": "1qEFsay7kjYIUkpG", "name": "Afinia PLA", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia PLA@HS.json b/resources/profiles/Afinia/filament/Afinia PLA@HS.json index 59f4f3eb77d..6f37a09ac30 100644 --- a/resources/profiles/Afinia/filament/Afinia PLA@HS.json +++ b/resources/profiles/Afinia/filament/Afinia PLA@HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFA00_01", - "setting_id": "GFSA00", + "setting_id": "N3sCgjdjvp6FTtw9", "name": "Afinia PLA@HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia TPU.json b/resources/profiles/Afinia/filament/Afinia TPU.json index 57f76ff5096..d4310612b34 100644 --- a/resources/profiles/Afinia/filament/Afinia TPU.json +++ b/resources/profiles/Afinia/filament/Afinia TPU.json @@ -3,6 +3,7 @@ "name": "Afinia TPU", "inherits": "fdm_filament_tpu", "from": "system", + "setting_id": "E7WBTARZ971LaDMj", "filament_id": "GFU01", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Afinia/filament/Afinia TPU@HS.json b/resources/profiles/Afinia/filament/Afinia TPU@HS.json index a56e9310032..c2590ff9efa 100644 --- a/resources/profiles/Afinia/filament/Afinia TPU@HS.json +++ b/resources/profiles/Afinia/filament/Afinia TPU@HS.json @@ -3,6 +3,7 @@ "name": "Afinia TPU@HS", "inherits": "fdm_filament_tpu", "from": "system", + "setting_id": "zUqTgAEbqTN1EdRl", "filament_id": "GFU01_01", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Afinia/filament/Afinia Value ABS.json b/resources/profiles/Afinia/filament/Afinia Value ABS.json index 0c553c3f583..0036bea580c 100644 --- a/resources/profiles/Afinia/filament/Afinia Value ABS.json +++ b/resources/profiles/Afinia/filament/Afinia Value ABS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00", - "setting_id": "GFSB00", + "setting_id": "jEYVpOPBjFtQ0DXn", "name": "Afinia Value ABS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia Value ABS@HS.json b/resources/profiles/Afinia/filament/Afinia Value ABS@HS.json index 7a262c76213..79b0ea9db3f 100644 --- a/resources/profiles/Afinia/filament/Afinia Value ABS@HS.json +++ b/resources/profiles/Afinia/filament/Afinia Value ABS@HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00_01", - "setting_id": "GFSB00", + "setting_id": "OxIiEYjbhEvSykaQ", "name": "Afinia Value ABS@HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia Value PLA.json b/resources/profiles/Afinia/filament/Afinia Value PLA.json index e996c7269fb..52d27a1f8c8 100644 --- a/resources/profiles/Afinia/filament/Afinia Value PLA.json +++ b/resources/profiles/Afinia/filament/Afinia Value PLA.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFA00", - "setting_id": "GFSA00", + "setting_id": "oNBk0IxmW7C99WI3", "name": "Afinia Value PLA", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia Value PLA@HS.json b/resources/profiles/Afinia/filament/Afinia Value PLA@HS.json index 7c880473e70..20dceb02492 100644 --- a/resources/profiles/Afinia/filament/Afinia Value PLA@HS.json +++ b/resources/profiles/Afinia/filament/Afinia Value PLA@HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFA00_01", - "setting_id": "GFSA00", + "setting_id": "BASsUdyvElEVJ9AA", "name": "Afinia Value PLA@HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.4 nozzle.json b/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.4 nozzle.json index 334b0be2e9f..1c93b3f1cde 100644 --- a/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.4 nozzle.json +++ b/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "iwkXfmEyz9RLZTvh", "name": "Afinia H+1(HS) 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.6 nozzle.json index 2c9a572f7c2..ecfca284542 100644 --- a/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "vngsrxKvEIsmr8tQ", "name": "Afinia H+1(HS) 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/process/0.12mm Fine @Afinia H+1(HS).json b/resources/profiles/Afinia/process/0.12mm Fine @Afinia H+1(HS).json index db9eec0164a..18e497cd013 100644 --- a/resources/profiles/Afinia/process/0.12mm Fine @Afinia H+1(HS).json +++ b/resources/profiles/Afinia/process/0.12mm Fine @Afinia H+1(HS).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "FueWYijuvLNWzNmL", "name": "0.12mm Fine @Afinia H+1(HS)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/process/0.16mm Optimal @Afinia H+1(HS).json b/resources/profiles/Afinia/process/0.16mm Optimal @Afinia H+1(HS).json index 103dea65776..cebbfe22068 100644 --- a/resources/profiles/Afinia/process/0.16mm Optimal @Afinia H+1(HS).json +++ b/resources/profiles/Afinia/process/0.16mm Optimal @Afinia H+1(HS).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Ntf0ZMcETTPz7EY1", "name": "0.16mm Optimal @Afinia H+1(HS)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/process/0.18mm Fine @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.18mm Fine @Afinia H+1(HS) 0.6 nozzle.json index 82d5875fac9..571fdf3e01c 100644 --- a/resources/profiles/Afinia/process/0.18mm Fine @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.18mm Fine @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.18_nozzle_0.6_HS", "from": "system", - "setting_id": "GP021", + "setting_id": "b7oGgrSCik70LqdL", "instantiation": "true", "description": "It has a smaller layer height and results in smoother surface and higher printing quality.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Afinia/process/0.20mm Standard @Afinia H+1(HS).json b/resources/profiles/Afinia/process/0.20mm Standard @Afinia H+1(HS).json index 5e9dfb0225f..e5449b7e16b 100644 --- a/resources/profiles/Afinia/process/0.20mm Standard @Afinia H+1(HS).json +++ b/resources/profiles/Afinia/process/0.20mm Standard @Afinia H+1(HS).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Lxid5Z2e0fvVDMMm", "name": "0.20mm Standard @Afinia H+1(HS)", "from": "system", "inherits": "fdm_process_afinia_HS_common", diff --git a/resources/profiles/Afinia/process/0.24mm Draft @Afinia H+1(HS).json b/resources/profiles/Afinia/process/0.24mm Draft @Afinia H+1(HS).json index 646068c0105..0dad08c3b07 100644 --- a/resources/profiles/Afinia/process/0.24mm Draft @Afinia H+1(HS).json +++ b/resources/profiles/Afinia/process/0.24mm Draft @Afinia H+1(HS).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "APeSqnRZh6I9OTFr", "name": "0.24mm Draft @Afinia H+1(HS)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/process/0.24mm Standard @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.24mm Standard @Afinia H+1(HS) 0.6 nozzle.json index a01a9bdf8da..1d984a149d5 100644 --- a/resources/profiles/Afinia/process/0.24mm Standard @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.24mm Standard @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.24_nozzle_0.6_HS", "from": "system", - "setting_id": "GP022", + "setting_id": "QlOnQEeUXkGaxZS5", "instantiation": "true", "description": "It has a balanced layer height for good quality and reasonable printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Afinia/process/0.28mm Extra Draft @Afinia H+1(HS).json b/resources/profiles/Afinia/process/0.28mm Extra Draft @Afinia H+1(HS).json index 2952d973057..e8fb41dcb88 100644 --- a/resources/profiles/Afinia/process/0.28mm Extra Draft @Afinia H+1(HS).json +++ b/resources/profiles/Afinia/process/0.28mm Extra Draft @Afinia H+1(HS).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VZ3NOVzdVWqZ37Ge", "name": "0.28mm Extra Draft @Afinia H+1(HS)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/process/0.30mm Standard @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.30mm Standard @Afinia H+1(HS) 0.6 nozzle.json index 8f46a23c3b9..187bb120096 100644 --- a/resources/profiles/Afinia/process/0.30mm Standard @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.30mm Standard @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.30_nozzle_0.6_HS", "from": "system", - "setting_id": "GP023", + "setting_id": "7PPJm0girx11EP80", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Afinia/process/0.30mm Strength @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.30mm Strength @Afinia H+1(HS) 0.6 nozzle.json index d8de7e2b5b3..63fc4df0903 100644 --- a/resources/profiles/Afinia/process/0.30mm Strength @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.30mm Strength @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.30_nozzle_0.6_HS", "from": "system", - "setting_id": "GP024", + "setting_id": "BewLobRVuiw6HPuc", "instantiation": "true", "description": "It has a big layer height with optimized settings for stronger parts.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Afinia/process/0.36mm Draft @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.36mm Draft @Afinia H+1(HS) 0.6 nozzle.json index 1e57406d321..c693fc468b9 100644 --- a/resources/profiles/Afinia/process/0.36mm Draft @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.36mm Draft @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.36_nozzle_0.6_HS", "from": "system", - "setting_id": "GP025", + "setting_id": "pBS3NpSZPjtySd3X", "instantiation": "true", "description": "It has a bigger layer height for faster printing but with more visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Afinia/process/0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle.json index b8ff4e39304..e9f4057178b 100644 --- a/resources/profiles/Afinia/process/0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.42_nozzle_0.6_HS", "from": "system", - "setting_id": "GP026", + "setting_id": "kHUEpY5ZMtYrLKtO", "instantiation": "true", "description": "It has the biggest layer height for fastest printing but with very visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Anker.json b/resources/profiles/Anker.json index 2d578cab613..544d889b4fb 100644 --- a/resources/profiles/Anker.json +++ b/resources/profiles/Anker.json @@ -1,6 +1,6 @@ { "name": "Anker", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Anker configurations", "machine_model_list": [ diff --git a/resources/profiles/Anker/filament/Anker Generic ABS 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic ABS 0.2 nozzle.json index faf5fa349b6..aaa175bacde 100644 --- a/resources/profiles/Anker/filament/Anker Generic ABS 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic ABS 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic ABS 0.2 nozzle", "inherits": "Anker Generic ABS @base", "from": "system", - "setting_id": "GFSB99_20", + "setting_id": "BD5ODYVM90Ig44C5", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic ABS 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic ABS 0.25 nozzle.json index 03aaf51db88..76c10b10181 100644 --- a/resources/profiles/Anker/filament/Anker Generic ABS 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic ABS 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic ABS 0.25 nozzle", "inherits": "Anker Generic ABS @base", "from": "system", - "setting_id": "GFSB99_25", + "setting_id": "WS5wXckNuiQqSVwO", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic ABS.json b/resources/profiles/Anker/filament/Anker Generic ABS.json index 26244878ad7..5588d39ff39 100644 --- a/resources/profiles/Anker/filament/Anker Generic ABS.json +++ b/resources/profiles/Anker/filament/Anker Generic ABS.json @@ -3,7 +3,7 @@ "name": "Anker Generic ABS", "inherits": "Anker Generic ABS @base", "from": "system", - "setting_id": "GFSB99", + "setting_id": "axEspGzFJnrnidm4", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic ASA 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic ASA 0.2 nozzle.json index fbe42caf7d9..b13a09de2aa 100644 --- a/resources/profiles/Anker/filament/Anker Generic ASA 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic ASA 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic ASA 0.2 nozzle", "inherits": "Anker Generic ASA @base", "from": "system", - "setting_id": "GFSB98_20", + "setting_id": "G7pzEyyhPFDnae3R", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic ASA 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic ASA 0.25 nozzle.json index 6e8d955d9a5..fad3cb2a20d 100644 --- a/resources/profiles/Anker/filament/Anker Generic ASA 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic ASA 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic ASA 0.25 nozzle", "inherits": "Anker Generic ASA @base", "from": "system", - "setting_id": "GFSB98_25", + "setting_id": "ErUUDTQ7h1wNHAKT", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic ASA.json b/resources/profiles/Anker/filament/Anker Generic ASA.json index e336c9f6069..66041c04634 100644 --- a/resources/profiles/Anker/filament/Anker Generic ASA.json +++ b/resources/profiles/Anker/filament/Anker Generic ASA.json @@ -3,7 +3,7 @@ "name": "Anker Generic ASA", "inherits": "Anker Generic ASA @base", "from": "system", - "setting_id": "GFSB98", + "setting_id": "QiFoBW5WuDUJGmFZ", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PA 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PA 0.2 nozzle.json index 7ab4dc9e8f8..3e7a0b85d1b 100644 --- a/resources/profiles/Anker/filament/Anker Generic PA 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PA 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PA 0.2 nozzle", "inherits": "Anker Generic PA @base", "from": "system", - "setting_id": "GFSN99_20", + "setting_id": "NZB26MSD9WbOeY2S", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PA 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PA 0.25 nozzle.json index 265dd5f86c3..8c0233d67e7 100644 --- a/resources/profiles/Anker/filament/Anker Generic PA 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PA 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PA 0.25 nozzle", "inherits": "Anker Generic PA @base", "from": "system", - "setting_id": "GFSN99_25", + "setting_id": "Wj7oXTGUxo8lie1B", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PA-CF.json b/resources/profiles/Anker/filament/Anker Generic PA-CF.json index de4fb91abe6..b821bede882 100644 --- a/resources/profiles/Anker/filament/Anker Generic PA-CF.json +++ b/resources/profiles/Anker/filament/Anker Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Anker Generic PA-CF", "inherits": "Anker Generic PA-CF @base", "from": "system", - "setting_id": "GFSN98", + "setting_id": "qdsEps11ugFHJkn7", "instantiation": "true", "compatible_printers": [ "Anker M5 All-Metal 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PA.json b/resources/profiles/Anker/filament/Anker Generic PA.json index 9ca9cae2509..43f3724ea99 100644 --- a/resources/profiles/Anker/filament/Anker Generic PA.json +++ b/resources/profiles/Anker/filament/Anker Generic PA.json @@ -3,7 +3,7 @@ "name": "Anker Generic PA", "inherits": "Anker Generic PA @base", "from": "system", - "setting_id": "GFSN99", + "setting_id": "QbIiX554Yee6vb32", "instantiation": "true", "compatible_printers": [ "Anker M5 All-Metal 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PC 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PC 0.2 nozzle.json index f223c413662..87f09622b9a 100644 --- a/resources/profiles/Anker/filament/Anker Generic PC 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PC 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PC 0.2 nozzle", "inherits": "Anker Generic PC @base", "from": "system", - "setting_id": "GFSC99_20", + "setting_id": "GhIOAidtgDkzh9Aj", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PC 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PC 0.25 nozzle.json index 96f2c82c03b..38794a6a440 100644 --- a/resources/profiles/Anker/filament/Anker Generic PC 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PC 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PC 0.25 nozzle", "inherits": "Anker Generic PC @base", "from": "system", - "setting_id": "GFSC99_25", + "setting_id": "TQm9EPdenyGJMvgP", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PC.json b/resources/profiles/Anker/filament/Anker Generic PC.json index 2a58425c3fe..3be5d34b710 100644 --- a/resources/profiles/Anker/filament/Anker Generic PC.json +++ b/resources/profiles/Anker/filament/Anker Generic PC.json @@ -3,7 +3,7 @@ "name": "Anker Generic PC", "inherits": "Anker Generic PC @base", "from": "system", - "setting_id": "GFSC99", + "setting_id": "xY25QcIsR9pWai3n", "instantiation": "true", "compatible_printers": [ "Anker M5 All-Metal 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PETG 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PETG 0.2 nozzle.json index 764eaed49e4..18686402e11 100644 --- a/resources/profiles/Anker/filament/Anker Generic PETG 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PETG 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PETG 0.2 nozzle", "inherits": "Anker Generic PETG @base", "from": "system", - "setting_id": "GFSG99_20", + "setting_id": "VItvDP6zmenWXwPO", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PETG 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PETG 0.25 nozzle.json index 1c1da734331..689836eae3d 100644 --- a/resources/profiles/Anker/filament/Anker Generic PETG 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PETG 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PETG 0.25 nozzle", "inherits": "Anker Generic PETG @base", "from": "system", - "setting_id": "GFSG99_25", + "setting_id": "UgKfPuleh1xnoJLT", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PETG-CF.json b/resources/profiles/Anker/filament/Anker Generic PETG-CF.json index 15c1407d2d9..3f0dd59e94f 100644 --- a/resources/profiles/Anker/filament/Anker Generic PETG-CF.json +++ b/resources/profiles/Anker/filament/Anker Generic PETG-CF.json @@ -3,7 +3,7 @@ "name": "Anker Generic PETG-CF", "inherits": "Anker Generic PETG-CF @base", "from": "system", - "setting_id": "GFSG98", + "setting_id": "j8PLF6AZD0R0oVs8", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PETG.json b/resources/profiles/Anker/filament/Anker Generic PETG.json index 0f5e45c8535..ed70b54983c 100644 --- a/resources/profiles/Anker/filament/Anker Generic PETG.json +++ b/resources/profiles/Anker/filament/Anker Generic PETG.json @@ -3,7 +3,7 @@ "name": "Anker Generic PETG", "inherits": "Anker Generic PETG @base", "from": "system", - "setting_id": "GFSG99", + "setting_id": "FMnK9qOMiqDcGqhd", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PLA 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA 0.2 nozzle.json index 658c2ae1389..6c31b3949c0 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA 0.2 nozzle", "inherits": "Anker Generic PLA @base", "from": "system", - "setting_id": "GFSL99_20", + "setting_id": "j6QmCITPJoP7bWHq", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA 0.25 nozzle.json index c30858ecda3..d3775b07e25 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA 0.25 nozzle", "inherits": "Anker Generic PLA @base", "from": "system", - "setting_id": "GFSL99_25", + "setting_id": "uKfcnPWdXxAGB5Ls", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.2 nozzle.json index 4bf1e13f507..90c78475bdc 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA Silk 0.2 nozzle", "inherits": "Anker Generic PLA Silk @base", "from": "system", - "setting_id": "GFSL96_20", + "setting_id": "A1l6NiwRrasdV556", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.25 nozzle.json index dc2e0055467..45032d46c33 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA Silk 0.25 nozzle", "inherits": "Anker Generic PLA Silk @base", "from": "system", - "setting_id": "GFSL96_25", + "setting_id": "yzHmKTOtA9JamlNf", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA Silk.json b/resources/profiles/Anker/filament/Anker Generic PLA Silk.json index 8012419011a..df8b1d7cdbc 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA Silk.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA Silk.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA Silk", "inherits": "Anker Generic PLA Silk @base", "from": "system", - "setting_id": "GFSL96", + "setting_id": "BGttYO9m2rGcnrEG", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PLA+ 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA+ 0.2 nozzle.json index 33153469bfb..9923efcd6f7 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA+ 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA+ 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA+ 0.2 nozzle", "inherits": "Anker Generic PLA+ @base", "from": "system", - "setting_id": "GFSL95_20", + "setting_id": "6IcMSjyxt0szdUuY", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA+ 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA+ 0.25 nozzle.json index 484bc39ee4e..809b57ef69c 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA+ 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA+ 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA+ 0.25 nozzle", "inherits": "Anker Generic PLA+ @base", "from": "system", - "setting_id": "GFSL95_25", + "setting_id": "a2Rf07ZUhpTPONN1", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA+.json b/resources/profiles/Anker/filament/Anker Generic PLA+.json index 01f2dd78ad5..4c4ded7c112 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA+.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA+.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA+", "inherits": "Anker Generic PLA+ @base", "from": "system", - "setting_id": "GFSL95", + "setting_id": "0yQN44WNvLVjQu2b", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PLA-CF.json b/resources/profiles/Anker/filament/Anker Generic PLA-CF.json index f8bc9648b81..7a2d6d5e979 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA-CF.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA-CF", "inherits": "Anker Generic PLA-CF @base", "from": "system", - "setting_id": "GFSL98", + "setting_id": "diNUVM7UcHLnOr9J", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PLA.json b/resources/profiles/Anker/filament/Anker Generic PLA.json index 5929a78827e..1c4b7bc5fb0 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA", "inherits": "Anker Generic PLA @base", "from": "system", - "setting_id": "GFSL99", + "setting_id": "qfKC91VAAFZSExhm", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PVA.json b/resources/profiles/Anker/filament/Anker Generic PVA.json index 89bd96f996e..97039a12d6b 100644 --- a/resources/profiles/Anker/filament/Anker Generic PVA.json +++ b/resources/profiles/Anker/filament/Anker Generic PVA.json @@ -3,7 +3,7 @@ "name": "Anker Generic PVA", "inherits": "Anker Generic PVA @base", "from": "system", - "setting_id": "GFSS99", + "setting_id": "GRtdOKUkQfZ5eDH4", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic TPU.json b/resources/profiles/Anker/filament/Anker Generic TPU.json index 898d22cea1b..fb99d95f0d2 100644 --- a/resources/profiles/Anker/filament/Anker Generic TPU.json +++ b/resources/profiles/Anker/filament/Anker Generic TPU.json @@ -3,7 +3,7 @@ "name": "Anker Generic TPU", "inherits": "Anker Generic TPU @base", "from": "system", - "setting_id": "GFSR99", + "setting_id": "YyTaPGGiEyAzmh9A", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/machine/Anker M5 0.2 nozzle.json b/resources/profiles/Anker/machine/Anker M5 0.2 nozzle.json index d905248520d..e4543fa0841 100644 --- a/resources/profiles/Anker/machine/Anker M5 0.2 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 0.2 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM004", + "setting_id": "kN8Hohcpw8f5ntpr", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Anker/machine/Anker M5 0.25 nozzle.json b/resources/profiles/Anker/machine/Anker M5 0.25 nozzle.json index 7258b9ae494..88662e7bab9 100644 --- a/resources/profiles/Anker/machine/Anker M5 0.25 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 0.25 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM007", + "setting_id": "7dfus0FEePH32qeb", "instantiation": "true", "nozzle_diameter": [ "0.25" diff --git a/resources/profiles/Anker/machine/Anker M5 0.4 nozzle.json b/resources/profiles/Anker/machine/Anker M5 0.4 nozzle.json index 7f47fdf1151..42810014ea4 100644 --- a/resources/profiles/Anker/machine/Anker M5 0.4 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 0.4 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM001", + "setting_id": "P4a46X3GsXKseJZA", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Anker/machine/Anker M5 0.6 nozzle.json b/resources/profiles/Anker/machine/Anker M5 0.6 nozzle.json index 56a4ab451fa..11d8b3cf624 100644 --- a/resources/profiles/Anker/machine/Anker M5 0.6 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 0.6 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM010", + "setting_id": "Oc59gC5v0WBApuk0", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.2 nozzle.json b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.2 nozzle.json index 19667043c09..0240748426f 100644 --- a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.2 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 All-Metal 0.2 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM005", + "setting_id": "oGl7LwEgqjA1YhCr", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.25 nozzle.json b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.25 nozzle.json index 4a5933c6306..8a5600df053 100644 --- a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.25 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 All-Metal 0.25 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM008", + "setting_id": "imIr5Mjp5nZ3e7Od", "instantiation": "true", "nozzle_diameter": [ "0.25" diff --git a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.4 nozzle.json b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.4 nozzle.json index b949db96256..6434e3c76b8 100644 --- a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.4 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 All-Metal 0.4 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM002", + "setting_id": "coZ1LkMyEaPb0IUW", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.6 nozzle.json b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.6 nozzle.json index 58b274b81d3..4c5c7a82ef5 100644 --- a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.6 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 All-Metal 0.6 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM011", + "setting_id": "Ud7gCUZXdNlpBEoB", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Anker/machine/Anker M5C 0.2 nozzle.json b/resources/profiles/Anker/machine/Anker M5C 0.2 nozzle.json index b43d2a47f39..b88d21dae31 100644 --- a/resources/profiles/Anker/machine/Anker M5C 0.2 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5C 0.2 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM006", + "setting_id": "gydejA4b2J8t11NZ", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Anker/machine/Anker M5C 0.25 nozzle.json b/resources/profiles/Anker/machine/Anker M5C 0.25 nozzle.json index d7cbb238d25..7aec134ac47 100644 --- a/resources/profiles/Anker/machine/Anker M5C 0.25 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5C 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5C 0.25 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM009", + "setting_id": "rvdyXQTYJawcfGrp", "instantiation": "true", "nozzle_diameter": [ "0.25" diff --git a/resources/profiles/Anker/machine/Anker M5C 0.4 nozzle.json b/resources/profiles/Anker/machine/Anker M5C 0.4 nozzle.json index 4fb54bd71fa..573784f2f3c 100644 --- a/resources/profiles/Anker/machine/Anker M5C 0.4 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5C 0.4 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM003", + "setting_id": "nU0a3nS7wts4sQW4", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Anker/machine/Anker M5C 0.6 nozzle.json b/resources/profiles/Anker/machine/Anker M5C 0.6 nozzle.json index 8730e027a16..d6d1212b636 100644 --- a/resources/profiles/Anker/machine/Anker M5C 0.6 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5C 0.6 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM012", + "setting_id": "vMRJqTpMxHG2tMbO", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Anker/process/0.05mm Optimal 0.2 nozzle @Anker.json b/resources/profiles/Anker/process/0.05mm Optimal 0.2 nozzle @Anker.json index 64710c9c955..997c3cee119 100644 --- a/resources/profiles/Anker/process/0.05mm Optimal 0.2 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.05mm Optimal 0.2 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.05mm Optimal 0.2 nozzle @Anker", "inherits": "fdm_process_anker_common_0_2", "from": "system", - "setting_id": "GP010", + "setting_id": "ue2qhXydEN7TC2g8", "instantiation": "true", "layer_height": "0.05", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.05mm Optimal 0.25 nozzle @Anker.json b/resources/profiles/Anker/process/0.05mm Optimal 0.25 nozzle @Anker.json index 1f428d36f64..1fb1cc62ca0 100644 --- a/resources/profiles/Anker/process/0.05mm Optimal 0.25 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.05mm Optimal 0.25 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.05mm Optimal 0.25 nozzle @Anker", "inherits": "fdm_process_anker_common_0_25", "from": "system", - "setting_id": "GP013", + "setting_id": "0BaK6KcVfmLfDWQ5", "instantiation": "true", "layer_height": "0.05", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.05mm Ultradetail @Anker.json b/resources/profiles/Anker/process/0.05mm Ultradetail @Anker.json index e596034d1eb..e146e9dd2b7 100644 --- a/resources/profiles/Anker/process/0.05mm Ultradetail @Anker.json +++ b/resources/profiles/Anker/process/0.05mm Ultradetail @Anker.json @@ -3,7 +3,7 @@ "name": "0.05mm Ultradetail @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP002", + "setting_id": "GmuMBllBDCV3wgp6", "instantiation": "true", "layer_height": "0.05", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.10mm Detail @Anker.json b/resources/profiles/Anker/process/0.10mm Detail @Anker.json index 81b391d9367..7332859c390 100644 --- a/resources/profiles/Anker/process/0.10mm Detail @Anker.json +++ b/resources/profiles/Anker/process/0.10mm Detail @Anker.json @@ -3,7 +3,7 @@ "name": "0.10mm Detail @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP003", + "setting_id": "doEmSk2yclAlrDje", "instantiation": "true", "layer_height": "0.10", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.10mm Standard 0.2 nozzle @Anker.json b/resources/profiles/Anker/process/0.10mm Standard 0.2 nozzle @Anker.json index 63965432cc0..863b6d9a90c 100644 --- a/resources/profiles/Anker/process/0.10mm Standard 0.2 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.10mm Standard 0.2 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard 0.2 nozzle @Anker", "inherits": "fdm_process_anker_common_0_2", "from": "system", - "setting_id": "GP011", + "setting_id": "VsbQS5WHAe8eWdMb", "instantiation": "true", "layer_height": "0.10", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.10mm Standard 0.25 nozzle @Anker.json b/resources/profiles/Anker/process/0.10mm Standard 0.25 nozzle @Anker.json index 90086505192..6d6476b6eb9 100644 --- a/resources/profiles/Anker/process/0.10mm Standard 0.25 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.10mm Standard 0.25 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard 0.25 nozzle @Anker", "inherits": "fdm_process_anker_common_0_25", "from": "system", - "setting_id": "GP014", + "setting_id": "tVkN8yO3KNU7RBil", "instantiation": "true", "layer_height": "0.10", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.15mm Detail 0.6 nozzle @Anker.json b/resources/profiles/Anker/process/0.15mm Detail 0.6 nozzle @Anker.json index c8f96387935..b376aef87cd 100644 --- a/resources/profiles/Anker/process/0.15mm Detail 0.6 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.15mm Detail 0.6 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.15mm Detail 0.6 nozzle @Anker", "inherits": "fdm_process_anker_common_0_6", "from": "system", - "setting_id": "GP016", + "setting_id": "G86FJ5HcZrezkPiL", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.20", diff --git a/resources/profiles/Anker/process/0.15mm Draft 0.2 nozzle @Anker.json b/resources/profiles/Anker/process/0.15mm Draft 0.2 nozzle @Anker.json index 7efbfedaf63..5e4a102210e 100644 --- a/resources/profiles/Anker/process/0.15mm Draft 0.2 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.15mm Draft 0.2 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.15mm Draft 0.2 nozzle @Anker", "inherits": "fdm_process_anker_common_0_2", "from": "system", - "setting_id": "GP012", + "setting_id": "mvB5mkr4Rcnt6nfL", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.15mm Draft 0.25 nozzle @Anker.json b/resources/profiles/Anker/process/0.15mm Draft 0.25 nozzle @Anker.json index 5685472ca51..a69f72ec3ec 100644 --- a/resources/profiles/Anker/process/0.15mm Draft 0.25 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.15mm Draft 0.25 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.15mm Draft 0.25 nozzle @Anker", "inherits": "fdm_process_anker_common_0_25", "from": "system", - "setting_id": "GP015", + "setting_id": "2z0V3ymNPvCkaMKl", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.15mm Fast @Anker.json b/resources/profiles/Anker/process/0.15mm Fast @Anker.json index 05c880275c1..253fc15a8ee 100644 --- a/resources/profiles/Anker/process/0.15mm Fast @Anker.json +++ b/resources/profiles/Anker/process/0.15mm Fast @Anker.json @@ -3,7 +3,7 @@ "name": "0.15mm Fast @Anker", "inherits": "fdm_process_anker_fast_common", "from": "system", - "setting_id": "GP007", + "setting_id": "AmygchBTj8t7w1p8", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.15mm Optimal @Anker.json b/resources/profiles/Anker/process/0.15mm Optimal @Anker.json index dce863255ed..fa793b0ef7e 100644 --- a/resources/profiles/Anker/process/0.15mm Optimal @Anker.json +++ b/resources/profiles/Anker/process/0.15mm Optimal @Anker.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP004", + "setting_id": "B60G1FrfJwUViHQb", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.20mm Fast @Anker.json b/resources/profiles/Anker/process/0.20mm Fast @Anker.json index 80dce094267..fecf2f4e547 100644 --- a/resources/profiles/Anker/process/0.20mm Fast @Anker.json +++ b/resources/profiles/Anker/process/0.20mm Fast @Anker.json @@ -3,7 +3,7 @@ "name": "0.20mm Fast @Anker", "inherits": "fdm_process_anker_fast_common", "from": "system", - "setting_id": "GP008", + "setting_id": "Qu11kOAqDc189BDd", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.20", diff --git a/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json b/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json index 00a31c95946..1987ea70708 100644 --- a/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.20mm Optimal 0.6 nozzle @Anker", "inherits": "fdm_process_anker_common_0_6", "from": "system", - "setting_id": "GP017", + "setting_id": "re5qmcOFJ1OJP3Ip", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.20", diff --git a/resources/profiles/Anker/process/0.20mm Standard @Anker.json b/resources/profiles/Anker/process/0.20mm Standard @Anker.json index f22fdba81b7..59fcf74ff58 100644 --- a/resources/profiles/Anker/process/0.20mm Standard @Anker.json +++ b/resources/profiles/Anker/process/0.20mm Standard @Anker.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP001", + "setting_id": "pIFD3fv1vaRXYpPA", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.20", diff --git a/resources/profiles/Anker/process/0.25mm Draft @Anker.json b/resources/profiles/Anker/process/0.25mm Draft @Anker.json index 46033dd6d2f..a8d1a2ad2df 100644 --- a/resources/profiles/Anker/process/0.25mm Draft @Anker.json +++ b/resources/profiles/Anker/process/0.25mm Draft @Anker.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP005", + "setting_id": "jYoKBJ0eOXh4FZ8Q", "instantiation": "true", "layer_height": "0.25", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/Anker/process/0.25mm Fast @Anker.json b/resources/profiles/Anker/process/0.25mm Fast @Anker.json index dff9ea3a7cf..c04fad9f93c 100644 --- a/resources/profiles/Anker/process/0.25mm Fast @Anker.json +++ b/resources/profiles/Anker/process/0.25mm Fast @Anker.json @@ -3,7 +3,7 @@ "name": "0.25mm Fast @Anker", "inherits": "fdm_process_anker_fast_common", "from": "system", - "setting_id": "GP009", + "setting_id": "wrZr3PBnVbQ6AVn9", "instantiation": "true", "layer_height": "0.25", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/Anker/process/0.30mm Standard 0.6mm nozzle @Anker.json b/resources/profiles/Anker/process/0.30mm Standard 0.6mm nozzle @Anker.json index 297bacaed2f..4b03a6964b2 100644 --- a/resources/profiles/Anker/process/0.30mm Standard 0.6mm nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.30mm Standard 0.6mm nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard 0.6mm nozzle @Anker", "inherits": "fdm_process_anker_common_0_6", "from": "system", - "setting_id": "GP018", + "setting_id": "dZht9nv2lKNm1JHa", "instantiation": "true", "layer_height": "0.30", "initial_layer_print_height": "0.30", diff --git a/resources/profiles/Anker/process/0.30mm Superdraft @Anker.json b/resources/profiles/Anker/process/0.30mm Superdraft @Anker.json index b64e8f6cab4..d219c6ebfd1 100644 --- a/resources/profiles/Anker/process/0.30mm Superdraft @Anker.json +++ b/resources/profiles/Anker/process/0.30mm Superdraft @Anker.json @@ -3,7 +3,7 @@ "name": "0.30mm Superdraft @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP006", + "setting_id": "ilmQ7GegvVeH9AxA", "instantiation": "true", "layer_height": "0.30", "initial_layer_print_height": "0.30", diff --git a/resources/profiles/Anker/process/0.35mm Draft 0.6mm nozzle @Anker.json b/resources/profiles/Anker/process/0.35mm Draft 0.6mm nozzle @Anker.json index 9c922031b39..df2e3848586 100644 --- a/resources/profiles/Anker/process/0.35mm Draft 0.6mm nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.35mm Draft 0.6mm nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.35mm Draft 0.6mm nozzle @Anker", "inherits": "fdm_process_anker_common_0_6", "from": "system", - "setting_id": "GP019", + "setting_id": "LAKBtstaShZ3atGa", "instantiation": "true", "layer_height": "0.35", "initial_layer_print_height": "0.35", diff --git a/resources/profiles/Anker/process/0.40mm Superdraft 0.6mm nozzle @Anker.json b/resources/profiles/Anker/process/0.40mm Superdraft 0.6mm nozzle @Anker.json index 01ff1a78597..2f91c1feb8a 100644 --- a/resources/profiles/Anker/process/0.40mm Superdraft 0.6mm nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.40mm Superdraft 0.6mm nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.40mm Superdraft 0.6mm nozzle @Anker", "inherits": "fdm_process_anker_common_0_6", "from": "system", - "setting_id": "GP020", + "setting_id": "pZ1lqDq7UEaKzUAb", "instantiation": "true", "layer_height": "0.40", "initial_layer_print_height": "0.40", diff --git a/resources/profiles/Anycubic.json b/resources/profiles/Anycubic.json index a1a904f6630..d0a5ad08520 100644 --- a/resources/profiles/Anycubic.json +++ b/resources/profiles/Anycubic.json @@ -1,6 +1,6 @@ { "name": "Anycubic", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Anycubic configurations", "machine_model_list": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle.json index ff036af09a0..f560328d288 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RDI26qeSRSTe0PDg", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle.json index 5a9a4c9ca71..4e5b8117bcb 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Moc1cylP6mmSQjlb", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle.json index 873002b125e..5b5dbd88a84 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2xgfnUKyOUQwYWPa", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 0.4 nozzle.json index d0f1af45cdf..762dee8f05e 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NOiAgxA0BbvLhR1v", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle.json index ab43c94e9c2..a37305a1bd0 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MDWaiSjl89E6Edsn", "filament_id": "GFABS", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle.json index 46ad643f22d..5638f4c226f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wZjVYc7dBDSKRusJ", "filament_id": "GFABS", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle.json index 170834c9386..37cd31a19e5 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AbB6JtoPRsNgmxyy", "filament_id": "GFABS", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle.json index fda4fbd20b0..8a9663981cb 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "exX565xnrLPkYkvu", "filament_id": "GFABS", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra X 0.4 nozzle.json index ea2340f7df8..5443dacb342 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KeEk3yQZrKmJY9Q0", "filament_id": "GFABS", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 0.4 nozzle.json index 64ae44b59fa..56f4d8957a2 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "U66DGcpZeZ24VfPe", "filament_id": "GFA99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle.json index 483ca46b008..af221cecfff 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "06j8OTuYw3Sh9BxL", "filament_id": "GFA99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle.json index e6f1c80e26a..0c2d38c3492 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "s2XJm0JghCSUDzhh", "filament_id": "GFA99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 0.4 nozzle.json index 9955d0770f7..7395073bce6 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rf792xZNR7tRGKNg", "filament_id": "GFA99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle.json index c103bdb580b..59113ee0188 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wqK6AVf1mNkIOmnt", "filament_id": "GFASA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle.json index 4d8b89d7e1d..6ee5e7d7502 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aMgpooFosBBvlKKR", "filament_id": "GFASA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle.json index 2889d2f2a2c..8dc0f96a2c5 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Isk7NkdH7GxsEZkS", "filament_id": "GFASA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle.json index 647414f3934..3ca00083f59 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ew0Lg6u3e5Xj19Bz", "filament_id": "GFASA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra X 0.4 nozzle.json index 0ad07759843..cf04fda679f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PEg6aLXcyUc70p9F", "filament_id": "GFASA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic ABS.json b/resources/profiles/Anycubic/filament/Anycubic Generic ABS.json index 69c852c0d6d..c2863fd513a 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic ABS.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic ABS.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "az6wmXeWSCKcUEsK", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic ASA.json b/resources/profiles/Anycubic/filament/Anycubic Generic ASA.json index 0bfbd36da15..6bddb8f1946 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic ASA.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic ASA.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qKcef8t7nj8nBjPu", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PA-CF.json b/resources/profiles/Anycubic/filament/Anycubic Generic PA-CF.json index e5779fc0fdb..ed1cf5e2369 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PA-CF.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j2PXsJyI9YyoE8lc", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PA.json b/resources/profiles/Anycubic/filament/Anycubic Generic PA.json index 1b0f2897006..5c93bd4a56f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PA.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PA.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xzI6EgoKa3DFYyoZ", "filament_id": "GFN99", "instantiation": "true", "nozzle_temperature_initial_layer": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PC.json b/resources/profiles/Anycubic/filament/Anycubic Generic PC.json index 27c063a374f..20d83e1d1fd 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PC.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PC.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3zgBtEkj1fQpDkxO", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PETG.json b/resources/profiles/Anycubic/filament/Anycubic Generic PETG.json index 11b251c75cb..cfda82354d0 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PETG.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PETG.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CEd987NP90bPdkW7", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PLA-CF.json b/resources/profiles/Anycubic/filament/Anycubic Generic PLA-CF.json index c8ec24c00d1..8246ddafb00 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PLA-CF.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9gFgyEJelaCIVwAH", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PLA.json b/resources/profiles/Anycubic/filament/Anycubic Generic PLA.json index 7c896dc2caf..3fb18f36a35 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PLA.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PLA.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2MiX54GMiZjFzwBI", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PVA.json b/resources/profiles/Anycubic/filament/Anycubic Generic PVA.json index f9bb7893653..5cc9abce405 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PVA.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PVA.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I1GMbOsMYktU7EbM", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic TPU.json b/resources/profiles/Anycubic/filament/Anycubic Generic TPU.json index 74ebc31dca4..25d961c5e8f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic TPU.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic TPU.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xrbLc7y1AInpumtv", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle.json index 7a47ca5563a..66428b6c936 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hcL5OHthGzApICTk", "filament_id": "GFPA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle.json index 8e64b2cf561..be313bf621e 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OJbFCKoG5DtVGT9J", "filament_id": "GFPA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle.json index 23b4d955c9f..077e222d49c 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6mMIVw8iheDn1OuV", "filament_id": "GFPA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle.json index 4523f46c0db..a67c82ac594 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "epl6B2WNjV1dxG5Z", "filament_id": "GFPA6-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle.json index cadca22172a..6a58147c359 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eMUXd3PFKHl41TIq", "filament_id": "GFPA6-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle.json index d14951edbd9..553f17901db 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "y9XYrUJrUYKcBhCI", "filament_id": "GFPA6-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle.json index d50ffe201b4..bdc62ab11ad 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nO6m8EaBKREWUi3f", "filament_id": "GFPAHT-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle.json index 9db630112f4..04cd241a065 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ebKput7Vyn4IQez1", "filament_id": "GFPAHT-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle.json index b585d9871d4..429647426e0 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jzrflGdwy9U8kl1c", "filament_id": "GFPAHT-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle.json index 2f0ca3c0a05..cfe5743cb99 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7F0I28djSlDopbIp", "filament_id": "GFPC", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle.json index 49e47b8ab59..c8ed72562fd 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wF10XxL2tNXh8C1p", "filament_id": "GFPC", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle.json index 75de94fb976..76e21e1ed2b 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "t3VfcIKMk0ELiPP7", "filament_id": "GFPC", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle.json index 08d06de570f..3321afd452b 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dOOXRvGwMe3NeUj0", "filament_id": "GFPC-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle.json index 2dc25ce2ae6..73378f1ffd9 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "H0IECyfsMaCMdefe", "filament_id": "GFPC-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle.json index 77b5eb895db..11ac6e7bece 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7nu7lbiAHMeFBIJc", "filament_id": "GFPC-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle.json index 4da8298e695..53e4aba1200 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "puSuSfNyKlYlmLjL", "filament_id": "GFPC-GF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle.json index 1661144a3ce..183655a8a91 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1Qdmjm0MNJKU7aCD", "filament_id": "GFPC-GF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle.json index 68e647f8963..61de49c6479 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Z0qp7SdwN9luxLFO", "filament_id": "GFPC-GF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle.json index 02d733cd302..035648964d4 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gmni9H2Du5nxBqQu", "filament_id": "GFU99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle.json index d1164f0c2ec..93b2dd34233 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zCqTTjac3ydSAw3q", "filament_id": "GFPEBA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle.json index c381575ae8b..1abbe033ae2 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1bCJcP2RcDlvIqEo", "filament_id": "GFPEBA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle.json index 5e54a05de53..5f2fbc693c5 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5v6coSKjAl220Cnq", "filament_id": "GFPEBA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle.json index 4adb240476c..852d9be2377 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "saRQ24o8KHgc1YnM", "filament_id": "GFPET-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle.json index 2d3fa28907e..688d699495e 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hYFR2CtiXab9KZUp", "filament_id": "GFPET-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle.json index 19720adb7f6..95fd9fd80e4 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RCaf3c84JsWkuJzd", "filament_id": "GFPET-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 0.4 nozzle.json index 71d684de428..cc24576ed07 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qe2wYLf7CEMjmfxj", "filament_id": "GFG99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle.json index ccfbfbaa16f..bd02903dccb 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uNktFymJ3RbGa7k0", "filament_id": "GFG99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle.json index 6c1e84c5f34..e7f271b6a4c 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EaW663aw4torYXG8", "filament_id": "GFG99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle.json index f451f600295..a0e8481d7f0 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lgVEMmBHMen0sWsI", "filament_id": "GFG99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 0.4 nozzle.json index e9d69da287b..d513cdd1d43 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uLRMTzyJIara4Hr2", "filament_id": "GFG99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle.json index fb41ccf99d3..9c59bd36435 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FAyFkKpV5w6G5dU2", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json index 85accba0dc3..d97f7fc564e 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle", + "setting_id": "duduwoswLHk9I9sY", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle.json index 1c97fa1a5de..bd1a1768c01 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b3GU7ytZPEYNNyne", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle.json index ca99792e83c..d8913fe29e5 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SrHKJh6prBzMz4Se", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra X 0.4 nozzle.json index 63c556d7708..a14c08e5c43 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HyTi93UGno6uAJEO", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle.json index 1e3979c8ac1..6263a4c0333 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ajFzrQq9AvGtZCui", "filament_id": "GFPETG-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle.json index 6cfdb5855bd..d374e345e06 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VOV59iBwqwMtmi48", "filament_id": "GFPETG-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle.json index f0631df81cc..1e4342272a9 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L6GIF36jbXf5NVOw", "filament_id": "GFPETG-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle.json index 1579611eade..7e8a8b189b0 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XIq1GeZdHqOl9Gtr", "filament_id": "GFL92", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle.json index b5aed9fcf70..2e2c0d094aa 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EaVdXQHAyocYUCez", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle.json index c4f02100dc8..e96d1b0884a 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UpC1Qut0kjYRD9po", "filament_id": "GFL92", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle.json index 93d6e0ac13f..c60020dfdaa 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ELCOJflyY3DfpPAH", "filament_id": "GFL92", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.2 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.2 nozzle.json index c7f0d894552..4e058c6f74a 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.2 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 0.2 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "enkHPcq0yYHsRk7g", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.4 nozzle.json index 02d95a13e4a..42d757d7e9e 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qw4uL96miCLTNE7b", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.6 nozzle.json index 03ba6c0cd70..f01ded111ea 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 0.6 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KrlWgkC2kVdSRNUx", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.8 nozzle.json index eb87552ce0a..0a12e310b41 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 0.8 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gK0NhTnxz1VBNHbu", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle.json index bfdf206d24a..c94f05a52fa 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4nCPU0WS74OXowyr", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle.json index 6d1b74b9717..3fc828b3052 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0Ae57Dt0KXnpQUJu", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle.json index af2fd286c4c..7f862c1b1c6 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "otxG4N1WrXHUw8Z9", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json index e18cf3e5596..03627128bc4 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04_kobra_neo", + "setting_id": "GblA3LvgCL63V7Qx", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 0.4 nozzle.json index a8350ad2fa0..717e5335267 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zYYM5Fznkiz0UgHN", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle.json index 28e464da682..13a4eccfc23 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Z0T8Mul8Ta7zqRjS", "filament_id": "GFPLA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle.json index 6990767f5a3..f4a7632c127 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle", + "setting_id": "61KPHMw1fRcuaGHk", "filament_id": "GFPLA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle.json index dbb1809d7cc..82691cd80fc 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RQJLrGtzvbP2PksP", "filament_id": "GFPLA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle.json index 3e9e60661d7..d00931d9745 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "50Ailboxk7bEclVp", "filament_id": "GFPLA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra X 0.4 nozzle.json index 40674aed053..795805eb82f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1hyHPSJZgUpLcW7u", "filament_id": "GFPLA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle.json index 426e793f628..3df60b8a890 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "m7o0ek6sbOavVUpG", "filament_id": "GFL98", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle.json index 6ff36995744..5bb37daa1f2 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle", + "setting_id": "NVrxrFGYkHRyzrFq", "filament_id": "GFPLA Glow", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle.json index e477e7888eb..284a1f93fde 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "swLSkqq7X3PhbRiQ", "filament_id": "GFPLA Glow", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle.json index 91757fb2359..26d53a4f721 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rsOyKXt6G37Ze51l", "filament_id": "GFPLA Glow", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle.json index ffde5500e3c..0050079b0db 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7GISZDRG9YilzBXM", "filament_id": "GFPLA Glow", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle.json index e9ecf2421f0..d36e50bf958 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Sio4qE22N2krNjx1", "filament_id": "GFL96", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle.json index 743e87b0813..c5e434f90fc 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4FQaTeouNl9pL4Vl", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle.json index df8718fc522..d996d2d84bb 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AEKT5WgqOTAVYijs", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle.json index f2d09466b65..ad8be5c9f1f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle", + "setting_id": "xTuh6dk8MdeAovdB", "filament_id": "GFPLA High Speed", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle.json index a30d3f8ae18..4f2a9b55e42 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BpBYwZqt4ik1XIFp", "filament_id": "GFPLA High Speed", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle.json index 7812f634750..809c2432235 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2Rk0UA3rtW53ECqo", "filament_id": "GFPLA High Speed", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle.json index 198aeac557f..12ba8b69846 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hQ90rvCLS2rVEPVJ", "filament_id": "GFPLA High Speed", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle.json index 930561a0045..18450cf4846 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wi26Yq5bX8oGt4CA", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle.json index 478c9b49081..88dc0be8390 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kVOaVF3YyfGrXTdW", "filament_id": "GFL95", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle.json index 026574f1d9c..74e41f42aab 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qSpZJ4cRcg3xb2b2", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle.json index 3aadc072d33..64a690ea123 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle", + "setting_id": "WvmwXnXSDPPtXS8S", "filament_id": "GFPLA Matte", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle.json index 4fd40e7609e..bf2a4dfa918 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jFKsrMeqeUAcMAyf", "filament_id": "GFPLA Matte", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle.json index 5ae1f5d02fd..6b0be29514c 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ueznw2fLdjN2EbIC", "filament_id": "GFPLA Matte", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle.json index b74c69215b2..dc79a8b11f9 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JxYmWTeCtw0VvUcC", "filament_id": "GFPLA Matte", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle.json index 31436e69f8c..f7a73c748c0 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1EID0A7FceyLzja5", "filament_id": "GFL97", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle.json index d7bca871dd4..51dbc781fa5 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Fszb00FtQHFOcDmz", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle.json index 43288219e2c..24db6eab185 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wnt68LydXcNxhGhN", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle.json index 367fb7617f1..269f5acf24f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle", + "setting_id": "AzEerDakdHs9Rj3I", "filament_id": "GFPLA Silk", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle.json index dbb243d79fd..aeaed4784e2 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pUB5V3n7yAbPxFQC", "filament_id": "GFPLA Silk", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle.json index 746114e3e7d..91edc58d3cf 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N96XNT6EoNVVFYz0", "filament_id": "GFPLA Silk", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle.json index 842506fc885..426ea3744d4 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Yc1P4D9Z42Abjfut", "filament_id": "GFPLA Silk", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle.json index 6f9f20aa318..f29c6e2674b 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zAUNjIY9cGOO3Np5", "filament_id": "GFL94", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle.json index 1daf646b576..74b39048ee5 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle", + "setting_id": "DkuffHU9VM48p50f", "filament_id": "GFPLA Translucent", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle.json index 25394dbfa8f..836edf10c54 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1va1bLu3J0b5GQt3", "filament_id": "GFL93", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle.json index 3976b1746d4..625e0ddad24 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XN8zwImhwbZCkl6m", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle.json index c5969db564a..a7b7d4f595a 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Vs1ZyZJWHFue8Vc8", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle.json index 2cfc195f606..e437edc973a 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CjXfeHJpdOaSEzN0", "filament_id": "GFPLA+", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle.json index f2070e9fdc7..7bd1cded915 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ol5UhwlAQy7yrXYU", "filament_id": "GFPLA+", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle.json index 38ee87e9186..087e7e479ca 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u9nOmt30hBeZoN2w", "filament_id": "GFPLA+", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json index 710bae40fe1..9bddef96ad1 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lehlBFE2WVyi24s0", "filament_id": "GFPLA+", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle.json index 989e1a4253f..ee6ea50ef1a 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "Anycubic Generic PLA-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Y9mFng36B2vAnP19", "filament_id": "GFPLA-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle.json index c060a0d0ad1..91927df4a81 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "Anycubic Generic PLA-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9XGVjrGzNa4Br8kB", "filament_id": "GFPLA-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle.json index e56a9ff87cf..7619db97640 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "Anycubic Generic PLA-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vPSse40nqlQ0xBnp", "filament_id": "GFPLA-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle.json index c60da7bfdb9..30c1a369977 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RXGVKThses3TsFql", "filament_id": "GFPVA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle.json index 6b731819c92..388a395309e 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1QcMzxPPVVj8k9Zy", "filament_id": "GFPVA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle.json index 1e9ebf3ee55..9ffe3a4047e 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "70hdDTET074FJB0W", "filament_id": "GFPVA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra X 0.4 nozzle.json index 17c982ac9b1..f166aa4a6f8 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PVA @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uZIHFQ0GxFemfZUN", "filament_id": "GFPVA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle.json index 57f35fc16c1..9579f701eb7 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "V130y2Wie3uJtzho", "filament_id": "GFTPU 95A", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle.json index 3bcf2fac44b..ababa2bbb98 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BAYwaV7mcaLAo1uD", "filament_id": "GFTPU 95A", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle.json index bc776e77e0b..70fc1e02d76 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FvdMeI7MlR1OEt0y", "filament_id": "GFTPU 95A", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle.json index 6a88f180416..a7067cc8a7d 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9zwUSJcKXHTuDM1i", "filament_id": "GFTPU 95A", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle.json index f71ace7649a..dbf66104c07 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CdtZIoH8bvFOFU6l", "filament_id": "GFU99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle.json index a9f45309760..13f0c712e3b 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "F3l2tNcFwp9qG7W6", "filament_id": "GFU99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle.json index 8b5696bd3bf..4310aba3630 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WkMd8rjotz7XNLDM", "filament_id": "GFU99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra S1 0.4 nozzle.json index bda501638cf..85252f7057e 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ias4IbNNwygyeow9", "filament_id": "GFU99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle.json index 45e4197630a..7f8d97a333c 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9UgHz7Bgv8GpydSE", "filament_id": "GFTPU for ACE", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle.json index aff088d1e62..e9b2079dff7 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IcPG0rhSw4AuIcPl", "filament_id": "GFTPU for ACE", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle.json index 347a14e9821..d3b82264a57 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fVVxpwKdzpOMntDc", "filament_id": "GFTPU for ACE", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle.json index ce624e19df6..7ac30146395 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Z6f3hM30bVcmttUo", "filament_id": "GFTPU for ACE", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Generic ABS @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Generic ABS @Anycubic Kobra 3 0.4 nozzle.json index fc436a2308b..71e7beac0e0 100644 --- a/resources/profiles/Anycubic/filament/Generic ABS @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Generic ABS @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "W3GiC5YLzxbbjXLY", "filament_id": "GFB99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json index 5bd4a267004..0c49ed86e12 100644 --- a/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle", + "setting_id": "aFlpGq8eSJQEO1Ie", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra X 0.4 nozzle.json index 5787266731f..36d7edc2117 100644 --- a/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9hdOsLCrVX3dkem2", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle.json index 9cef57a3e9b..cb51a5a3398 100644 --- a/resources/profiles/Anycubic/filament/Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tUSAvzLu6pVk37kn", "filament_id": "GFG99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Generic TPU @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Generic TPU @Anycubic Kobra 3 0.4 nozzle.json index f18d9fe4a66..42739229b13 100644 --- a/resources/profiles/Anycubic/filament/Generic TPU @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Generic TPU @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kHB2rrxkyz4Clu3N", "filament_id": "GFU99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json b/resources/profiles/Anycubic/filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json index 96fbc6f25bc..0400c26a1d7 100644 --- a/resources/profiles/Anycubic/filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json +++ b/resources/profiles/Anycubic/filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-CF20 @Anycubic Kobra S1", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSL57_AC", + "setting_id": "DmRzQzlSf2KdWwKu", "filament_id": "GFL57", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Anycubic/filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json b/resources/profiles/Anycubic/filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json index b9a92672601..21be878b04c 100644 --- a/resources/profiles/Anycubic/filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json +++ b/resources/profiles/Anycubic/filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA @Anycubic Kobra S1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSPM001_AC", + "setting_id": "gsXcm0Q6TdKW0GBx", "filament_id": "GFPM001", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json b/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json index 54e1323cac7..a594a3fe92b 100644 --- a/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json +++ b/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json @@ -3,7 +3,7 @@ "name": "Polymaker PLA Pro @Anycubic Kobra S1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL79_AC", + "setting_id": "R7XUcQ4LSZA2i4PG", "filament_id": "GFL79", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json b/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json index abdc6a6e1d5..008247a00af 100644 --- a/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json +++ b/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json @@ -3,7 +3,7 @@ "name": "Polymaker PLA Pro Metallic @Anycubic Kobra S1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL80_AC", + "setting_id": "iFJbVP8Ui0h5sv5X", "filament_id": "GFL80", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 0.4 nozzle.json index fce68b3d7f7..3c8df5f163d 100644 --- a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic 4Max Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "jEkuUvCQyBNL2MFy", "instantiation": "true", "printer_model": "Anycubic 4Max Pro", "default_print_profile": "0.20mm Standard @Anycubic 4MaxPro", diff --git a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2 0.4 nozzle.json index fe17d0b2108..40b4613eb82 100644 --- a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic 4Max Pro 2 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "SzWHDonRrgyHlGEW", "instantiation": "true", "printer_model": "Anycubic 4Max Pro 2", "default_print_profile": "0.20mm Standard @Anycubic 4MaxPro2", diff --git a/resources/profiles/Anycubic/machine/Anycubic Chiron 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Chiron 0.4 nozzle.json index 2392bcab541..d79bebdf71c 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Chiron 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Chiron 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Chiron 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "l7eK78cq6VEaMYfb", "instantiation": "true", "printer_model": "Anycubic Chiron", "default_print_profile": "0.20mm Standard @Anycubic Chiron", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 0.4 nozzle.json index d213508bbc5..e32ed5b2fb9 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "nyudbXDikl51Tr9N", "instantiation": "true", "printer_model": "Anycubic Kobra", "default_print_profile": "0.20mm Standard @Anycubic Kobra", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 0.4 nozzle.json index 44488a75116..cadcce6d5a3 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 2 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "A5NqCueiXvqICdAN", "instantiation": "true", "printer_model": "Anycubic Kobra 2", "default_print_profile": "0.20mm Standard @Anycubic Kobra2", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Max 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Max 0.4 nozzle.json index be902d770af..9497594f622 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 2 Max 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "vp0DZVLgGGz8clHc", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 2 Max 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Neo 0.4 nozzle.json index fcb20562d36..f3d67776af1 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM005", + "setting_id": "LIsjlFTwoNWK2WyU", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 2 Neo 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Plus 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Plus 0.4 nozzle.json index dedcafaf0a1..1cce9bddffe 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Plus 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 2 Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM004", + "setting_id": "9nAwSZ5vXCWD9qnT", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 2 Plus 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Pro 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Pro 0.4 nozzle.json index ffae6e9e858..690f77a01ca 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Pro 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 2 Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM002", + "setting_id": "yQ1l7ZmiAu0DyGxR", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 2 Pro 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.2 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.2 nozzle.json index 3dcc8793631..cbd4a67cfba 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.2 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 0.2 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "N1JltE63FhgypxCh", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 0.2 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.4 nozzle.json index f3ae129a521..624233053ef 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "E1yQxO2andqiuIIv", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.6 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.6 nozzle.json index 33ce456c5da..d6131381287 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.6 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "1jaDeBe7CJNcv9jW", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 0.6 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.8 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.8 nozzle.json index bbd62e0ae46..60b38644549 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.8 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "oSz15RnEtcH6vjxN", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 0.8 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.4 nozzle.json index 8a776dfcfb9..dbb112bfae2 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM007", + "setting_id": "lj7NBHJtE1211s3A", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 Max 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.6 nozzle.json index 8346ccf3e79..272d19cd75c 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM007", + "setting_id": "7Soa9b5ZLJGE4azO", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 Max 0.6 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.8 nozzle.json index 97aef7dcac7..993258d59b4 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM007", + "setting_id": "eIkFSkCh3UahGLAF", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 Max 0.8 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra Max 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra Max 0.4 nozzle.json index 1bc2e7afd2e..58ce426f05a 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra Max 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Gtfgaixnuy5sZZED", "instantiation": "true", "printer_model": "Anycubic Kobra Max", "default_print_profile": "0.20mm Standard @Anycubic KobraMax", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra Neo 0.4 nozzle.json index 558f86143b9..ab8a4a0e2bf 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra Neo 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM005_kobra_neo", + "setting_id": "OYpKGADZU98KNq2m", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra Neo 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra Plus 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra Plus 0.4 nozzle.json index c3a747b7d9d..9b700b7a5f5 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra Plus 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "6P8w81ez1853W0NK", "instantiation": "true", "printer_model": "Anycubic Kobra Plus", "default_print_profile": "0.20mm Standard @Anycubic KobraPlus", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 0.4 nozzle.json index 7127c64dcc2..9ca15821da9 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "IfuZplbodKgggoSZ", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra S1 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.25 nozzle.json index fcfb8a7f140..7e6195aca7d 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.25 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "Anycubic Kobra S1 Max 0.25 nozzle", + "setting_id": "Puudpg2z8v7I6IQA", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra S1 Max 0.25 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.4 nozzle.json index 4c647815c59..482534d2de5 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "Anycubic Kobra S1 Max 0.4 nozzle", + "setting_id": "gI3IJRLKNc1fyiO6", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra S1 Max 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.6 nozzle.json index 63a916be73f..0feeec81046 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "Anycubic Kobra S1 Max 0.6 nozzle", + "setting_id": "p7ilBBLpGn5OYr2e", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra S1 Max 0.6 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.8 nozzle.json index fa706c6327d..172c30885e8 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "Anycubic Kobra S1 Max 0.8 nozzle", + "setting_id": "eD3ZKZ62sl6JMvUr", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra S1 Max 0.8 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra X 0.4 nozzle.json index 72e5707665d..5dc35e55842 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM040", + "setting_id": "tNXmqWS23vQPHt5Y", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra X 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Predator 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Predator 0.4 nozzle.json index 6d767a4179d..7686b955ab2 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Predator 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Predator 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Predator 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "MwdK4pzPlNcVU3eW", "instantiation": "true", "printer_model": "Anycubic Predator", "default_print_profile": "0.20mm Standard @Anycubic Predator", diff --git a/resources/profiles/Anycubic/machine/Anycubic Vyper 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Vyper 0.4 nozzle.json index 862b97e1c75..5bcd1fd9420 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Vyper 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Vyper 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Vyper 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "4dZHITQQJ9IB8MHj", "instantiation": "true", "printer_model": "Anycubic Vyper", "default_print_profile": "0.20mm Standard @Anycubic Vyper", diff --git a/resources/profiles/Anycubic/machine/Anycubic i3 Mega S 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic i3 Mega S 0.4 nozzle.json index f94fbf6621a..9d350990012 100644 --- a/resources/profiles/Anycubic/machine/Anycubic i3 Mega S 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic i3 Mega S 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic i3 Mega S 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "5dhgi6AGtzKSrNiD", "instantiation": "true", "printer_model": "Anycubic i3 Mega S", "default_print_profile": "0.20mm Standard @Anycubic i3MegaS", diff --git a/resources/profiles/Anycubic/process/0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/process/0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json index a4f9f74e3cd..6ba2afe3b3d 100644 --- a/resources/profiles/Anycubic/process/0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json +++ b/resources/profiles/Anycubic/process/0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bZRQrVuJgsKO0PYK", "instantiation": "true", "print_settings_id": "0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "layer_height": "0.06", diff --git a/resources/profiles/Anycubic/process/0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle.json index be5df8d4b62..54a0df5369c 100644 --- a/resources/profiles/Anycubic/process/0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LtQ4DLU2kDaVk34E", "instantiation": "true", "print_settings_id": "0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.08", diff --git a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json index fa758a81878..a4a88b31496 100644 --- a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bt7jNDC4CFGFPH2M", "instantiation": "true", "print_settings_id": "0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.08", diff --git a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json index 64f9ae67cc5..5626bb449ca 100644 --- a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json +++ b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bfq9DtBsHIrbsZfD", "instantiation": "true", "print_settings_id": "0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "layer_height": "0.08", diff --git a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json index 3d95d090506..e49ba929c00 100644 --- a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "E2tI71ShF3oOgMME", "instantiation": "true", "print_settings_id": "0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.08", diff --git a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra X 0.4 nozzle.json index ce03d4d1293..2b02de44b3e 100644 --- a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "y6mNgT0LKSJEmPFE", "instantiation": "true", "print_settings_id": "0.08mm Standard @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.08", diff --git a/resources/profiles/Anycubic/process/0.10mm Detail @Anycubic Kobra 3 0.2 nozzle.json b/resources/profiles/Anycubic/process/0.10mm Detail @Anycubic Kobra 3 0.2 nozzle.json index 2a216e90a34..1e8c4a2c901 100644 --- a/resources/profiles/Anycubic/process/0.10mm Detail @Anycubic Kobra 3 0.2 nozzle.json +++ b/resources/profiles/Anycubic/process/0.10mm Detail @Anycubic Kobra 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Detail @Anycubic Kobra 3 0.2 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "A1AIAEHc3y6zYkv9", "instantiation": "true", "print_settings_id": "0.10mm Detail @Anycubic Kobra 3 0.2 nozzle", "layer_height": "0.1", diff --git a/resources/profiles/Anycubic/process/0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/process/0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json index 92745cc003e..14fe54d5305 100644 --- a/resources/profiles/Anycubic/process/0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json +++ b/resources/profiles/Anycubic/process/0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "OmytVExIkdNyyyKT", "instantiation": "true", "print_settings_id": "0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "layer_height": "0.1", diff --git a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle.json index f8ab5c8bd0d..6fd6f1ace76 100644 --- a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wCpKK52totl5oGWj", "instantiation": "true", "print_settings_id": "0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json index 3a5d63fef93..a33932e0162 100644 --- a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AWLEg4FRuO88XinK", "instantiation": "true", "print_settings_id": "0.12mm Detail @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json index 402386ae4f5..c8d7c6f2842 100644 --- a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004_kobra_neo", + "setting_id": "UPyfWzsf73YJVFb6", "instantiation": "true", "print_settings_id": "0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Anycubic/process/0.12mm High Quality @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm High Quality @Anycubic Kobra X 0.4 nozzle.json index 7b8a19ea170..0a67e8371a8 100644 --- a/resources/profiles/Anycubic/process/0.12mm High Quality @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.12mm High Quality @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm High Quality @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "d4hdmBF6NJ4fWyQv", "instantiation": "true", "print_settings_id": "0.12mm High Quality @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json index 395994f87c7..38fd80bfae0 100644 --- a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ES10Vs7eo1TLB3T5", "instantiation": "true", "print_settings_id": "0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json index 1dce201c942..b20feba94ad 100644 --- a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json +++ b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "z8TDucaoilYiK8V1", "instantiation": "true", "print_settings_id": "0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json index 693c1e7e0cd..99957845b80 100644 --- a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "D1bJFkXoVSZ2QLSA", "instantiation": "true", "print_settings_id": "0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json index 85c47f9697c..29dd4e03f9f 100644 --- a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gxV6IqdjNyzhXzFm", "instantiation": "true", "print_settings_id": "0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json", "layer_height": "0.12", diff --git a/resources/profiles/Anycubic/process/0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/process/0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json index fdea0ece359..b31c2c5af43 100644 --- a/resources/profiles/Anycubic/process/0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json +++ b/resources/profiles/Anycubic/process/0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Hl64YdObrtpqJM2s", "instantiation": "true", "print_settings_id": "0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "layer_height": "0.14", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json index 90ac4314405..35c1d4b30af 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic 4MaxPro2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2Qq27PfeoCqMAZKw", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json index b727ad0ab9b..ff48fca6634 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic Chiron", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fcqsKbEsGbAs6rUU", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra.json index ffb76223be0..e74fae9dadf 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic Kobra", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "E1VHkuwE0sHTzmb2", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json index a165e90c5de..3618dac281f 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic Kobra2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7H2BzvHgy0o9nc1g", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json index decb8e29767..a14a4961dd4 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic KobraMax", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ukTEpT2XRtJyGKUp", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json index 7a7ca61260b..e9746809316 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic KobraPlus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "3Gu40CNOXnzDsZfD", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json index be0251a8a4e..0da034eeb7c 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic Vyper", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ln2Zw2E5e3Azq3nc", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json index a9253a608ea..b4647a7c391 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic i3MegaS", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zKGotAmWJTB14cT8", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json index d158f88254c..04c0b4d8e58 100644 --- a/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Hiz2L1qh67izjl1e", "instantiation": "true", "print_settings_id": "0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra X 0.4 nozzle.json index e15494d4788..055dc89ed1b 100644 --- a/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm High Quality @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aIoPwYRKAgFrpbEv", "instantiation": "true", "print_settings_id": "0.16mm High Quality @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle.json index fdef77ff1a6..13f0e7e127f 100644 --- a/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "goHFyZFYHFEqoSy7", "instantiation": "true", "print_settings_id": "0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle.json index 97f716e4e65..469c3c4ba32 100644 --- a/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TTQdkZA2uJRYHhG2", "instantiation": "true", "print_settings_id": "0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json index 7d795f6f5fe..aab5a3f23cf 100644 --- a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ufqLQ4X2E81IUPzx", "instantiation": "true", "print_settings_id": "0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json index 9ea61a320d0..09ff8e393cf 100644 --- a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5tq9GD9dQXT89WNj", "instantiation": "true", "print_settings_id": "0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json index fee307ecb7c..4b83264a1db 100644 --- a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004_kobra_neo", + "setting_id": "hxhzsMkFHUHBBWq8", "instantiation": "true", "print_settings_id": "0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json index cbe43a40768..edf43e28757 100644 --- a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Yl10d32pjposFVu9", "instantiation": "true", "print_settings_id": "0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra X 0.4 nozzle.json index fb53ce7666f..664f118e3d6 100644 --- a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LGufe8i6pUT0ZqXa", "instantiation": "true", "print_settings_id": "0.16mm Standard @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json index 9b9e21adf0c..ac80f014ab7 100644 --- a/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "v3FDmkDlVsokXSos", "instantiation": "true", "print_settings_id": "0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "layer_height": "0.18", diff --git a/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json index d5ab647545d..4b2fd1df30f 100644 --- a/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Y55zuAyFSNMHZlCt", "instantiation": "true", "print_settings_id": "0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "layer_height": "0.18", diff --git a/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json index 30a033b0afe..f2762324362 100644 --- a/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "M7CigEUqzwefI8ed", "instantiation": "true", "print_settings_id": "0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra X 0.4 nozzle.json index 456ae972a97..75fb6457ea0 100644 --- a/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm High Quality @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LaiwjsXwl634PsXv", "instantiation": "true", "print_settings_id": "0.20mm High Quality @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro.json index 2900a4a7bf4..25fdb2819dc 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic 4MaxPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Kx84xWCL5ioNtf3l", "instantiation": "true", "initial_layer_speed": "40", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json index 4b9c6d59a1d..f0e718b0ff5 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic 4MaxPro2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "4fNa2Y66ms9j0vdh", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json index 30471ae66e7..b92ce992ca5 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Chiron", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "4tYPv79lny7OAesb", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle.json index 97407e08f36..0e65291255d 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2fbYNczU72ALy6dM", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json index 1864c980125..dc555a58381 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fCMzS0xvnXPSn9iq", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle.json index 5c6f12d6278..863a0a0af9c 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2mUrNfcyNc1hCoGP", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle.json index f8e9ed2ad2e..96fa4642c9d 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "nttqa5s1WjUYIjNc", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 0.4 nozzle.json index c100066f8da..5573902ecfb 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zAh3OBPup750aLrS", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json index 5a774acaf56..58b0b90e5ef 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "X2HJTRqzDR7SFGYl", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json index 997dc006b63..b1af0fb13d3 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "SkwyBc3vbgPMjDHU", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "layer_height": "0.20", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json index 0e2f2297191..0626025cc41 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004_kobra_neo", + "setting_id": "3B9LKlmTDiJY4UIT", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 0.4 nozzle.json index 3c5ae5367aa..6a02522e0e3 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BWCmyBN7JsJFOQjp", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra S1 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json index 327aaf2b73b..4a00460633b 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "h9txQrwg5GiCgORR", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra X 0.4 nozzle.json index efd01625084..cbe349b7714 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wvvWF1n9xUOyohpn", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra.json index 5e2cf2dabeb..c9d3e750a33 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PCsMHJ36HdywhVBA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json index fc9ac509301..b68731cb782 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dd3a8DNtunKVpWWY", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json index 91ead18467e..77e3b32b805 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic KobraMax", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pqXeGE9OxboQGBMi", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json index 563f15ebb34..326db3295d7 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic KobraPlus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZnZf41QpEAXorp2U", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Predator.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Predator.json index 4c2723dedaa..ccd1fb897b2 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Predator.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Predator.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Predator", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP001", + "setting_id": "ivQ4JSJ86wwdkFb0", "instantiation": "true", "default_acceleration": "1500", "default_jerk": "9", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json index a0604401589..341ece7befe 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Vyper", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jvz2LYWpcGJVgzZn", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json index d9cc108c6e5..d0eb582143b 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic i3MegaS", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lI7dHvKmsEmoSw1k", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.24mm Draft @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Draft @Anycubic Kobra 3 0.4 nozzle.json index 916e0a2f7f2..2ac098d8a75 100644 --- a/resources/profiles/Anycubic/process/0.24mm Draft @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.24mm Draft @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "xDnGqSIVqiagTsHH", "instantiation": "true", "print_settings_id": "0.24mm Draft @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.24", diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json index 2581762c625..587aaecfe82 100644 --- a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "FnFtwuPyDnMFa7Fj", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.24", diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json index a86f754d770..548f9050fc0 100644 --- a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2qPWqFYU873K8058", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "layer_height": "0.24", diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json index ec94279cf66..aef03dc9b24 100644 --- a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QlMk6ExKnTgt1DJK", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "layer_height": "0.24", diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json index b732b322aaf..28aeb2a4a6d 100644 --- a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "NDu3QAQvTHNboRRR", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.24", diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json index cb9df3a011c..de6d9f4c098 100644 --- a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ehgM1Fri1VLP8d2m", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "layer_height": "0.24", diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json index edd4a7a115a..8d42e7ab86b 100644 --- a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "9oyIahCs4Md5T140", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "layer_height": "0.24", diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra X 0.4 nozzle.json index 04dda6f1a04..e4ca7f30276 100644 --- a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "xTBwuYlea7uuZrkd", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.24", diff --git a/resources/profiles/Anycubic/process/0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle.json index dd3c9c0252c..dcb8ee9848e 100644 --- a/resources/profiles/Anycubic/process/0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5Kt9gP2WLUKkpLz6", "instantiation": "true", "print_settings_id": "0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle", "layer_height": "0.28", diff --git a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json index e5109f344a1..a256d2e6352 100644 --- a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kqlV7SX75vSK4tXQ", "instantiation": "true", "print_settings_id": "0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.28", diff --git a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json index fc6a501064d..5deb25af550 100644 --- a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JN0hfGxiHeef7zc7", "instantiation": "true", "print_settings_id": "0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.28", diff --git a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json index c6e64b4d062..7b19ca18ba4 100644 --- a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004_kobra_neo", + "setting_id": "6hlVHetcYAirKbOG", "instantiation": "true", "print_settings_id": "0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.28", diff --git a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json index 04d8aad6f80..213c1bd438e 100644 --- a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "P21QEQqy7DYRu61b", "instantiation": "true", "print_settings_id": "0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.28", diff --git a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra X 0.4 nozzle.json index dd6f188d406..debbe6e0cf1 100644 --- a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "daFO46LKFCkpDIA1", "instantiation": "true", "print_settings_id": "0.28mm Standard @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.28", diff --git a/resources/profiles/Anycubic/process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json index c1e05690d17..fa16040b962 100644 --- a/resources/profiles/Anycubic/process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2vhe6g90nuRDOMMH", "instantiation": "true", "print_settings_id": "0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.28", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json index 5f8f2107898..974306bcd2a 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic 4MaxPro2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "SnMGK6A5jGzj9KAm", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json index 58cbf663115..0fd1a8efebd 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic Chiron", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "B0Ar6gbysEbWId84", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra.json index 591f57780c3..3ec6a424183 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic Kobra", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jzWHjr9rKzgX2mbz", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json index ad7355611c0..18456d7b992 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic Kobra2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "IWsii200XlEuhz3n", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json index 671ad267b2b..bb3ddf9389c 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic KobraMax", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "IB9gk84SYRkMza9u", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json index 4e3e57e70b4..4190064c903 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic KobraPlus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lSoaR17JUQSesbgG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json index f7f98b2f5f2..e72286dd06c 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic Vyper", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pXawQlRvbdiJJANG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json index 8bd6d77f15b..70bb8ad91ef 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic i3MegaS", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7PNQ3S9tucM5wFyj", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 0.6 nozzle.json index 6c768da89eb..03ed5252c78 100644 --- a/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 0.6 nozzle.json +++ b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Anycubic Kobra 3 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "eCGVCFP3kQylIyrd", "instantiation": "true", "print_settings_id": "0.30mm Standard @Anycubic Kobra 3 0.6 nozzle", "layer_height": "0.3", diff --git a/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json index cb390b04df5..4820247cd20 100644 --- a/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sIuoaZkkyzbslvAX", "instantiation": "true", "print_settings_id": "0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "layer_height": "0.30", diff --git a/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json index 6d116c83583..1c8042a175a 100644 --- a/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "O8vKonzzc8WA5pYY", "instantiation": "true", "print_settings_id": "0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "layer_height": "0.3", diff --git a/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json index 76fe68130fc..745f7847365 100644 --- a/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qzptf1s7j5AK9EiA", "instantiation": "true", "print_settings_id": "0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "layer_height": "0.32", diff --git a/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json index 0cdc37581a3..10b86fe2683 100644 --- a/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "0bCUIOLe0kqiwAIZ", "instantiation": "true", "print_settings_id": "0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "layer_height": "0.32", diff --git a/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json index ce9a786c749..93ff4febe60 100644 --- a/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PvB4L8rGa9HfNAhm", "instantiation": "true", "print_settings_id": "0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "layer_height": "0.36", diff --git a/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json index 9069f4ea475..66eb2797112 100644 --- a/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ii1Ycsf3xI93uZy9", "instantiation": "true", "print_settings_id": "0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "layer_height": "0.36", diff --git a/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json index d3fc636a729..1130f630610 100644 --- a/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json +++ b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Anycubic Kobra 3 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "3TZkjtI8Wk0eZAZb", "instantiation": "true", "print_settings_id": "0.40mm Standard @Anycubic Kobra 3 0.8 nozzle", "layer_height": "0.4", diff --git a/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json index 5292286451c..fadd6675d3d 100644 --- a/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AaPC4BA5LwsTPaBn", "instantiation": "true", "print_settings_id": "0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "layer_height": "0.40", diff --git a/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json index 0046750514c..1085832db4b 100644 --- a/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "O5xBpGApHGyVlyLw", "instantiation": "true", "print_settings_id": "0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "layer_height": "0.4", diff --git a/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json index 3c2eb20b9b1..12b7ec1ebfe 100644 --- a/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jJE6IPMGvUsHtqrZ", "instantiation": "true", "print_settings_id": "0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "layer_height": "0.42", diff --git a/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json index e7f2ea817af..f11acb406f1 100644 --- a/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "rPalfYXk0fCx0yjv", "instantiation": "true", "print_settings_id": "0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "layer_height": "0.42", diff --git a/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json index 52a8025a8cc..98b75e6a31b 100644 --- a/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "I21Rm2YucOA0Kc2g", "instantiation": "true", "print_settings_id": "0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "layer_height": "0.48", diff --git a/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json index 48f510cb137..88705184ec1 100644 --- a/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "y0r7Q7PMNRH8ujFF", "instantiation": "true", "print_settings_id": "0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "layer_height": "0.48", diff --git a/resources/profiles/Anycubic/process/0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json index 51da005e82d..84ab9fa4834 100644 --- a/resources/profiles/Anycubic/process/0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/process/0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "rOL0gJh6Y7pDsBnk", "instantiation": "true", "print_settings_id": "0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "layer_height": "0.56", diff --git a/resources/profiles/Artillery.json b/resources/profiles/Artillery.json index 09fd18b30e4..a610fdbaf68 100644 --- a/resources/profiles/Artillery.json +++ b/resources/profiles/Artillery.json @@ -1,6 +1,6 @@ { "name": "Artillery", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Artillery configurations", "machine_model_list": [ diff --git a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.2 nozzle.json index 4c18ea91ec2..b468e95d513 100644 --- a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ABS @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "m023Z8IkkHMHxuag", "filament_id": "P39db358", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.4 nozzle.json index 527303f59f5..f21c7a5a313 100644 --- a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery ABS @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "QGbNWGw8rqvq025W", "instantiation": "true", "chamber_temperature": [ "50" diff --git a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.6 nozzle.json index 7330e071954..8516077d0a9 100644 --- a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ABS @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "PxGFsoMcfFrTDqzL", "filament_id": "P39db358", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.8 nozzle.json index b64f564dd60..1bd222ade69 100644 --- a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ABS @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "o4JZKQmCdnO0hCXZ", "filament_id": "P39db358", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery ABS.json b/resources/profiles/Artillery/filament/Artillery ABS.json index aeaa42eec52..111c2c39a14 100644 --- a/resources/profiles/Artillery/filament/Artillery ABS.json +++ b/resources/profiles/Artillery/filament/Artillery ABS.json @@ -3,6 +3,7 @@ "name": "Artillery ABS", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "fsbfMiamVemzRxkG", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.2 nozzle.json index ec3a56ae84b..9894337b5c6 100644 --- a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ASA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "AE7wKVIZXHXSXzL5", "filament_id": "P87436f6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.4 nozzle.json index bf05ec519a3..eb4a720cc36 100644 --- a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery ASA @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "eSwM3ZfSBWqR8Gcf", "instantiation": "true", "chamber_temperature": [ "55" diff --git a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.6 nozzle.json index 8d30e406152..422b050df8d 100644 --- a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ASA @Artillery M1 Pro 0.6 nozzle", "from": "User", + "setting_id": "znMfTFfxvJC7a732", "filament_id": "P87436f6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.8 nozzle.json index 39a6dea2df6..16a9ff7c3dd 100644 --- a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ASA @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "y2DU36j0slaHzg04", "filament_id": "P87436f6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery Generic ABS.json b/resources/profiles/Artillery/filament/Artillery Generic ABS.json index 47b7cddff51..df06b7f8446 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic ABS.json +++ b/resources/profiles/Artillery/filament/Artillery Generic ABS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "C4oiu2SBLwfTEcXu", "name": "Artillery Generic ABS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery Generic ASA.json b/resources/profiles/Artillery/filament/Artillery Generic ASA.json index e79c4cf9703..e3b8cc1f93e 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic ASA.json +++ b/resources/profiles/Artillery/filament/Artillery Generic ASA.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB98", - "setting_id": "GFSA04", + "setting_id": "1gls4zCclgN68Hlc", "name": "Artillery Generic ASA", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery Generic PETG.json b/resources/profiles/Artillery/filament/Artillery Generic PETG.json index 0c451725fc6..cc2f29e8752 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic PETG.json +++ b/resources/profiles/Artillery/filament/Artillery Generic PETG.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSA04", + "setting_id": "Ou4NR5DVvalg5kCe", "name": "Artillery Generic PETG", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery Generic PLA-CF.json b/resources/profiles/Artillery/filament/Artillery Generic PLA-CF.json index a12243a19d7..7c1a231dbcf 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic PLA-CF.json +++ b/resources/profiles/Artillery/filament/Artillery Generic PLA-CF.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL98", - "setting_id": "GFSA04", + "setting_id": "h23GL00BFCliLh9N", "name": "Artillery Generic PLA-CF", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery Generic PLA.json b/resources/profiles/Artillery/filament/Artillery Generic PLA.json index 31cca4841e6..1211c22b3c2 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic PLA.json +++ b/resources/profiles/Artillery/filament/Artillery Generic PLA.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "Bpy4tAvspysDWosL", "name": "Artillery Generic PLA", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery Generic TPU.json b/resources/profiles/Artillery/filament/Artillery Generic TPU.json index bee1d4e4ce7..ff724d19251 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic TPU.json +++ b/resources/profiles/Artillery/filament/Artillery Generic TPU.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFU99", - "setting_id": "GFSA04", + "setting_id": "u8YE6r4sGJ0jvqBn", "name": "Artillery Generic TPU", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery PA @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PA @Artillery M1 Pro 0.4 nozzle.json index 16a9d66a409..756e67a5e21 100644 --- a/resources/profiles/Artillery/filament/Artillery PA @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PA @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PA @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "lOsH1teHe8Pgzx2g", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PA-CF @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PA-CF @Artillery M1 Pro 0.4 nozzle.json index 416ae1f61f0..ec9009a5e1d 100644 --- a/resources/profiles/Artillery/filament/Artillery PA-CF @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PA-CF @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PA-CF @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "b4BKJMUxArvLuEOh", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PC @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PC @Artillery M1 Pro 0.4 nozzle.json index 43a4cd66aab..4fa54353f07 100644 --- a/resources/profiles/Artillery/filament/Artillery PC @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PC @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PC @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "WawbnfhWn4MT6Hz7", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.2 nozzle.json index 11ca5278766..6fd06c0d66f 100644 --- a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PET @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "a5jwQ6nyffW1Vqv1", "filament_id": "P11851ba", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.4 nozzle.json index ad8fa315e7b..a82b3b79486 100644 --- a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PET @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "QeiSAakfMW7HyhJ7", "instantiation": "true", "chamber_temperature": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.6 nozzle.json index 3e662fbb067..26e71cefc8b 100644 --- a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PET @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "VGu7C3uk8d6ibIg4", "filament_id": "P11851ba", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.8 nozzle.json index 075bfde2e18..b5461ec03c3 100644 --- a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PET @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "Oj11BhU0QajmDrh3", "filament_id": "P11851ba", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.2 nozzle.json index 86a78ccb090..5ed45d7e7d2 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "kAlZ7nCYo53UVVx3", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.4 nozzle.json index 70e0ee64bda..f6bbdd3cef7 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PETG @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "g7UIfJTOPzMQzfrH", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.6 nozzle.json index 3821c0a681a..3fcc8e175bf 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "uuPf0MfNTZ2lihtG", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.8 nozzle.json index ff965670c68..4842427a49b 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG @Artillery M1 Pro 0.8 nozzle", "from": "User", + "setting_id": "dQBp2T4ap90uAOYs", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.2 nozzle.json index 39ae6a71363..03fc583bfaf 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG Basic @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "GrdWgUGdXt23jnBu", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.4 nozzle.json index c967ad175e9..b8a3c33acd9 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PETG Basic @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "RTQvSwJBWnut5aBo", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.6 nozzle.json index 6198724fb62..3ab0575058a 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG Basic @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "Wkt1IClO4nwH3Xa7", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.8 nozzle.json index a19ee276a16..2b83852a343 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG Basic @Artillery M1 Pro 0.8 nozzle", "from": "User", + "setting_id": "Zlvodz3cris0hmof", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG-CF @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG-CF @Artillery M1 Pro 0.4 nozzle.json index 953f8c51626..22d124da463 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG-CF @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG-CF @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PETG-CF @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "JvmeW29kHCp7HiA6", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Artillery/filament/Artillery PETG.json b/resources/profiles/Artillery/filament/Artillery PETG.json index 156b6af9c6c..ecea0ae80b1 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG.json +++ b/resources/profiles/Artillery/filament/Artillery PETG.json @@ -3,6 +3,7 @@ "name": "Artillery PETG", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "1MyhYGMxJCmZnJRP", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.2 nozzle.json index 92000f3c641..258f94de1ad 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PLA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "sqlU8YRYqavJBap3", "filament_id": "Pfcf9c4c", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.6 nozzle.json index 7929e9f9a28..573a8886626 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PLA @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "7V8Vj5ykHmTYtxcC", "filament_id": "Pfcf9c4c", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.8 nozzle.json index 17d9eb76436..340947ce240 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PLA @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "J8rOxOcsB6HN00HI", "filament_id": "Pfcf9c4c", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle.json index 13614b29e7d..cee58991c82 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "N3iYnDshA5ruihVE", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.4 nozzle.json index 68399984451..56498727fa4 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "zBUD1JyuZF9MOncA", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle.json index aef8546dec7..884e7d428ef 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "NKkZjEtDjxOMLjoo", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle.json index a2bd2634411..cffdcde5ed2 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "c9BAMzt2w30nB2rC", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic+ @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Basic+ @Artillery M1 Pro 0.4 nozzle.json index 1793998f5ff..18e7f77ad49 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic+ @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic+ @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic+ @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "2VIrSoq3kufjHMXj", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "100" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic.json b/resources/profiles/Artillery/filament/Artillery PLA Basic.json index 00991a28daf..052ceac5e5a 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "DcGBMRjdcgLx6pWG", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle.json index 654239e8b59..aff1bcb3cb6 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "tgmFMdyhSX05kuxw", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.4 nozzle.json index 123fec2e8a0..abd44e77d12 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Matte @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "9zqAIfywiv9zm77X", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle.json index 012c4a61215..a1fc1e59998 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "W6ipHAoCgHIUIT3g", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.8 nozzle.json index 2584bd461ee..4217f6836d5 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Matte @Artillery M1 Pro 0.8 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "HggSuUWe1zWOlQIK", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Matte.json b/resources/profiles/Artillery/filament/Artillery PLA Matte.json index d96703637a9..83e40133aa2 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Matte.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Matte.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Matte", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "kt8uKXpMqxrFrHaG", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle.json index 29bb1ad3d4b..d2f31848647 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "TDwRIGXkpJIW38jG", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.4 nozzle.json index 93eb32c4210..e8d65f465b7 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Silk @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "BWMjPUWXwumQoY5H", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle.json index 127c60e8293..ce102bb3645 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "PpuiGWbDlVZwBIxb", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.8 nozzle.json index 27b24b56d97..6fb25927e3b 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Silk @Artillery M1 Pro 0.8 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.8 nozzle", "from": "User", + "setting_id": "dr2wlzDc1AC3tciI", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Silk.json b/resources/profiles/Artillery/filament/Artillery PLA Silk.json index a9518ce7cb7..85cd2eec082 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Silk.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Silk.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Silk", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "rd0U4uP6mM8S8lDg", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery PLA Tough.json b/resources/profiles/Artillery/filament/Artillery PLA Tough.json index e1e7ed2789b..8f1ce758b55 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Tough.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Tough.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Tough", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "hLFvQXsyyUrguGEp", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery PLA-CF @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA-CF @Artillery M1 Pro 0.4 nozzle.json index b295fd6b917..36c7d69b83f 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA-CF @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA-CF @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA-CF @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "oT12s9CEV1CTD6eB", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.2 nozzle.json index 4977538e4a7..f7f700fa96b 100644 --- a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PVA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "FIcb3cOIanxmvHe2", "filament_id": "P8163162", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.4 nozzle.json index f5f35a105e0..4c558166c56 100644 --- a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PVA @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "r2q4QIlfTUCIz43f", "instantiation": "true", "chamber_temperature": [ "50" diff --git a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.6 nozzle.json index f9e4dd88483..b15f1918786 100644 --- a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PVA @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "h5xquKMT9l0rwcTU", "filament_id": "P8163162", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.8 nozzle.json index 3a659c01dd2..1e682947c2e 100644 --- a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PVA @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "cElJlbCAgAqSQiPZ", "filament_id": "P8163162", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.4 nozzle.json index eaae0281369..d722aa592f5 100644 --- a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery TPU @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "p6vnCneuwtM0PzL7", "instantiation": "true", "close_fan_the_first_x_layers": [ "1" diff --git a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.6 nozzle.json index 83f2e1138f9..9d29c06e420 100644 --- a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery TPU @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "QIgpIamYbSdI4DPW", "filament_id": "P2fbf0c0", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.8 nozzle.json index dfbc8c7fd10..d323279979b 100644 --- a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery TPU @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "W22GbPPOgtH4NAAH", "filament_id": "P2fbf0c0", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery TPU.json b/resources/profiles/Artillery/filament/Artillery TPU.json index d8da5a6a250..b769e8c61a2 100644 --- a/resources/profiles/Artillery/filament/Artillery TPU.json +++ b/resources/profiles/Artillery/filament/Artillery TPU.json @@ -3,6 +3,7 @@ "name": "Artillery TPU", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "IcV1jLJaS5rmdNOY", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/machine/Artillery Genius 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Genius 0.4 nozzle.json index 9a6201acbde..d9b85067a15 100644 --- a/resources/profiles/Artillery/machine/Artillery Genius 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Genius 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM003", + "setting_id": "F9lEQfH826Mqt6u3", "name": "Artillery Genius 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/machine/Artillery Genius Pro 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Genius Pro 0.4 nozzle.json index f9a948f0f2e..07beadf5469 100644 --- a/resources/profiles/Artillery/machine/Artillery Genius Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Genius Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM003", + "setting_id": "afpW4NvrOWzQvHbB", "name": "Artillery Genius Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/machine/Artillery Hornet 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Hornet 0.4 nozzle.json index 0cdc03b4e46..4aa9f9d9a41 100644 --- a/resources/profiles/Artillery/machine/Artillery Hornet 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Hornet 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM003", + "setting_id": "02YSChoFQuBRQ8vf", "name": "Artillery Hornet 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.2 nozzle.json index bfd4b9b885c..e5617c4fe6a 100644 --- a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "machine", "name": "Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "o6k3pZtOPuDdgiBX", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.4 nozzle.json index 41e89dcf1ea..a265906570f 100644 --- a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM007", + "setting_id": "IiEdnorTA9zHd33j", "instantiation": "true", "is_artillery": "1", "emit_machine_limits_to_gcode": "1", diff --git a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.6 nozzle.json index ca8b18950a1..85be2e70be5 100644 --- a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "machine", "name": "Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "8hI1uCr4i2vAl0wn", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.8 nozzle.json index 1629b794a15..db91e5320b5 100644 --- a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "machine", "name": "Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "XRihoaBgTTi4xZeN", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X1 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X1 0.4 nozzle.json index 9305ac9c26b..81e96a2593b 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X1 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X1 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM003", + "setting_id": "nY4RXX9Ylh7AIc4U", "name": "Artillery Sidewinder X1 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X2 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X2 0.4 nozzle.json index c3d1ff4af77..b3100851fbd 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X2 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM003", + "setting_id": "cUhse9TrF7ElM5dh", "name": "Artillery Sidewinder X2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Plus 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Plus 0.4 nozzle.json index 2b301997036..42e66ff8757 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Artillery Sidewinder X3 Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM005", + "setting_id": "kYxFDURI6G6xkM0G", "instantiation": "true", "printer_model": "Artillery Sidewinder X3 Plus", "default_print_profile": "0.20mm Standard @Artillery Genius", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Pro 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Pro 0.4 nozzle.json index 44abb534426..3b12ce6ede5 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Artillery Sidewinder X3 Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM004", + "setting_id": "KYpHdc1Ckp5Qh8So", "instantiation": "true", "printer_model": "Artillery Sidewinder X3 Pro", "default_print_profile": "0.20mm Standard @Artillery Genius", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Plus 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Plus 0.4 nozzle.json index 47dd74a6cf2..b9013a99bf2 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Artillery Sidewinder X4 Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM006", + "setting_id": "ye6pO8K8ZFpvlRGW", "instantiation": "true", "printer_model": "Artillery Sidewinder X4 Plus", "printer_settings_id": "Artillery X4Plus 0.4 nozzle", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Pro 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Pro 0.4 nozzle.json index 2c46fd17d7d..4642e015a19 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Artillery Sidewinder X4 Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM007", + "setting_id": "7cLTEGUDiY31gDxn", "instantiation": "true", "printer_model": "Artillery Sidewinder X4 Pro", "printer_settings_id": "Artillery X4Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/process/0.06mm High Quality @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.06mm High Quality @Artillery M1 Pro 0.2 nozzle.json index 453a2798938..62fce301133 100644 --- a/resources/profiles/Artillery/process/0.06mm High Quality @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.06mm High Quality @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.06mm High Quality @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "yjALHQJzGGaE4nMS", "instantiation": "true", "initial_layer_speed": "30", "layer_height": "0.06", diff --git a/resources/profiles/Artillery/process/0.06mm Standard @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.06mm Standard @Artillery M1 Pro 0.2 nozzle.json index 8172e18fc3a..89def78666f 100644 --- a/resources/profiles/Artillery/process/0.06mm Standard @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.06mm Standard @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.06mm Standard @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "GGVrn86YvCTCKZO0", "instantiation": "true", "default_acceleration": "10000", "initial_layer_speed": "30", diff --git a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery M1 Pro 0.4 nozzle.json index c89ee8e095b..a1175a96f54 100644 --- a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "QF2Yc6fHJtqBPrXv", "instantiation": "true", "default_acceleration": "10000", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_M1Pro.gcode", diff --git a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Plus 0.4 nozzle.json index fa5672a3a14..44b3f1631dc 100644 --- a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "OmUulk4l2blPQkQ6", "instantiation": "true", "initial_layer_print_height": "0.2", "internal_solid_infill_line_width": "0.42", diff --git a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Pro 0.4 nozzle.json index a527379ef87..4afcf0d5366 100644 --- a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "vY9gUUB7AiAFercJ", "instantiation": "true", "initial_layer_print_height": "0.2", "internal_solid_infill_line_width": "0.42", diff --git a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.2 nozzle.json index ce5ad5c7f1b..929fafed815 100644 --- a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "YmxzYTHsl0LXG2bA", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", diff --git a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.4 nozzle.json index 912a4cb7026..5a53fa08fd2 100644 --- a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm High Quality @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "HNsKMUSaLsnb56Mf", "instantiation": "true", "default_acceleration": "4000", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_M1Pro.gcode", diff --git a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Plus 0.4 nozzle.json index 60d7884bb3a..18239301c79 100644 --- a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm High Quality @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "t7RZ1WqjOTKtTvTM", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Pro 0.4 nozzle.json index 35a9413adeb..c416051fd70 100644 --- a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm High Quality @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "bvdtnW6gJqWSXpgx", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.08mm Standard @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.08mm Standard @Artillery M1 Pro 0.2 nozzle.json index cff1fb582ea..2b24780c18b 100644 --- a/resources/profiles/Artillery/process/0.08mm Standard @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm Standard @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Standard @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "tBkgo42o4VJmt6fi", "instantiation": "true", "default_acceleration": "10000", "outer_wall_acceleration": "5000", diff --git a/resources/profiles/Artillery/process/0.10mm High Quality @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.10mm High Quality @Artillery M1 Pro 0.2 nozzle.json index 7fd222d21f0..fe6847d4ad2 100644 --- a/resources/profiles/Artillery/process/0.10mm High Quality @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.10mm High Quality @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm High Quality @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "FksB6fr8muTxgySq", "instantiation": "true", "layer_height": "0.1", "print_settings_id": "0.10mm High Quality @Artillery M1 Pro 0.2 nozzle" diff --git a/resources/profiles/Artillery/process/0.10mm Standard @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.10mm Standard @Artillery M1 Pro 0.2 nozzle.json index 433a8131cc9..d126cb7f2df 100644 --- a/resources/profiles/Artillery/process/0.10mm Standard @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.10mm Standard @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "MlIENHkEv5irBncX", "instantiation": "true", "default_acceleration": "10000", "layer_height": "0.1", diff --git a/resources/profiles/Artillery/process/0.12mm Fine @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm Fine @Artillery M1 Pro 0.4 nozzle.json index 8384c1cdc6d..a7647a1f00f 100644 --- a/resources/profiles/Artillery/process/0.12mm Fine @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm Fine @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "x77JwohWlmbh4qgO", "instantiation": "true", "bottom_shell_layers": "5", "default_acceleration": "10000", diff --git a/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Plus 0.4 nozzle.json index f9f92816ee9..a1c6eaf5ea5 100644 --- a/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "sO9baFXRvMQahUO5", "instantiation": "true", "initial_layer_print_height": "0.2", "internal_solid_infill_line_width": "0.42", diff --git a/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Pro 0.4 nozzle.json index c24d9473763..e0246540b85 100644 --- a/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "5ZEec1wnkgABwHco", "instantiation": "true", "initial_layer_print_height": "0.2", "internal_solid_infill_line_width": "0.42", diff --git a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery M1 Pro 0.4 nozzle.json index 73eb6f2de02..b6f6ae5347e 100644 --- a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm High Quality @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "NnbXJ8LEQMO0jp4U", "instantiation": "true", "bottom_shell_layers": "5", "default_acceleration": "4000", diff --git a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Plus 0.4 nozzle.json index 004f65edc19..99345dbb099 100644 --- a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm High Quality @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "FaKYo6nzKhI0Z011", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Pro 0.4 nozzle.json index a9a88313644..db7e682ad7e 100644 --- a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm High Quality @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "DWIk4uCd9AbHEo6P", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.12mm Standard @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.12mm Standard @Artillery M1 Pro 0.2 nozzle.json index bb0b154e8e5..bc1fd76e6d1 100644 --- a/resources/profiles/Artillery/process/0.12mm Standard @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm Standard @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Standard @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "6zREvsM8m1lrSSXd", "instantiation": "true", "default_acceleration": "10000", "layer_height": "0.12", diff --git a/resources/profiles/Artillery/process/0.14mm Standard @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.14mm Standard @Artillery M1 Pro 0.2 nozzle.json index 268ea189b29..c94d97c63d0 100644 --- a/resources/profiles/Artillery/process/0.14mm Standard @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.14mm Standard @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.14mm Standard @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "2s1GRYNjuHNG5KIs", "instantiation": "true", "default_acceleration": "10000", "layer_height": "0.14", diff --git a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json index 4038633a0aa..8112e2e6099 100644 --- a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json +++ b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "lF4fXJjfALsU4vVF", "name": "0.15mm Optimal @Artillery Genius Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json index 05b273eaa05..9a6cac5becb 100644 --- a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json +++ b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "vo47lgntuWkTLKZb", "name": "0.15mm Optimal @Artillery Genius", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery M1 Pro 0.4 nozzle.json index 543be5a4642..238359be483 100644 --- a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.16mm High Quality @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "dSOnw27edcrR4o46", "instantiation": "true", "bottom_shell_layers": "4", "default_acceleration": "4000", diff --git a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Plus 0.4 nozzle.json index c0bf7fe2f81..2e8d9db8bc6 100644 --- a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.16mm High Quality @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "jBHKTmqFc3PVi59U", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Pro 0.4 nozzle.json index f96c08bec9b..87daa994a9f 100644 --- a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.16mm High Quality @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "mDIvOenbjjpSNKyQ", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json index 9e1e28b7fad..25d53a28f77 100644 --- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json +++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "XEpSP538KuWRSmGA", "name": "0.16mm Optimal @Artillery Hornet", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery M1 Pro 0.4 nozzle.json index dd8991d9703..a31ce771ada 100644 --- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "aAfwz34MwaEgtwUF", "instantiation": "true", "bottom_shell_layers": "4", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_M1Pro.gcode", diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json index e95d4207b73..06244e2d4a0 100644 --- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json +++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "3bBfTCC809w3YcXr", "name": "0.16mm Optimal @Artillery X1", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Plus 0.4 nozzle.json index 8216b1c646b..12cb5004c02 100644 --- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "74JozXicjuBdCW7R", "instantiation": "true", "initial_layer_print_height": "0.2", "inner_wall_speed": "150", diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Pro 0.4 nozzle.json index f5aa888f5ea..2713494e7c5 100644 --- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "IfymREBi4rl7oSEc", "instantiation": "true", "initial_layer_print_height": "0.2", "internal_solid_infill_line_width": "0.42", diff --git a/resources/profiles/Artillery/process/0.18mm Standard @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.18mm Standard @Artillery M1 Pro 0.6 nozzle.json index eb4981715c0..c9df7f5833f 100644 --- a/resources/profiles/Artillery/process/0.18mm Standard @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.18mm Standard @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.18mm Standard @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "5lMFP3Wy0cSIDOwA", "instantiation": "true", "layer_height": "0.18", "print_settings_id": "0.18mm Standard @Artillery M1 Pro 0.6 nozzle", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json index c325bcded1a..99516c77328 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CsTy51kncEm8X0yJ", "name": "0.20mm Standard @Artillery Genius Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json index 76d78c1e129..0a36259661b 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "lzsTJzIBChXesgUG", "name": "0.20mm Standard @Artillery Genius", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json index af408f5411a..b8eecf1f0fd 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "i2UAXXKCEaBJmX5R", "name": "0.20mm Standard @Artillery Hornet", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery M1 Pro 0.4 nozzle.json index a5e12d58e3e..3baeec4a3b9 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "9dVH4oV6niEWJpMU", "instantiation": "true", "bottom_shell_layers": "3", "brim_type": "no_brim", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json index 260119f8bd9..fcb3b2fea13 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "A2tF591xYPxvYPYn", "name": "0.20mm Standard @Artillery X1", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json index b77b66cce9b..815e9b00c0c 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Uuco1eKObqt1aypG", "name": "0.20mm Standard @Artillery X2", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Plus 0.4 nozzle.json index d2e8e3c47da..b13efe200b2 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Artillery X3Plus 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "NIfaLn1TsPL1ofx7", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Pro 0.4 nozzle.json index b550831c47c..264a3e5f150 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Artillery X3Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "SwsU8x0FgAa4zu3n", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Plus 0.4 nozzle.json index 371cf4af0cc..8bf69da2672 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "mkmduwO5DkaKKmHC", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Pro 0.4 nozzle.json index c5314cf2148..56f172e9419 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "ul9qsUxPgW3DpGtk", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", diff --git a/resources/profiles/Artillery/process/0.20mm Strength @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Strength @Artillery M1 Pro 0.4 nozzle.json index 0a2eb731858..837e4eb6a75 100644 --- a/resources/profiles/Artillery/process/0.20mm Strength @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.20mm Strength @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.20mm Strength @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "KswPAAYezpKlVDY4", "instantiation": "true", "bottom_shell_layers": "3", "default_acceleration": "10000", diff --git a/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Plus 0.4 nozzle.json index 90b325c6731..f7354759cd9 100644 --- a/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.20mm Strength @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "f3IylWXlIgJGcZVl", "instantiation": "true", "outer_wall_speed": "60", "print_settings_id": "0.20mm Strength @Artillery X4Plus 0.4 nozzle", diff --git a/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Pro 0.4 nozzle.json index c5a061bc0d3..5332ebef2ee 100644 --- a/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.20mm Strength @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "yKWFscwmMJUXqfZx", "instantiation": "true", "outer_wall_speed": "60", "print_settings_id": "0.20mm Strength @Artillery X4Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json index d4f8cf2a0ad..33893b53df3 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "vK3z8VB7eFi5wSEy", "name": "0.24mm Draft @Artillery Hornet", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.4 nozzle.json index 4b4f7381881..d175fb9f9dc 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "ZzpGr7z94TVfX4mq", "instantiation": "true", "bottom_shell_layers": "3", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_M1Pro.gcode", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.6 nozzle.json index cc263a85b10..5f3c183e51b 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "ex2FH49ORQnD1yqa", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.8 nozzle.json index 1dc4a6ac095..38a240bad56 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "I4dmTQMzFSL2kRs4", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json index f9c48c03003..6abc7422653 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "pMfIpILEXxTfa574", "name": "0.24mm Draft @Artillery X1", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Plus 0.4 nozzle.json index 5a3e219bce9..9a49edcc901 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "krzkGt2IApYkTbyY", "instantiation": "true", "initial_layer_print_height": "0.2", "layer_height": "0.24", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Pro 0.4 nozzle.json index 07b3949fa0c..32585de1e2e 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "mqI6PUPKUuiXSsEK", "instantiation": "true", "initial_layer_print_height": "0.2", "layer_height": "0.24", diff --git a/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.6 nozzle.json index 45fcb7a801c..69d6026b48b 100644 --- a/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "5Yzcw1B4GIP2WCyU", "instantiation": "true", "detect_thin_wall": "0", "print_settings_id": "0.24mm Standard @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.8 nozzle.json index 13ee07fba7e..05c25620c36 100644 --- a/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @Artillery M1 Pro 0.8 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "1UVaGo1CgrBK06bL", "instantiation": "true", "bottom_shell_layers": "3", "print_settings_id": "0.24mm Standard @Artillery M1 Pro 0.8 nozzle" diff --git a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json index baca53025c9..500c4926595 100644 --- a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json +++ b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "OGYrkEdpgzTfzZLw", "name": "0.25mm Draft @Artillery Genius Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json index e6368c472e0..f17fd835936 100644 --- a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json +++ b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "UditC85gTRgxvpSp", "name": "0.25mm Draft @Artillery Genius", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery M1 Pro 0.4 nozzle.json index 652a43780e4..65408762957 100644 --- a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "93PArensP4A479N1", "instantiation": "true", "bottom_shell_layers": "3", "default_acceleration": "10000", diff --git a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Plus 0.4 nozzle.json index 748d11ff8d9..11a9f747b04 100644 --- a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "tkyrVk3kwrsJD0id", "instantiation": "true", "initial_layer_print_height": "0.2", "layer_height": "0.28", diff --git a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Pro 0.4 nozzle.json index 2a394d3ef4a..077463cfe41 100644 --- a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "cUbUCL09wxToqm8D", "instantiation": "true", "initial_layer_print_height": "0.2", "layer_height": "0.28", diff --git a/resources/profiles/Artillery/process/0.30mm Standard @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.30mm Standard @Artillery M1 Pro 0.6 nozzle.json index b4f3b28710c..faf535fe889 100644 --- a/resources/profiles/Artillery/process/0.30mm Standard @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.30mm Standard @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.30mm Standard @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "cYp2DoLjg70Kafug", "instantiation": "true", "detect_thin_wall": "0", "layer_height": "0.3", diff --git a/resources/profiles/Artillery/process/0.30mm Strength @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.30mm Strength @Artillery M1 Pro 0.6 nozzle.json index b09a18af17b..a03af457f03 100644 --- a/resources/profiles/Artillery/process/0.30mm Strength @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.30mm Strength @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.30mm Strength @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "HyRUZ0WuFbg8EY6N", "instantiation": "true", "initial_layer_infill_speed": "55", "initial_layer_speed": "35", diff --git a/resources/profiles/Artillery/process/0.32mm Standard @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.32mm Standard @Artillery M1 Pro 0.8 nozzle.json index 33e2170c802..b0abbbb6b0d 100644 --- a/resources/profiles/Artillery/process/0.32mm Standard @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/process/0.32mm Standard @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.32mm Standard @Artillery M1 Pro 0.8 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "BcNE4DUXFgcFm3Lv", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.32", diff --git a/resources/profiles/Artillery/process/0.36mm Standard @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.36mm Standard @Artillery M1 Pro 0.6 nozzle.json index b58e831aecd..0e391f70abf 100644 --- a/resources/profiles/Artillery/process/0.36mm Standard @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.36mm Standard @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.36mm Standard @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "VIJcOU9p4IpiqaR9", "instantiation": "true", "layer_height": "0.36", "print_settings_id": "0.36mm Standard @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/process/0.40mm Standard @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.40mm Standard @Artillery M1 Pro 0.8 nozzle.json index 39a4d487410..dc129e03794 100644 --- a/resources/profiles/Artillery/process/0.40mm Standard @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/process/0.40mm Standard @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.40mm Standard @Artillery M1 Pro 0.8 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "LfZjT6ofWiFLPIWP", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.4", diff --git a/resources/profiles/Artillery/process/0.42mm Standard @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.42mm Standard @Artillery M1 Pro 0.6 nozzle.json index 0fd0282ad06..39665a1ccf5 100644 --- a/resources/profiles/Artillery/process/0.42mm Standard @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.42mm Standard @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "Kc4Z2rwQkMXX19tk", "instantiation": "true", "layer_height": "0.42", "print_settings_id": "0.42mm Standard @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/process/0.48mm Standard @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.48mm Standard @Artillery M1 Pro 0.8 nozzle.json index 83a9fdac0a6..eadfade02c5 100644 --- a/resources/profiles/Artillery/process/0.48mm Standard @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/process/0.48mm Standard @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.48mm Standard @Artillery M1 Pro 0.8 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "q89egMqcu5vwK6D2", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.48", diff --git a/resources/profiles/Artillery/process/0.56mm Standard @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.56mm Standard @Artillery M1 Pro 0.8 nozzle.json index b3f55ec91d0..1b11fc83429 100644 --- a/resources/profiles/Artillery/process/0.56mm Standard @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/process/0.56mm Standard @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.56mm Standard @Artillery M1 Pro 0.8 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "zsfD9umab8v4UWTM", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.56", diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index 65e1586830d..0c736e5d122 100644 --- a/resources/profiles/BBL.json +++ b/resources/profiles/BBL.json @@ -1,7 +1,7 @@ { "name": "Bambulab", "url": "http://www.bambulab.com/Parameters/vendor/BBL.json", - "version": "02.01.00.16", + "version": "02.01.00.17", "force_update": "0", "description": "BBL configurations", "machine_model_list": [ diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json index b78033c2ac1..c94baa16f80 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PA-CF @P1-X1", "inherits": "AliZ PA-CF @base", "from": "system", - "setting_id": "AliZPX1FSA04", + "setting_id": "AliZ003_00", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json index 97fe6ec6f63..9549920f5a2 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PETG @P1-X1", "inherits": "AliZ PETG @base", "from": "system", - "setting_id": "AliZPX1FSA04", + "setting_id": "AliZ001_00", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json index 797a3879405..be611e7ee71 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PETG-CF @P1-X1", "inherits": "AliZ PETG-CF @base", "from": "system", - "setting_id": "AliZPX1FSG50", + "setting_id": "AZ01-1_00", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PETG-Metal @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PETG-Metal @P1-X1.json index 1bfcba66521..b25bfa6521d 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PETG-Metal @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PETG-Metal @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PETG-Metal @P1-X1", "inherits": "AliZ PETG-Metal @base", "from": "system", - "setting_id": "AliZPX1FSG50", + "setting_id": "AZ01-2_00", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json index 095c5ab58b5..c60138f745d 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PLA @P1-X1", "inherits": "AliZ PLA @base", "from": "system", - "setting_id": "AliZPX1FSA04", + "setting_id": "AliZ002_00", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BIQU.json b/resources/profiles/BIQU.json index 4cdfde4adaf..6c28578e823 100644 --- a/resources/profiles/BIQU.json +++ b/resources/profiles/BIQU.json @@ -1,6 +1,6 @@ { "name": "BIQU", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "BIQU configurations", "machine_model_list": [ diff --git a/resources/profiles/BIQU/machine/BIQU B1 (0.4 nozzle).json b/resources/profiles/BIQU/machine/BIQU B1 (0.4 nozzle).json index 5c612636fcd..1f98c673e8c 100644 --- a/resources/profiles/BIQU/machine/BIQU B1 (0.4 nozzle).json +++ b/resources/profiles/BIQU/machine/BIQU B1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "BIQU B1 (0.4 nozzle)", "inherits": "fdm_biqu_common", "from": "system", - "setting_id": "GM001", + "setting_id": "YmXhSXftWo9gFxGH", "instantiation": "true", "printer_model": "BIQU B1", "default_print_profile": "0.20mm Standard @BIQU B1 (0.4 nozzle)", diff --git a/resources/profiles/BIQU/machine/BIQU BX (0.4 nozzle).json b/resources/profiles/BIQU/machine/BIQU BX (0.4 nozzle).json index bdd391ce69a..8acfe769257 100644 --- a/resources/profiles/BIQU/machine/BIQU BX (0.4 nozzle).json +++ b/resources/profiles/BIQU/machine/BIQU BX (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "BIQU BX (0.4 nozzle)", "inherits": "fdm_biqu_common", "from": "system", - "setting_id": "GM001", + "setting_id": "SPFU6hzjCMM2wcSN", "instantiation": "true", "printer_model": "BIQU BX", "default_print_profile": "0.20mm Standard @BIQU BX (0.4 nozzle)", diff --git a/resources/profiles/BIQU/machine/BIQU Hurakan (0.4 nozzle).json b/resources/profiles/BIQU/machine/BIQU Hurakan (0.4 nozzle).json index fc7c2422f76..cc0e00d7e05 100644 --- a/resources/profiles/BIQU/machine/BIQU Hurakan (0.4 nozzle).json +++ b/resources/profiles/BIQU/machine/BIQU Hurakan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "BIQU Hurakan (0.4 nozzle)", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "GA2GSWco5cgRn8FI", "instantiation": "true", "printer_model": "BIQU Hurakan", "default_print_profile": "0.20mm Standard @BIQU Hurakan (0.4 nozzle)", diff --git a/resources/profiles/BIQU/process/0.12mm Fine @BIQU B1 (0.4 nozzle).json b/resources/profiles/BIQU/process/0.12mm Fine @BIQU B1 (0.4 nozzle).json index 50199fb9c30..a676c9a3c2b 100644 --- a/resources/profiles/BIQU/process/0.12mm Fine @BIQU B1 (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.12mm Fine @BIQU B1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @BIQU B1 (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hkw059dSjrqefnMN", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.12mm Fine @BIQU BX (0.4 nozzle).json b/resources/profiles/BIQU/process/0.12mm Fine @BIQU BX (0.4 nozzle).json index db9b5c101e1..858b406728c 100644 --- a/resources/profiles/BIQU/process/0.12mm Fine @BIQU BX (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.12mm Fine @BIQU BX (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @BIQU BX (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JTHikxAlQpFhhVnY", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.12mm Fine @BIQU Hurakan (0.4 nozzle).json b/resources/profiles/BIQU/process/0.12mm Fine @BIQU Hurakan (0.4 nozzle).json index d9800e3937d..00f7eb68af3 100644 --- a/resources/profiles/BIQU/process/0.12mm Fine @BIQU Hurakan (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.12mm Fine @BIQU Hurakan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @BIQU Hurakan (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "j3UlRzemuXhuMN2x", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU B1 (0.4 nozzle).json b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU B1 (0.4 nozzle).json index 28b8786840b..e4025401329 100644 --- a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU B1 (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU B1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @BIQU B1 (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LuSsVUHsjH9AXAa7", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU BX (0.4 nozzle).json b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU BX (0.4 nozzle).json index 01069282b40..a4b971af1b7 100644 --- a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU BX (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU BX (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @BIQU BX (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oKvCk7bS0INwdkVG", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU Hurakan (0.4 nozzle).json b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU Hurakan (0.4 nozzle).json index 74aa7772a09..bf95f6db108 100644 --- a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU Hurakan (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU Hurakan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @BIQU Hurakan (0.4 nozzle)", "inherits": "fdm_process_hurakan_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Z5tWEqid41XII3U0", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.20mm Standard @BIQU B1 (0.4 nozzle).json b/resources/profiles/BIQU/process/0.20mm Standard @BIQU B1 (0.4 nozzle).json index 7f20f635638..842480ca324 100644 --- a/resources/profiles/BIQU/process/0.20mm Standard @BIQU B1 (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.20mm Standard @BIQU B1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @BIQU B1 (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "yLS8fsznByRsXWLW", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/BIQU/process/0.20mm Standard @BIQU BX (0.4 nozzle).json b/resources/profiles/BIQU/process/0.20mm Standard @BIQU BX (0.4 nozzle).json index b746f9016ac..53d5e5086ab 100644 --- a/resources/profiles/BIQU/process/0.20mm Standard @BIQU BX (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.20mm Standard @BIQU BX (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @BIQU BX (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dtgvV4cqDwI9nLUq", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/BIQU/process/0.20mm Standard @BIQU Hurakan (0.4 nozzle).json b/resources/profiles/BIQU/process/0.20mm Standard @BIQU Hurakan (0.4 nozzle).json index 455e54d591d..ff269921615 100644 --- a/resources/profiles/BIQU/process/0.20mm Standard @BIQU Hurakan (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.20mm Standard @BIQU Hurakan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @BIQU Hurakan (0.4 nozzle)", "inherits": "fdm_process_hurakan_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WlgKtMxt18527nqV", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/BIQU/process/0.24mm Draft @BIQU B1 (0.4 nozzle).json b/resources/profiles/BIQU/process/0.24mm Draft @BIQU B1 (0.4 nozzle).json index 31df154df01..b46aa67474a 100644 --- a/resources/profiles/BIQU/process/0.24mm Draft @BIQU B1 (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.24mm Draft @BIQU B1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @BIQU B1 (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dEngYdlxzbLKNHtc", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/BIQU/process/0.24mm Draft @BIQU BX (0.4 nozzle).json b/resources/profiles/BIQU/process/0.24mm Draft @BIQU BX (0.4 nozzle).json index 1bde58b72e5..70997aa3b44 100644 --- a/resources/profiles/BIQU/process/0.24mm Draft @BIQU BX (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.24mm Draft @BIQU BX (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @BIQU BX (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BUtiLCRe368ot8iM", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/BIQU/process/0.24mm Draft @BIQU Hurakan (0.4 nozzle).json b/resources/profiles/BIQU/process/0.24mm Draft @BIQU Hurakan (0.4 nozzle).json index a1f2be3ed8f..4499ba5b65d 100644 --- a/resources/profiles/BIQU/process/0.24mm Draft @BIQU Hurakan (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.24mm Draft @BIQU Hurakan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @BIQU Hurakan (0.4 nozzle)", "inherits": "fdm_process_hurakan_common", "from": "system", - "setting_id": "GP004", + "setting_id": "X21POUmiKQDhd12A", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Blocks.json b/resources/profiles/Blocks.json index 5a40e50ce14..46df2204ef3 100644 --- a/resources/profiles/Blocks.json +++ b/resources/profiles/Blocks.json @@ -1,6 +1,6 @@ { "name": "Blocks", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Blocks configurations", "machine_model_list": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic ABS.json b/resources/profiles/Blocks/filament/Blocks Generic ABS.json index d0f9b84563c..abb5c988dc8 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic ABS.json +++ b/resources/profiles/Blocks/filament/Blocks Generic ABS.json @@ -3,7 +3,7 @@ "name": "Blocks Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "BSSI004", + "setting_id": "QhLaLEkxhvIMa3Ik", "filament_id": "BSFI004", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json b/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json index e7ae0c8756a..d6d5a092efb 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json +++ b/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json @@ -3,7 +3,7 @@ "name": "Blocks Generic ASA-CF", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "BSSI010", + "setting_id": "FF6D7i492XTrb8AO", "filament_id": "BSFI010", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic ASA.json b/resources/profiles/Blocks/filament/Blocks Generic ASA.json index 84df95597aa..a3fa2a86e83 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic ASA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic ASA.json @@ -3,7 +3,7 @@ "name": "Blocks Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "BSSI005", + "setting_id": "DcgqA071S6MRVbKI", "filament_id": "BSFI005", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json b/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json index 51ec66f622f..47732a6c9d4 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "BSSI007", + "setting_id": "B254XDRQzysz7YUd", "filament_id": "BSFI007", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic PA.json b/resources/profiles/Blocks/filament/Blocks Generic PA.json index cc1d5383b34..edaee826f48 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PA.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "BSSI006", + "setting_id": "3L5IYVTlkt8V0EiW", "filament_id": "BSFI006", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic PC.json b/resources/profiles/Blocks/filament/Blocks Generic PC.json index d468fcc194a..a6519b1c0de 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PC.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PC.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "BSSI008", + "setting_id": "VUPeelf61TmTQrun", "filament_id": "BSFI008", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic PETG.json b/resources/profiles/Blocks/filament/Blocks Generic PETG.json index 50f3bb5d049..0c38a3155d7 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PETG.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PETG.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PETG", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "BSSI002", + "setting_id": "FKkbjL1V4ZEjXB0H", "filament_id": "BSFI002", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json b/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json index da53ba59647..7568cdf5af4 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "BSSI010", + "setting_id": "RHKPeXZiv4E2p4lP", "filament_id": "BSFI010", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic PLA.json b/resources/profiles/Blocks/filament/Blocks Generic PLA.json index 584c021d604..3f3838e22f4 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PLA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PLA.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "BSSI001", + "setting_id": "N3wDUqmBETfelOoG", "filament_id": "BSFI001", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic PVA.json b/resources/profiles/Blocks/filament/Blocks Generic PVA.json index 5f8fcc58580..2719cfe661a 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PVA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PVA.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "BSSI009", + "setting_id": "J74KgdSzf503Tk9p", "filament_id": "BSFI009", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic TPU.json b/resources/profiles/Blocks/filament/Blocks Generic TPU.json index 72ca5ae059a..5c04853ee8d 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic TPU.json +++ b/resources/profiles/Blocks/filament/Blocks Generic TPU.json @@ -3,7 +3,7 @@ "name": "Blocks Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "BSSI003", + "setting_id": "xFRwN8ZEwEGlLFwo", "filament_id": "BSFI003", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.4 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.4 nozzle.json index 08fb9b001fc..e8cc1893c7a 100644 --- a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.4 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.4 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS Pro S100 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "G7HQgaspHXduDM8O", "instantiation": "true", - "settings_id": "GM001", "printer_model": "BLOCKS Pro S100", "default_print_profile": "0.20mm Standard 0.4 nozzle @Blocks", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.6 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.6 nozzle.json index 29685d503b2..49e519d2ec0 100644 --- a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.6 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS Pro S100 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "XkWdS210oUMQN17N", "instantiation": "true", - "settings_id": "GM002", "printer_model": "BLOCKS Pro S100", "default_print_profile": "0.30mm Standard 0.6 nozzle @Blocks", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.8 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.8 nozzle.json index 7f0207bd2f7..3c3a29f1117 100644 --- a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.8 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS Pro S100 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "I6PdeCS7SbvIlkZf", "instantiation": "true", - "settings_id": "GM003", "printer_model": "BLOCKS Pro S100", "default_print_profile": "0.40mm Standard 0.8 nozzle @Blocks", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.0 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.0 nozzle.json index 09679bc2ef6..1be375c34bb 100644 --- a/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.0 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.0 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS Pro S100 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "elLdUyy9RhUoa37o", "instantiation": "true", - "settings_id": "GM004", "printer_model": "BLOCKS Pro S100", "default_print_profile": "0.50mm Standard 1.0 nozzle @Blocks", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.2 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.2 nozzle.json index 5187221b392..426fdafd55e 100644 --- a/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.2 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.2 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS Pro S100 1.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "xtsGSJ4JkbHTPi44", "instantiation": "true", - "settings_id": "GM005", "printer_model": "BLOCKS Pro S100", "default_print_profile": "0.60mm Standard 1.2 nozzle @Blocks", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.4 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.4 nozzle.json index ac8e033abb2..3d2908a4030 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.4 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.4 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RD50 V2 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "wItS0IoWbzTJK7iD", "instantiation": "true", - "settings_id": "GM006", "printer_model": "BLOCKS RD50 V2", "default_print_profile": "0.20mm Standard 0.4 nozzle @Blocks_RD50_V2", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.6 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.6 nozzle.json index 09130c6fba8..bf41f1070f9 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.6 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RD50 V2 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "3oE6MbdWA6AzYAa5", "instantiation": "true", - "settings_id": "GM007", "printer_model": "BLOCKS RD50 V2", "default_print_profile": "0.26mm Standard 0.6 nozzle @Blocks_RD50_V2", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.8 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.8 nozzle.json index 3163c4fa680..23c0808be2b 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.8 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RD50 V2 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "g04N8FbsS1P92qZA", "instantiation": "true", - "settings_id": "GM008", "printer_model": "BLOCKS RD50 V2", "default_print_profile": "0.38mm Standard 0.8 nozzle @Blocks_RD50_V2", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RF50 0.4 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RF50 0.4 nozzle.json index 8235676d8ae..a589b6620bd 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RF50 0.4 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RF50 0.4 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RF50 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "icpImzXl3Xx16srx", "instantiation": "true", - "settings_id": "GM009", "printer_model": "BLOCKS RF50", "default_print_profile": "0.20mm Standard 0.4 nozzle @Blocks_RF50", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RF50 0.6 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RF50 0.6 nozzle.json index b698852793d..fea3007abca 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RF50 0.6 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RF50 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RF50 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "RIbar6niHpubv5IC", "instantiation": "true", - "settings_id": "GM010", "printer_model": "BLOCKS RF50", "default_print_profile": "0.26mm Standard 0.6 nozzle @Blocks_RF50", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RF50 0.8 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RF50 0.8 nozzle.json index a315d14573b..c8d6cec882d 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RF50 0.8 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RF50 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RF50 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "YTckxiK7XiR4GfOJ", "instantiation": "true", - "settings_id": "GM011", "printer_model": "BLOCKS RF50", "default_print_profile": "0.38mm Standard 0.8 nozzle @Blocks_RF50", "max_layer_height": [ diff --git a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json index 76a16a8c530..f59ea805165 100644 --- a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine 0.4 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "8g0CmJDZhpbtbSLL", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json index 640226f3e38..a91302462b9 100644 --- a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine 0.4 nozzle @Blocks_RF50", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qM5TCMjtTCThNyIS", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json index fbfa92a3816..9858a56f29f 100644 --- a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qYqbjNz16oTBOijO", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "5", diff --git a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json index 48fe4dd8ce0..76da4b89430 100644 --- a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal 0.4 nozzle @Blocks_RF50", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7vr8tF75IxNYOfy9", "instantiation": "true", "layer_height": "0.16", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json index 82c7035b289..05c2f38cc11 100644 --- a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "IiIASiATlPKWXVqG", "instantiation": "true", "layer_height": "0.20", "bottom_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json index ed6877668d4..a9a24ad0428 100644 --- a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.20mm Optimal 0.6 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "PTRq9vSbhBdwNQo2", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json index 5624796ff0a..03c89e4f9d3 100644 --- a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard 0.4 nozzle @Blocks", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "47aDtVL6E5DVr7Mt", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json index fd03aeec70b..823ba2be234 100644 --- a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard 0.4 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "k6jOPNbpunHqwbVl", "instantiation": "true", "layer_height": "0.20", "bottom_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json index 8da00406506..a0d141e2cd6 100644 --- a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard 0.4 nozzle @Blocks_RF50", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gwPin2OF8praSH3q", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json index 30471ca68b5..b1d1fafd58f 100644 --- a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft 0.4 nozzle @Blocks", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ETADjxV6ViJQdnHA", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json index fed5fa98824..e6e44642ead 100644 --- a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft 0.4 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vLfwlqx8ZvCfUjMB", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json index c10fe7360c7..e6ff123bcd9 100644 --- a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft 0.4 nozzle @Blocks_RF50", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HRSFefUk1ng3BuZN", "instantiation": "true", "layer_height": "0.24", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json index 0ef855cbc3a..53086d13f2a 100644 --- a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.26mm Standard 0.6 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "Hlo2kNKKaU73D6lM", "instantiation": "true", "layer_height": "0.26", "bottom_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json index 8e497d11bde..50391de058f 100644 --- a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.26mm Standard 0.6 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "QIOKDVdV2vAioPdS", "instantiation": "true", "layer_height": "0.26", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json index d11fbe797d0..e6d345c9572 100644 --- a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hzvbUnJIZb7TnPMu", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json index f6d6dde563d..65cab8c4dc8 100644 --- a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft 0.4 nozzle @Blocks_RF50", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "L7k7a4piZopE2QcB", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json index 7a5e8203a1b..52b7bee4029 100644 --- a/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft 0.4 nozzle @Blocks", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UbuICsmppKDsaaZ4", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json index fd52c4e6790..f26d3e9dbde 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.30mm Optimal 0.8 nozzle @Blocks", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "YqkYzp5zdH4R5upm", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json index 1255e866863..0d6d4237487 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "mxKcwnZ66FyXlLjV", "instantiation": "true", "layer_height": "0.30", "bottom_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json index db40c0564f2..6aaf2e307cd 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.30mm Optimal 0.8 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "1w3zzORSbCmdLll4", "instantiation": "true", "layer_height": "0.30", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json index 1dd169217af..8569bca91a6 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.30mm Optimal 1.0 nozzle @Blocks", "inherits": "fdm_process_common 1.0 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "8pBawPScHkyQu0SW", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json index ee2d2909bbc..be91067ae84 100644 --- a/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard 0.6 nozzle @Blocks", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "EPI3PAVK9LpJOZWO", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", diff --git a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json index ace54417bdd..934c3d265b0 100644 --- a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.32mm Draft 0.6 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "AvDKLcC3gvKsIwRk", "instantiation": "true", "layer_height": "0.32", "bottom_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json index 1cc99965845..1e0a5ca06c1 100644 --- a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.32mm Draft 0.6 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "a9pWDZyKiqBAeQIN", "instantiation": "true", "layer_height": "0.32", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json index 5f4050a0d56..8dcca94dc5f 100644 --- a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "VDezd0KdeD8tk1Sx", "instantiation": "true", "layer_height": "0.38", "bottom_shell_layers": "3", diff --git a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json index 411b5b3a57d..a2589181e46 100644 --- a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.38mm Extra Draft 0.6 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "uIIZR5hRxqqfHms1", "instantiation": "true", "layer_height": "0.38", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json index 12d38319b45..244963461b9 100644 --- a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.38mm Standard 0.8 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "7zxjBEdM3uwaxnq9", "instantiation": "true", "layer_height": "0.38", "bottom_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json index 1cff2c31227..b2b329f234f 100644 --- a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.38mm Standard 0.8 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "BCOEQmZHcO1zgeS9", "instantiation": "true", "layer_height": "0.38", "initial_layer_print_height": "0.4", diff --git a/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json index d4dc31c4062..985ba6b5348 100644 --- a/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.40mm Draft 0.6 nozzle @Blocks", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "CShVKoGspbMJNPw8", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "2", diff --git a/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json index 66caf1634ae..16a65d9d337 100644 --- a/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard 0.8 nozzle @Blocks", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "TSRjmfWaatY7oLJB", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json index c960a96369e..65d693fb6a6 100644 --- a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.46mm Draft 0.8 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "BmJAogItwZ4epXFK", "instantiation": "true", "layer_height": "0.46", "bottom_shell_layers": "3", diff --git a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json index a098d140cf3..4b73f9d9a30 100644 --- a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.46mm Draft 0.8 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "3Ff2hKKOMu8RbExs", "instantiation": "true", "layer_height": "0.46", "initial_layer_print_height": "0.4", diff --git a/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json index edc49d7eee9..29e1cde1911 100644 --- a/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.50mm Draft 0.8 nozzle @Blocks", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "vOtZHrDS88Shmf2m", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json index e763f740598..d3308312a35 100644 --- a/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.50mm Optimal 1.2 nozzle @Blocks", "inherits": "fdm_process_common 1.2 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "BKrEAKqDYzdH43wc", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", diff --git a/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json index 84a24595727..9090e3fa212 100644 --- a/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard 1.0 nozzle @Blocks", "inherits": "fdm_process_common 1.0 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "D40iksDm7mFjhSKn", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", diff --git a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json index bee2667615a..955a530165e 100644 --- a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json @@ -3,7 +3,7 @@ "name": "0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "zEU21m57lJslrtWm", "instantiation": "true", "layer_height": "0.54", "bottom_shell_layers": "3", diff --git a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json index 5c13cc45b40..861ceb43e42 100644 --- a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.54mm Extra Draft 0.8 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "8uJVEmWMNB1BzrhR", "instantiation": "true", "layer_height": "0.54", "initial_layer_print_height": "0.4", diff --git a/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json index 6c00c3dceed..a78632274cf 100644 --- a/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.60mm Draft 1.0 nozzle @Blocks", "inherits": "fdm_process_common 1.0 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "UJUe8XCBzZf8NyCL", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", diff --git a/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json index 1743755e317..3baa554cbc9 100644 --- a/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.60mm Standard 1.2 nozzle @Blocks", "inherits": "fdm_process_common 1.2 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "PSBFrTykpkytPI2Q", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", diff --git a/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json index 2c2785593ae..1b94ce0260d 100644 --- a/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.70mm Draft 1.2 nozzle @Blocks", "inherits": "fdm_process_common 1.2 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "0ZQ0USGX9SwAKr29", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", diff --git a/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json index 28bfe4f5027..fa7cc6f49e9 100644 --- a/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.70mm Extra Draft 1.0 nozzle @Blocks", "inherits": "fdm_process_common 1.0 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "69PFmjOVFBOIp3Qg", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", diff --git a/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json index 7a3153f3dc3..7d8d9cad654 100644 --- a/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json @@ -3,7 +3,7 @@ "name": "0.80mm Extra Draft 1.2 nozzle @Blocks", "inherits": "fdm_process_common 1.2 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "iBwRI5JJewW5HJSv", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "2", diff --git a/resources/profiles/CONSTRUCT3D.json b/resources/profiles/CONSTRUCT3D.json index 371c99775ea..ba2652f7248 100644 --- a/resources/profiles/CONSTRUCT3D.json +++ b/resources/profiles/CONSTRUCT3D.json @@ -1,6 +1,6 @@ { "name": "CONSTRUCT3D", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Construct3D configurations", "machine_model_list": [ diff --git a/resources/profiles/CONSTRUCT3D/filament/C1 Generic High Flow PETG.json b/resources/profiles/CONSTRUCT3D/filament/C1 Generic High Flow PETG.json index 847ed87c1ba..355637d63ca 100644 --- a/resources/profiles/CONSTRUCT3D/filament/C1 Generic High Flow PETG.json +++ b/resources/profiles/CONSTRUCT3D/filament/C1 Generic High Flow PETG.json @@ -3,7 +3,7 @@ "name": "C1 Generic High Flow PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "3IxBZSWFfFGmKAQ7", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/CONSTRUCT3D/filament/C1 Generic PETG.json b/resources/profiles/CONSTRUCT3D/filament/C1 Generic PETG.json index 543ff5c0bdf..7579260e164 100644 --- a/resources/profiles/CONSTRUCT3D/filament/C1 Generic PETG.json +++ b/resources/profiles/CONSTRUCT3D/filament/C1 Generic PETG.json @@ -3,7 +3,7 @@ "name": "C1 Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "jZBfhlf6VX5r3KHb", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/CONSTRUCT3D/filament/C1 Generic PLA.json b/resources/profiles/CONSTRUCT3D/filament/C1 Generic PLA.json index 3ef8c9b749c..dd50bdd607c 100644 --- a/resources/profiles/CONSTRUCT3D/filament/C1 Generic PLA.json +++ b/resources/profiles/CONSTRUCT3D/filament/C1 Generic PLA.json @@ -3,7 +3,7 @@ "name": "C1 Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Uv3kcMO5qNwkrMPV", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/CONSTRUCT3D/machine/Construct 1 0.4 nozzle.json b/resources/profiles/CONSTRUCT3D/machine/Construct 1 0.4 nozzle.json index 6ec8ba8bfcc..a83c207d1d2 100644 --- a/resources/profiles/CONSTRUCT3D/machine/Construct 1 0.4 nozzle.json +++ b/resources/profiles/CONSTRUCT3D/machine/Construct 1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Construct 1 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "NvupYOd7fBM7ewuh", "instantiation": "true", "printer_settings_id": "CONSTRUCT3D", "printer_model": "Construct 1", diff --git a/resources/profiles/CONSTRUCT3D/machine/Construct 1 XL 0.6 nozzle.json b/resources/profiles/CONSTRUCT3D/machine/Construct 1 XL 0.6 nozzle.json index f9b23fb3809..ca001ed3ea7 100644 --- a/resources/profiles/CONSTRUCT3D/machine/Construct 1 XL 0.6 nozzle.json +++ b/resources/profiles/CONSTRUCT3D/machine/Construct 1 XL 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Construct 1 XL 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "iR5ZBRGGrwclTFfE", "instantiation": "true", "printer_settings_id": "CONSTRUCT3D", "printer_model": "Construct 1 XL", diff --git a/resources/profiles/CONSTRUCT3D/process/0.14mm Quality @Construct 1.json b/resources/profiles/CONSTRUCT3D/process/0.14mm Quality @Construct 1.json index 7de2ebc7bd3..f6253e3522d 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.14mm Quality @Construct 1.json +++ b/resources/profiles/CONSTRUCT3D/process/0.14mm Quality @Construct 1.json @@ -3,7 +3,7 @@ "name": "0.14mm Quality @Construct 1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kDE169rxMES8i1MA", "instantiation": "true", "bottom_shell_layers": "4", "bridge_speed": "60", diff --git a/resources/profiles/CONSTRUCT3D/process/0.20mm Quality @Construct 1 XL.json b/resources/profiles/CONSTRUCT3D/process/0.20mm Quality @Construct 1 XL.json index 3f1abf26fa8..26e09c20cef 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.20mm Quality @Construct 1 XL.json +++ b/resources/profiles/CONSTRUCT3D/process/0.20mm Quality @Construct 1 XL.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @Construct 1 XL", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "0Zi6gVzskJeRMPlW", "instantiation": "true", "bottom_shell_layers": "4", "default_acceleration": "4000", diff --git a/resources/profiles/CONSTRUCT3D/process/0.22mm Standard @Construct 1.json b/resources/profiles/CONSTRUCT3D/process/0.22mm Standard @Construct 1.json index 5564ad30ead..e02f97e6e70 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.22mm Standard @Construct 1.json +++ b/resources/profiles/CONSTRUCT3D/process/0.22mm Standard @Construct 1.json @@ -3,7 +3,7 @@ "name": "0.22mm Standard @Construct 1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BLV1TVGUCciqmjxL", "instantiation": "true", "bridge_speed": "60", "default_acceleration": "4000", diff --git a/resources/profiles/CONSTRUCT3D/process/0.25mm Industrial @Construct 1.json b/resources/profiles/CONSTRUCT3D/process/0.25mm Industrial @Construct 1.json index 0066c0a8d47..19076d478af 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.25mm Industrial @Construct 1.json +++ b/resources/profiles/CONSTRUCT3D/process/0.25mm Industrial @Construct 1.json @@ -3,7 +3,7 @@ "name": "0.25mm Industrial @Construct 1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "urJ25woiHjB7sIhL", "instantiation": "true", "bottom_shell_layers": "4", "bridge_speed": "60", diff --git a/resources/profiles/CONSTRUCT3D/process/0.30mm Draft @Construct 1.json b/resources/profiles/CONSTRUCT3D/process/0.30mm Draft @Construct 1.json index b842c49850f..715bf39ff7a 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.30mm Draft @Construct 1.json +++ b/resources/profiles/CONSTRUCT3D/process/0.30mm Draft @Construct 1.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Construct 1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BqNKXSWtwefGcYp0", "instantiation": "true", "bottom_shell_layers": "2", "bridge_speed": "60", diff --git a/resources/profiles/CONSTRUCT3D/process/0.30mm Industrial @Construct 1 XL.json b/resources/profiles/CONSTRUCT3D/process/0.30mm Industrial @Construct 1 XL.json index 68f7ebbfec6..16ff6ef014d 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.30mm Industrial @Construct 1 XL.json +++ b/resources/profiles/CONSTRUCT3D/process/0.30mm Industrial @Construct 1 XL.json @@ -3,7 +3,7 @@ "name": "0.30mm Industrial @Construct 1 XL", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZX8HUIuCKtl4M2Oi", "instantiation": "true", "bottom_shell_layers": "4", "default_acceleration": "4000", diff --git a/resources/profiles/CONSTRUCT3D/process/0.30mm Standard @Construct 1 XL.json b/resources/profiles/CONSTRUCT3D/process/0.30mm Standard @Construct 1 XL.json index 4362df4d9a3..93f396bf9df 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.30mm Standard @Construct 1 XL.json +++ b/resources/profiles/CONSTRUCT3D/process/0.30mm Standard @Construct 1 XL.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Construct 1 XL", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "DthEOQDQQwQffJeN", "instantiation": "true", "bridge_speed": "60", "default_acceleration": "4000", diff --git a/resources/profiles/CONSTRUCT3D/process/0.38mm Draft @Construct 1 XL.json b/resources/profiles/CONSTRUCT3D/process/0.38mm Draft @Construct 1 XL.json index 9cc6eac7f44..170e54a684e 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.38mm Draft @Construct 1 XL.json +++ b/resources/profiles/CONSTRUCT3D/process/0.38mm Draft @Construct 1 XL.json @@ -3,7 +3,7 @@ "name": "0.38mm Draft @Construct 1 XL", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gWmpdwwLP3tIGgRX", "instantiation": "true", "bottom_shell_layers": "2", "bridge_speed": "60", diff --git a/resources/profiles/Chuanying.json b/resources/profiles/Chuanying.json index 8fe61c9bff8..31cc614a2dc 100644 --- a/resources/profiles/Chuanying.json +++ b/resources/profiles/Chuanying.json @@ -1,7 +1,7 @@ { "name": "Chuanying", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Chuanying configurations", "machine_model_list": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying ABS @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying ABS @Chuanying X1 0.25 Nozzle.json index 5ba0a352f94..e8067f49453 100644 --- a/resources/profiles/Chuanying/filament/Chuanying ABS @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying ABS @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying ABS @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic ABS", "from": "system", - "setting_id": "GFSA04_02", + "setting_id": "VkCgo0e4KR24DX28", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying ASA @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying ASA @Chuanying X1 0.25 Nozzle.json index e492ebcf96f..10415dcb72d 100644 --- a/resources/profiles/Chuanying/filament/Chuanying ASA @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying ASA @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying ASA @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic ASA", "from": "system", - "setting_id": "GFSA04_05", + "setting_id": "px1EPCDgOG8eE81V", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic ABS.json b/resources/profiles/Chuanying/filament/Chuanying Generic ABS.json index b411538ec15..201155e883d 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic ABS.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic ABS.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XslWGeEo1Okicu28", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic ASA.json b/resources/profiles/Chuanying/filament/Chuanying Generic ASA.json index 98de113a8d5..b95df151c54 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic ASA.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic ASA.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wBBQiy8JV2LrnIav", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic HIPS.json b/resources/profiles/Chuanying/filament/Chuanying Generic HIPS.json index 4c5a1b465f9..1087346c349 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic HIPS.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic HIPS.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic HIPS", "inherits": "Chuanying Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bBNozld07rP6mV3d", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic HS PLA.json b/resources/profiles/Chuanying/filament/Chuanying Generic HS PLA.json index e6004305dda..f53cf227039 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic HS PLA.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic HS PLA.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic HS PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YZT1Uv73b8ArVoX3", "filament_id": "GFL99", "instantiation": "true", "bed_temperature_difference": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PETG-CF10.json b/resources/profiles/Chuanying/filament/Chuanying Generic PETG-CF10.json index f67ddf2c8ec..c7b8e6008d4 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PETG-CF10.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PETG-CF10.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PETG-CF10", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "S2vCGI7sqN8FwodT", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PETG.json b/resources/profiles/Chuanying/filament/Chuanying Generic PETG.json index b7e164cd798..a3532b9e5ba 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PETG.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PETG.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "judDupafROrSnVv8", "filament_id": "GFG99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PLA-CF10.json b/resources/profiles/Chuanying/filament/Chuanying Generic PLA-CF10.json index 8886da62025..f001e5b3910 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PLA-CF10.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PLA-CF10.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PLA-CF10", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EZA59VPwew1cpyUJ", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PLA-Silk.json b/resources/profiles/Chuanying/filament/Chuanying Generic PLA-Silk.json index 0a50447565c..ca9a1398edb 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PLA-Silk.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PLA-Silk.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PLA-Silk", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "M9wzNVOPRQlayQH1", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PLA.json b/resources/profiles/Chuanying/filament/Chuanying Generic PLA.json index 1254ad777ef..831c14dafe1 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PLA.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PLA.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nnyBm7dlrz3OsVQz", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PVA.json b/resources/profiles/Chuanying/filament/Chuanying Generic PVA.json index ce98bfcddf0..a68d62d485a 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PVA.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PVA.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PVA", "inherits": "Chuanying Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ePZFnkgBiyFuKvji", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json b/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json index 4d24d2dff3b..d9a05782e40 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HYciEf4160uMYGnH", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying HS PLA @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying HS PLA @Chuanying X1 0.25 Nozzle.json index c31e0a4cf31..e4a7a6eba5a 100644 --- a/resources/profiles/Chuanying/filament/Chuanying HS PLA @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying HS PLA @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying HS PLA @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic HS PLA", "from": "system", - "setting_id": "GFSA04_09", + "setting_id": "CAdli5S8JIFafvRG", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying PETG @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying PETG @Chuanying X1 0.25 Nozzle.json index 6efc114545e..f1624345566 100644 --- a/resources/profiles/Chuanying/filament/Chuanying PETG @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying PETG @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying PETG @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic PETG", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "9xxP8YWj4hnWQoVZ", "filament_id": "GFG99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying PLA @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying PLA @Chuanying X1 0.25 Nozzle.json index c20a12c4701..c8ba7cc5e6b 100644 --- a/resources/profiles/Chuanying/filament/Chuanying PLA @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying PLA @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying PLA @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic PLA", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "3WDFe1uKTOTiRtPE", "instantiation": "true", "compatible_printers": [ "Chuanying X1 0.25 Nozzle" diff --git a/resources/profiles/Chuanying/filament/Chuanying PLA-SILK @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying PLA-SILK @Chuanying X1 0.25 Nozzle.json index 5c65825c47e..3008059f68b 100644 --- a/resources/profiles/Chuanying/filament/Chuanying PLA-SILK @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying PLA-SILK @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying PLA-SILK @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04_25", + "setting_id": "kph5feBjhPi0oo0G", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Chuanying/machine/Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/machine/Chuanying X1 0.25 Nozzle.json index 8e71b703d3c..7f58a2dc722 100644 --- a/resources/profiles/Chuanying/machine/Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/machine/Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying X1 0.25 Nozzle", "inherits": "fdm_x1_common", "from": "system", - "setting_id": "GM006", + "setting_id": "RxJHQLLqwjINiocE", "instantiation": "true", "printer_model": "Chuanying X1", "default_print_profile": "0.12mm Standard @Chuanying X1 0.25 Nozzle", diff --git a/resources/profiles/Chuanying/machine/Chuanying X1 0.4 Nozzle.json b/resources/profiles/Chuanying/machine/Chuanying X1 0.4 Nozzle.json index 6046edbc0ae..b20cda77726 100644 --- a/resources/profiles/Chuanying/machine/Chuanying X1 0.4 Nozzle.json +++ b/resources/profiles/Chuanying/machine/Chuanying X1 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying X1 0.4 Nozzle", "inherits": "fdm_x1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "MdkHtxEtjSp0i3cp", "instantiation": "true", "printer_model": "Chuanying X1", "default_print_profile": "0.20mm Standard @Chuanying X1 0.4 Nozzle", diff --git a/resources/profiles/Chuanying/machine/Chuanying X1 0.6 Nozzle.json b/resources/profiles/Chuanying/machine/Chuanying X1 0.6 Nozzle.json index a47f77abea5..2abced2ba44 100644 --- a/resources/profiles/Chuanying/machine/Chuanying X1 0.6 Nozzle.json +++ b/resources/profiles/Chuanying/machine/Chuanying X1 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying X1 0.6 Nozzle", "inherits": "fdm_x1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "rcPR6jw2DL6DG6PY", "instantiation": "true", "printer_model": "Chuanying X1", "default_print_profile": "0.30mm Standard @Chuanying X1 0.6 Nozzle", diff --git a/resources/profiles/Chuanying/machine/Chuanying X1 0.8 Nozzle.json b/resources/profiles/Chuanying/machine/Chuanying X1 0.8 Nozzle.json index 418fbdece2a..0fb8fa954ef 100644 --- a/resources/profiles/Chuanying/machine/Chuanying X1 0.8 Nozzle.json +++ b/resources/profiles/Chuanying/machine/Chuanying X1 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying X1 0.8 Nozzle", "inherits": "fdm_x1_common", "from": "system", - "setting_id": "GM005", + "setting_id": "vxPv0a5ffOLHbTSS", "instantiation": "true", "printer_model": "Chuanying X1", "default_print_profile": "0.40mm Standard @Chuanying X1 0.8 Nozzle", diff --git a/resources/profiles/Chuanying/process/0.12mm Standard @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/process/0.12mm Standard @Chuanying X1 0.25 Nozzle.json index bc2ff783142..792c0feb8b8 100644 --- a/resources/profiles/Chuanying/process/0.12mm Standard @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/process/0.12mm Standard @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Chuanying X1 0.25 Nozzle", "inherits": "0.20mm Standard @Chuanying X1 0.4 Nozzle", "from": "system", - "setting_id": "GP012", + "setting_id": "QK0Ww8yUHnqJB21D", "instantiation": "true", "compatible_printers": [ "Chuanying X1 0.25 Nozzle" diff --git a/resources/profiles/Chuanying/process/0.20mm Standard @Chuanying X1 0.4 Nozzle.json b/resources/profiles/Chuanying/process/0.20mm Standard @Chuanying X1 0.4 Nozzle.json index 16fb71b7904..892ae270e94 100644 --- a/resources/profiles/Chuanying/process/0.20mm Standard @Chuanying X1 0.4 Nozzle.json +++ b/resources/profiles/Chuanying/process/0.20mm Standard @Chuanying X1 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Chuanying X1 0.4 Nozzle", "inherits": "fdm_process_chuanying_0.20", "from": "system", - "setting_id": "GP001", + "setting_id": "Cs23wwLYd7a1xJlN", "instantiation": "true", "compatible_printers": [ "Chuanying X1 0.4 Nozzle" diff --git a/resources/profiles/Chuanying/process/0.30mm Standard @Chuanying X1 0.6 Nozzle.json b/resources/profiles/Chuanying/process/0.30mm Standard @Chuanying X1 0.6 Nozzle.json index cfdd27db54b..3cb78499b5f 100644 --- a/resources/profiles/Chuanying/process/0.30mm Standard @Chuanying X1 0.6 Nozzle.json +++ b/resources/profiles/Chuanying/process/0.30mm Standard @Chuanying X1 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Chuanying X1 0.6 Nozzle", "inherits": "fdm_process_chuanying_0.30", "from": "system", - "setting_id": "GP003", + "setting_id": "pk0f171o2vhWhbzg", "instantiation": "true", "compatible_printers": [ "Chuanying X1 0.6 Nozzle" diff --git a/resources/profiles/Chuanying/process/0.40mm Standard @Chuanying X1 0.8 Nozzle.json b/resources/profiles/Chuanying/process/0.40mm Standard @Chuanying X1 0.8 Nozzle.json index b57f49c04c3..30ce36dbbf1 100644 --- a/resources/profiles/Chuanying/process/0.40mm Standard @Chuanying X1 0.8 Nozzle.json +++ b/resources/profiles/Chuanying/process/0.40mm Standard @Chuanying X1 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Chuanying X1 0.8 Nozzle", "inherits": "0.30mm Standard @Chuanying X1 0.6 Nozzle", "from": "system", - "setting_id": "GP002", + "setting_id": "5jFsal1GjrKej065", "instantiation": "true", "compatible_printers": [ "Chuanying X1 0.8 Nozzle" diff --git a/resources/profiles/Co Print.json b/resources/profiles/Co Print.json index 47b9398af9a..8e7d9ec9907 100644 --- a/resources/profiles/Co Print.json +++ b/resources/profiles/Co Print.json @@ -1,6 +1,6 @@ { "name": "Co Print", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "CoPrint configurations", "machine_model_list": [ diff --git a/resources/profiles/Co Print/filament/CoPrint Generic ABS.json b/resources/profiles/Co Print/filament/CoPrint Generic ABS.json index cf4e17501fc..930950d68ee 100644 --- a/resources/profiles/Co Print/filament/CoPrint Generic ABS.json +++ b/resources/profiles/Co Print/filament/CoPrint Generic ABS.json @@ -3,7 +3,7 @@ "name": "CoPrint Generic ABS", "inherits": "CoPrint Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xW2rHuxT9o7MG8qB", "filament_id": "GFL99", "instantiation": "true", "close_fan_the_first_x_layers": [ diff --git a/resources/profiles/Co Print/filament/CoPrint Generic PETG.json b/resources/profiles/Co Print/filament/CoPrint Generic PETG.json index c0cf5b8cb0b..f4540a98b29 100644 --- a/resources/profiles/Co Print/filament/CoPrint Generic PETG.json +++ b/resources/profiles/Co Print/filament/CoPrint Generic PETG.json @@ -3,7 +3,7 @@ "name": "CoPrint Generic PETG", "inherits": "CoPrint Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "k4m484S1samBGEVb", "filament_id": "GFL99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Co Print/filament/CoPrint Generic PLA.json b/resources/profiles/Co Print/filament/CoPrint Generic PLA.json index 78604aa0562..c6db574a424 100644 --- a/resources/profiles/Co Print/filament/CoPrint Generic PLA.json +++ b/resources/profiles/Co Print/filament/CoPrint Generic PLA.json @@ -3,7 +3,7 @@ "name": "CoPrint Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Hv40GsmNozxOJ38T", "filament_id": "GFL99", "instantiation": "true", "filament_load_time": [ diff --git a/resources/profiles/Co Print/filament/CoPrint Generic TPU.json b/resources/profiles/Co Print/filament/CoPrint Generic TPU.json index 23d3953e4ac..b4e28ee73b6 100644 --- a/resources/profiles/Co Print/filament/CoPrint Generic TPU.json +++ b/resources/profiles/Co Print/filament/CoPrint Generic TPU.json @@ -3,7 +3,7 @@ "name": "CoPrint Generic TPU", "inherits": "CoPrint Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2mWqeih012I5D2CK", "filament_id": "GFL99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3 Plus.json b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3 Plus.json index 1c3a0488a30..355ba1eca8c 100644 --- a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3 Plus.json +++ b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3 Plus.json @@ -3,7 +3,7 @@ "name": "Co Print ChromaSet 0.4 nozzle - Ender-3 V3 Plus", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Fs3iRbeNcLJoUhdJ", "instantiation": "true", "printer_model": "Co Print ChromaSet", "default_print_profile": "0.2mm Standard @Co Print ChromaSet 0.4", diff --git a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3.json b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3.json index 1f575ee1e38..52fa36bc5dc 100644 --- a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3.json +++ b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3.json @@ -3,7 +3,7 @@ "name": "Co Print ChromaSet 0.4 nozzle - Ender-3 V3", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "1SK0VAxn4wsqiNk7", "instantiation": "true", "printer_model": "Co Print ChromaSet", "default_print_profile": "0.2mm Standard @Co Print ChromaSet 0.4", diff --git a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle fast.json b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle fast.json index 12c6730be70..57f2e507c47 100644 --- a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle fast.json +++ b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle fast.json @@ -3,7 +3,7 @@ "name": "Co Print ChromaSet 0.4 nozzle fast", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "cltS53TnjdvF8HnA", "instantiation": "true", "printer_model": "Co Print ChromaSet", "default_print_profile": "0.2mm Fast @Co Print ChromaSet 0.4", diff --git a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle.json b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle.json index 5607afd3614..efa52a34f42 100644 --- a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle.json +++ b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Co Print ChromaSet 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "YtSG91vPZicYwY78", "instantiation": "true", "printer_model": "Co Print ChromaSet", "default_print_profile": "0.2mm Standard @Co Print ChromaSet 0.4", diff --git a/resources/profiles/Co Print/process/0.2mm Fast @Co Print ChromaSet 0.4.json b/resources/profiles/Co Print/process/0.2mm Fast @Co Print ChromaSet 0.4.json index 501aaa37a6e..47c4a2393db 100644 --- a/resources/profiles/Co Print/process/0.2mm Fast @Co Print ChromaSet 0.4.json +++ b/resources/profiles/Co Print/process/0.2mm Fast @Co Print ChromaSet 0.4.json @@ -3,7 +3,7 @@ "name": "0.2mm Fast @Co Print ChromaSet 0.4", "inherits": "fdm_process_coprint_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dRtVJZ0gU9Nniomg", "instantiation": "true", "elefant_foot_compensation": "0.1", "initial_layer_speed": "60", diff --git a/resources/profiles/Co Print/process/0.2mm Standard @Co Print ChromaSet 0.4.json b/resources/profiles/Co Print/process/0.2mm Standard @Co Print ChromaSet 0.4.json index 7e39cbe657b..58ddce9676d 100644 --- a/resources/profiles/Co Print/process/0.2mm Standard @Co Print ChromaSet 0.4.json +++ b/resources/profiles/Co Print/process/0.2mm Standard @Co Print ChromaSet 0.4.json @@ -3,7 +3,7 @@ "name": "0.2mm Standard @Co Print ChromaSet 0.4", "inherits": "fdm_process_coprint_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EYLyZShaPWJ2G7Ju", "instantiation": "true", "default_acceleration": "5000", "compatible_printers": [ diff --git a/resources/profiles/CoLiDo.json b/resources/profiles/CoLiDo.json index b3b72a09f72..972ffd396bb 100644 --- a/resources/profiles/CoLiDo.json +++ b/resources/profiles/CoLiDo.json @@ -1,6 +1,6 @@ { "name": "CoLiDo", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "CoLiDo configurations", "machine_model_list": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json index e38e5376c88..55259a54598 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "CoLiDo ABS @CoLiDo SR1", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSB99_06", + "setting_id": "ZztaHKdQ4dmOgAXr", "filament_id": "GFB99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json index e72a3256cb3..94c529c9fec 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic ABS @CoLiDo DIY 4.0", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSB99", + "setting_id": "acWqrAFyi2SIkNwa", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json index 6caabd8dfd1..5dc279ffe6a 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic ABS @CoLiDo X16", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSB99_05", + "setting_id": "l44ioMidpUECbGYF", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json index 8027f3f44ef..1c0751457e7 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic PETG @CoLiDo DIY 4.0", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "IBtIS8bwcIWhiCow", "filament_id": "GFG99", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json index 32190a2ac7f..e09df956797 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic PETG @CoLiDo X16", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99_05", + "setting_id": "AovAvrEzGiZqFRpc", "filament_id": "GFG99", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json index 0f4981069f9..18482169047 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic PLA @CoLiDo DIY 4.0", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA99", + "setting_id": "foEeUk6PK78QXleQ", "filament_id": "GFA99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json index 0406e30c020..8d9877cfa33 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic PLA @CoLiDo X16", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA99_05", + "setting_id": "HY8RFWOKRptC2YVt", "filament_id": "GFA99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json index 5f881101cd2..96912962de6 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic TPU @CoLiDo DIY 4.0", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSU99", + "setting_id": "ZgbaHhRSK8AW38MB", "filament_id": "GFU99", "instantiation": "true", "filament_density": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json index ef62c83fe3f..3bbea681d19 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic TPU @CoLiDo X16", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSU99_05", + "setting_id": "f6yTiUiYYLckJBTQ", "filament_id": "GFU99", "instantiation": "true", "filament_density": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json index b312e3f8af0..5b93fc1460a 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "CoLiDo PETG @CoLiDo SR1", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99_06", + "setting_id": "z1ffOb3jPP1GVXnD", "filament_id": "GFG99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json index 2c342b5b66c..40e871c6632 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "CoLiDo PLA @CoLiDo SR1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA99_06", + "setting_id": "Gj0o6Rmn4qWXDLov", "filament_id": "GFA99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json index 0048388d2f8..b9a15b3e1bd 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "CoLiDo PLA Silk @CoLiDo SR1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA99_06", + "setting_id": "mLgBNw0OzvJSS8IG", "filament_id": "GFA99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json index f739f637b6c..de341108269 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json @@ -3,7 +3,7 @@ "name": "CoLiDo PLA+ @CoLiDo DIY 4.0 V2", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA99_07", + "setting_id": "IDGh5vNSqKSOVn3z", "filament_id": "GFA99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json index 08f005bcbd4..65f2db78eb6 100644 --- a/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json +++ b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "CoLiDo 160 V2 0.4 nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "RRzVDMk3GxAV3tMW", "instantiation": "true", "printer_model": "CoLiDo 160 V2", "adaptive_bed_mesh_margin": "0", diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json index 2ec1de75de4..d0e1a2abc60 100644 --- a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json +++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "CoLiDo DIY 4.0 0.4 nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "mtJZggmYcrGa2LTJ", "instantiation": "true", "printer_model": "CoLiDo DIY 4.0", "adaptive_bed_mesh_margin": "0", diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json index ef96aeee84a..65c65fa9e9d 100644 --- a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json +++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "CoLiDo DIY 4.0 V2 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "Z3Zb6RB7jbRNhGO0", "instantiation": "true", "printer_model": "CoLiDo DIY 4.0 V2", "default_filament_profile": [ diff --git a/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json index ff839df0047..a0dc0d06817 100644 --- a/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json +++ b/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "CoLiDo SR1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "c1lD3KQ6bvd31P3k", "instantiation": "true", "printer_model": "CoLiDo SR1", "default_filament_profile": [ diff --git a/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json index 5a3f7edd974..cfdfd38571e 100644 --- a/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json +++ b/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "CoLiDo X16 0.4 nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "ciVF4ZFTo8Kjqvv1", "instantiation": "true", "printer_model": "CoLiDo X16", "adaptive_bed_mesh_margin": "0", diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json index d50e6ad5de9..5b1fdc28fbf 100644 --- a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "RbpwCQvB8YGQxcun", "instantiation": "true", "bottom_shell_layers": "7", "layer_height": "0.08", diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json index 6a45cd491e8..bb78ecbeb70 100644 --- a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "syKS4qdutQSXduyt", "instantiation": "true", "bottom_shell_layers": "7", "layer_height": "0.08", diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json index 826b31ef8b1..2e644ad3f53 100644 --- a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "KzCjrLKdwElMcx5U", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json index ad5e87c3653..229022bef09 100644 --- a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "yYx1cLWMbbJjfPTr", "instantiation": "true", "bottom_shell_layers": "7", "layer_height": "0.08", diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json index 206a89f62a1..ce3291a81bd 100644 --- a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "SU7QA1rSeoTLAom2", "instantiation": "true", "bottom_shell_layers": "5", "layer_height": "0.12", diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json index c771f06b165..a3d30362df6 100644 --- a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "V2zL0JEafjUoOFbD", "instantiation": "true", "bottom_shell_layers": "5", "layer_height": "0.12", diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json index bb45326116e..a20d6fc8191 100644 --- a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "MOq71ZRlZUW9t5t6", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json index 327b2397ee2..4ae8efc4a82 100644 --- a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "X6TycnQJo3ysaSt3", "instantiation": "true", "bottom_shell_layers": "5", "layer_height": "0.12", diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json index 52b25e9d190..9c5f08c996d 100644 --- a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "SBf9Au85wkWLrkOk", "instantiation": "true", "bottom_shell_layers": "4", "layer_height": "0.15", diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json index 574cdd45d90..ea5dc44fc5e 100644 --- a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EGHL1ds0tqG9oty2", "instantiation": "true", "bottom_shell_layers": "4", "layer_height": "0.15", diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json index 33b68d9a798..11df15071af 100644 --- a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "cMdAhAv4nI6H2IkD", "instantiation": "true", "layer_height": "0.15", "bottom_shell_layers": "4", diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json index 155db52fddb..afff6b9407f 100644 --- a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "SxJ6hJE1GZF6dc2D", "instantiation": "true", "bottom_shell_layers": "4", "layer_height": "0.15", diff --git a/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json index 3b9a9ace722..f04f4272e98 100644 --- a/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "KKrcd5hTkaT0UeUZ", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json index 03cd9e110b9..480b608708e 100644 --- a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "iYd9TTzxeqtI40W4", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.2", diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json index 4148fcc5b54..f6448a6d9be 100644 --- a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @CoLiDo DIY 4.0 V2", "inherits": "fdm_process_colidodiy40v2_common", "from": "system", - "setting_id": "GP007", + "setting_id": "S2YAgOIWBaJFCqYm", "instantiation": "true", "layer_height": "0.2", "print_settings_id": "0.20mm Standard @CoLiDo DIY 4.0 V2" diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json index e5477f193c7..70ae72c3aa3 100644 --- a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JDfKJOdY57PYOvKu", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.2", diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json index d17339e7f0d..3ed95879a00 100644 --- a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "xYCS2o1r2isLD7pB", "instantiation": "true", "layer_height": "0.2", "print_settings_id": "0.20mm Standard @CoLiDo SR1" diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json index 24e02e572d1..ba6eb2f5057 100644 --- a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "CbbnTRVl7DcGphxB", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.2", diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json index 0c170204ab3..2c06a9d0490 100644 --- a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "cYG9mdetut2iHRhB", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.24", diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json index e6a8356da9d..ce8fecdd958 100644 --- a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "urM1QpWcCz1rlo4Q", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.24", diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json index 95e687bb452..8de345fa016 100644 --- a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Wwp4pUZMe1SGIrjC", "instantiation": "true", "layer_height": "0.24", "support_top_z_distance": "0.2", diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json index 1dbfa749f01..ef6c0bceccb 100644 --- a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "DjfkrQVZ8eV5x8kG", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.24", diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json index 30fbffa0e83..0cf62f5198a 100644 --- a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "bcOt8TaAPuxn2DfY", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.28", diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json index 06094721795..f400be3ed02 100644 --- a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gH5xeX9wnHdAKEks", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.28", diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json index 130f857e51a..7cf3c2143f5 100644 --- a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Q8B5egRf1q1m0eNd", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json index 8d168c742ac..2b9dafd6a67 100644 --- a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "eFlNg1qeOmipn4SP", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.28", diff --git a/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json index 5a99e5422e1..b0116b80c53 100644 --- a/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "O0n8xZZEVHtDubqp", "instantiation": "true", "layer_height": "0.32", "support_top_z_distance": "0.24", diff --git a/resources/profiles/Comgrow.json b/resources/profiles/Comgrow.json index 6e7c43f58d6..51ca3951e39 100644 --- a/resources/profiles/Comgrow.json +++ b/resources/profiles/Comgrow.json @@ -1,6 +1,6 @@ { "name": "Comgrow", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Comgrow configurations", "machine_model_list": [ diff --git a/resources/profiles/Comgrow/filament/Comgrow Generic ABS.json b/resources/profiles/Comgrow/filament/Comgrow Generic ABS.json index 5f22bd26eda..0dbfbdf5af0 100644 --- a/resources/profiles/Comgrow/filament/Comgrow Generic ABS.json +++ b/resources/profiles/Comgrow/filament/Comgrow Generic ABS.json @@ -3,7 +3,7 @@ "name": "Comgrow Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7xmGiJHgiD5KKTXt", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Comgrow/filament/Comgrow Generic PETG.json b/resources/profiles/Comgrow/filament/Comgrow Generic PETG.json index 3ee0eba915b..18f1ea232a4 100644 --- a/resources/profiles/Comgrow/filament/Comgrow Generic PETG.json +++ b/resources/profiles/Comgrow/filament/Comgrow Generic PETG.json @@ -3,7 +3,7 @@ "name": "Comgrow Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FJjkU2RhAZD10Cw8", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Comgrow/filament/Comgrow Generic PLA.json b/resources/profiles/Comgrow/filament/Comgrow Generic PLA.json index d1f886828f8..d3aed1e46d9 100644 --- a/resources/profiles/Comgrow/filament/Comgrow Generic PLA.json +++ b/resources/profiles/Comgrow/filament/Comgrow Generic PLA.json @@ -3,7 +3,7 @@ "name": "Comgrow Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sGAn6RP69saYSqcY", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Comgrow/filament/Comgrow T300 PLA.json b/resources/profiles/Comgrow/filament/Comgrow T300 PLA.json index 34eb90e29cb..e0785fd57f4 100644 --- a/resources/profiles/Comgrow/filament/Comgrow T300 PLA.json +++ b/resources/profiles/Comgrow/filament/Comgrow T300 PLA.json @@ -3,7 +3,7 @@ "name": "Comgrow T300 PLA", "inherits": "Comgrow Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TnHaf2TSHVfuwbVg", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Comgrow/machine/Comgrow T300 0.4 nozzle.json b/resources/profiles/Comgrow/machine/Comgrow T300 0.4 nozzle.json index dc9cba5126e..2453aefcab4 100644 --- a/resources/profiles/Comgrow/machine/Comgrow T300 0.4 nozzle.json +++ b/resources/profiles/Comgrow/machine/Comgrow T300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Comgrow T300 0.4 nozzle", "inherits": "fdm_comgrow_common", "from": "system", - "setting_id": "GM001", + "setting_id": "OWKgGxZ3ljM0rYf5", "instantiation": "true", "printer_model": "Comgrow T300", "nozzle_diameter": [ diff --git a/resources/profiles/Comgrow/machine/Comgrow T500 0.4 nozzle.json b/resources/profiles/Comgrow/machine/Comgrow T500 0.4 nozzle.json index 9932df50932..85d44fb6817 100644 --- a/resources/profiles/Comgrow/machine/Comgrow T500 0.4 nozzle.json +++ b/resources/profiles/Comgrow/machine/Comgrow T500 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Comgrow T500 0.4 nozzle", "inherits": "fdm_comgrow_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ViioMbWdupiIANT2", "instantiation": "true", "printer_model": "Comgrow T500", "nozzle_diameter": [ diff --git a/resources/profiles/Comgrow/machine/Comgrow T500 0.6 nozzle.json b/resources/profiles/Comgrow/machine/Comgrow T500 0.6 nozzle.json index f3dbaf0cdb7..803769b9782 100644 --- a/resources/profiles/Comgrow/machine/Comgrow T500 0.6 nozzle.json +++ b/resources/profiles/Comgrow/machine/Comgrow T500 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Comgrow T500 0.6 nozzle", "inherits": "fdm_comgrow_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ZGnrVaKEE9cv5jxS", "instantiation": "true", "printer_model": "Comgrow T500", "printer_variant": "0.6", diff --git a/resources/profiles/Comgrow/machine/Comgrow T500 0.8 nozzle.json b/resources/profiles/Comgrow/machine/Comgrow T500 0.8 nozzle.json index fda99adc7c1..5a017ad6df8 100644 --- a/resources/profiles/Comgrow/machine/Comgrow T500 0.8 nozzle.json +++ b/resources/profiles/Comgrow/machine/Comgrow T500 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Comgrow T500 0.8 nozzle", "inherits": "fdm_comgrow_common", "from": "system", - "setting_id": "GM003", + "setting_id": "WJqKI3469d8zjsl9", "instantiation": "true", "printer_model": "Comgrow T500", "printer_variant": "0.8", diff --git a/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json index 67f63c2d3c2..f9fe24a86ef 100644 --- a/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Opitmal @Comgrow T500 0.6", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VXNVLkCAnWrWUyuq", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json index 3961c87eca6..75b32fd2bc1 100644 --- a/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Comgrow T500 0.4", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fHx55sqqkzl0l6vD", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json b/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json index e41c2d6f7f4..9ea2e4419a7 100644 --- a/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json +++ b/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Comgrow T500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "s2ySRT9zoN0MzFMG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.20mm Optimal @Comgrow T300 0.4 - official.json b/resources/profiles/Comgrow/process/0.20mm Optimal @Comgrow T300 0.4 - official.json index 7c6637c130c..a19f2568d71 100644 --- a/resources/profiles/Comgrow/process/0.20mm Optimal @Comgrow T300 0.4 - official.json +++ b/resources/profiles/Comgrow/process/0.20mm Optimal @Comgrow T300 0.4 - official.json @@ -3,7 +3,7 @@ "name": "0.20mm Optimal @Comgrow T300 0.4 - official", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VFKy39bkuifq4aEz", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json index 27013008b1d..4d428aca402 100644 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Comgrow T500 0.4", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zwEXxLeBYeJlVsrU", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json index 99da6da6a72..a50b6ac4859 100644 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Comgrow T500 0.6", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MwfGKEFTGptYVgVg", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json index c234cab5dad..483335cda9a 100644 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json +++ b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Comgrow T500 1.0", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2lOjEPJ5JELGadG3", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json index 39aac1a859a..1ef23da2af9 100644 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json +++ b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Comgrow T500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "D15fxV5mACh2XWMT", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json index e76f5fd9893..d79d7afe4c2 100644 --- a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Comgrow T500 0.4", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "INYjczFN5gWflgRJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json index 4635b324973..326c4c7d26c 100644 --- a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Comgrow T500 0.6", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CDKsOIpM74w1NhsA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json index 6c2a5f1ffdb..7118e614d23 100644 --- a/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Comgrow T500 0.8", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gHH8QHbtpAr7iSj3", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json index 960e7345f64..82140f2a110 100644 --- a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Comgrow T500 0.4", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QU9R8iFuvSrnijkO", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json index 97e6b79ad68..2088fd5d01e 100644 --- a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Comgrow T500 0.6", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oQkDbf0FdMb4nV0i", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json index ac0833c2082..1f9ad6050d4 100644 --- a/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Comgrow T500 0.8", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1IxP6FaNbkCM6bz8", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json index 98c90fdba9f..515bcfdde85 100644 --- a/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json @@ -3,7 +3,7 @@ "name": "0.40mm Draft @Comgrow T500 0.8", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "67PM6ka97wMVLSJV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json index ce3977dc55e..bdae66b5e8e 100644 --- a/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Comgrow T500 0.8", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7fJumwUT4xqMSvYo", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json index 391620d95ba..fae10074b26 100644 --- a/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json @@ -3,7 +3,7 @@ "name": "0.56mm SuperChunky @Comgrow T500 0.8", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "407WH0SRTXRCg7Gz", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality.json b/resources/profiles/Creality.json index 3a4f448b145..8f4afaceb50 100644 --- a/resources/profiles/Creality.json +++ b/resources/profiles/Creality.json @@ -1,6 +1,6 @@ { "name": "Creality", - "version": "02.03.02.73", + "version": "02.03.02.74", "force_update": "0", "description": "Creality configurations", "machine_model_list": [ diff --git a/resources/profiles/Creality/filament/CR-ABS @Ender-3 V4-all.json b/resources/profiles/Creality/filament/CR-ABS @Ender-3 V4-all.json index f86cabcd7a6..33b6514886b 100644 --- a/resources/profiles/Creality/filament/CR-ABS @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @Ender-3 V4-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3MchJTc47Au6MkZ0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @Ender-5 Max-all.json b/resources/profiles/Creality/filament/CR-ABS @Ender-5 Max-all.json index a3afc7f1a1d..53d18bfeda0 100644 --- a/resources/profiles/Creality/filament/CR-ABS @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @Ender-5 Max-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iCeI2obXsgQdrmmd", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @Hi-all.json b/resources/profiles/Creality/filament/CR-ABS @Hi-all.json index 8f9bee0878d..e4620945d82 100644 --- a/resources/profiles/Creality/filament/CR-ABS @Hi-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @Hi-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @Hi-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OkztCpBxncDuPVQP", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-ABS @K1 Max_CFS-C-all.json index 6f582521c1a..070110cef41 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K1 Max_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IuBXEntaBaPVFQXh", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K1 SE-all.json b/resources/profiles/Creality/filament/CR-ABS @K1 SE-all.json index cbd2277aa7a..1d7cd3dadef 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K1 SE-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K1 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yhGkKM6yZnFFn8IW", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/CR-ABS @K1 SE_CFS-C-all.json index a53906a2a20..f6ea93b3885 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K1 SE_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ERk97K6VotgHJfWy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K1C-all.json b/resources/profiles/Creality/filament/CR-ABS @K1C-all.json index 29691a866e6..d592d9d18f5 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K1C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HaRbfdv0e9gKF3Qp", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-ABS @K1C_CFS-C-all.json index 5688a803536..a0451ea1ba1 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K1C_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jhNERXYu8aq28Ppb", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-ABS @K1_CFS-C-all.json index dc80c928093..6f3bbe777e2 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K1_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3irrf86tjxODkbIf", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-ABS @K2 Plus-all.json index 0841d1b9f12..55a2fe9a806 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K2 Plus-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5CD3YjRfabJ1lA6a", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-ABS @K2 Pro-all.json index 3551543ae81..cea39dba0e8 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K2 Pro-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QuBAuyBqoGyFHMpP", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K2 SE-all.json b/resources/profiles/Creality/filament/CR-ABS @K2 SE-all.json index 7ff05b770c2..8edabb85be2 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K2 SE-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K2 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8hrvutX54fd4gUGn", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K2-all.json b/resources/profiles/Creality/filament/CR-ABS @K2-all.json index 41546fec3f4..ec6591b3526 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K2-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K2-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rvItkEWAJNGXJrVF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Nylon @Ender-5 Max-all.json b/resources/profiles/Creality/filament/CR-Nylon @Ender-5 Max-all.json index 203cc0f1a27..e4e5cad0e83 100644 --- a/resources/profiles/Creality/filament/CR-Nylon @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/CR-Nylon @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "CR-Nylon @Ender-5 Max-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HHnHotIUIBzTdckU", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Nylon @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Nylon @K1 Max_CFS-C-all.json index 0c1f547c5bb..cc25eecbca9 100644 --- a/resources/profiles/Creality/filament/CR-Nylon @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Nylon @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Nylon @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vRp7fYNhHQuLUArq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Nylon @K1C-all.json b/resources/profiles/Creality/filament/CR-Nylon @K1C-all.json index 67ae4202b05..9782134aaf5 100644 --- a/resources/profiles/Creality/filament/CR-Nylon @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-Nylon @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-Nylon @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IAXnmE8e2ADhcMZG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Nylon @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Nylon @K1C_CFS-C-all.json index b1e79273ab5..8c1c7a27c64 100644 --- a/resources/profiles/Creality/filament/CR-Nylon @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Nylon @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Nylon @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vIpGcKrZM6vbICRT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Nylon @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Nylon @K1_CFS-C-all.json index cd5298156ee..7be6522dd19 100644 --- a/resources/profiles/Creality/filament/CR-Nylon @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Nylon @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Nylon @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eb1T3avlK6EzZ5NT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Nylon @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-Nylon @K2 Plus-all.json index ea5ad216065..7466949b1a8 100644 --- a/resources/profiles/Creality/filament/CR-Nylon @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-Nylon @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-Nylon @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LLuS5zOOxSWnZoyb", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @Ender-3 V4-all.json b/resources/profiles/Creality/filament/CR-PETG @Ender-3 V4-all.json index 0b02050f86b..ded5f2b0939 100644 --- a/resources/profiles/Creality/filament/CR-PETG @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @Ender-3 V4-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZucTDurgG1yttTTE", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json b/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json index 13310a16c39..c85a9ed7fb1 100644 --- a/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @Ender-5 Max-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jMfevCqhjSPahBHJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @Hi-all.json b/resources/profiles/Creality/filament/CR-PETG @Hi-all.json index f95c67dbbd2..6e8dde0750b 100644 --- a/resources/profiles/Creality/filament/CR-PETG @Hi-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @Hi-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @Hi-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DGnnBUZoF5EJdo8y", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PETG @K1 Max_CFS-C-all.json index 8e10dfc5bcf..65165f30ea3 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K1 Max_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7zmI8UK4VCbkrHth", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K1 SE-all.json b/resources/profiles/Creality/filament/CR-PETG @K1 SE-all.json index 84a67b09481..fa3c9922d08 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K1 SE-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K1 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oR9hRU1vmcDXuEdN", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PETG @K1 SE_CFS-C-all.json index 07341168eb3..a388228d102 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K1 SE_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "O5oj2seoJOMoRQeH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K1C-all.json b/resources/profiles/Creality/filament/CR-PETG @K1C-all.json index 2184840110f..57482693fae 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TCoincnHkpTkdbgr", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PETG @K1C_CFS-C-all.json index 7f3205e4454..222a850feba 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K1C_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tEizEoyTjR2jsMjb", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PETG @K1_CFS-C-all.json index c822121a3fc..38be118853c 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K1_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GyuPdDlFigxqfNdh", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PETG @K2 Plus-all.json index 22793c1f6a9..0c9fcef567f 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L9YgZiTMEbGueIUB", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-PETG @K2 Pro-all.json index 648ddfe0bb3..ec8cb704759 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cpZpusYQklJHwF7C", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K2 SE-all.json b/resources/profiles/Creality/filament/CR-PETG @K2 SE-all.json index c6d5abb141d..e03a34d2103 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K2 SE-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K2 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wszfgAr4wGMhfak4", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K2-all.json b/resources/profiles/Creality/filament/CR-PETG @K2-all.json index 01a2177157d..3c328bf7efc 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K2-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "twFraQUSFLNuYrQd", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-PETG @SPARKX i7-all.json index 238fc9d9efc..6bbbc65e9f8 100644 --- a/resources/profiles/Creality/filament/CR-PETG @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RFW04K7trMKi3cYq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @Ender-3 V4-all.json b/resources/profiles/Creality/filament/CR-PLA @Ender-3 V4-all.json index 1916397a42b..175f304ef76 100644 --- a/resources/profiles/Creality/filament/CR-PLA @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hy5Zpwpkx46UQlFy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @Ender-5 Max-all.json b/resources/profiles/Creality/filament/CR-PLA @Ender-5 Max-all.json index 0d09d9214a8..68fa08da552 100644 --- a/resources/profiles/Creality/filament/CR-PLA @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sU0HCPjQoOLHPmPc", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @Hi-all.json b/resources/profiles/Creality/filament/CR-PLA @Hi-all.json index 9e3be1ef07e..dd543fda9ac 100644 --- a/resources/profiles/Creality/filament/CR-PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2g9MEZ7yniK64tVA", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA @K1 Max_CFS-C-all.json index f8d7151b601..6fd4e736e7a 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rkd11EbVutxkB4Yy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K1 SE-all.json b/resources/profiles/Creality/filament/CR-PLA @K1 SE-all.json index b3c159dbcb5..0b31dd3075a 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K1 SE-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dFig6q8KlgjU4stK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA @K1 SE_CFS-C-all.json index 580bebf3fcc..3abde8df57d 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2sTv8VK78NAkgv22", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA @K1C-all.json index 4cd480d74f7..d98582cf9c3 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3chsaV1fugQudOqC", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA @K1C_CFS-C-all.json index bf32753b0ec..e8a7ab0ad6a 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Xu46QkbGLqe9nSxT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA @K1_CFS-C-all.json index be5bdaaa763..722c4978c2b 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dDLVUGD8AqxJuSb2", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PLA @K2 Plus-all.json index 1a73e1634bd..172d39a11b5 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FsNcay7aLjZKGih8", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-PLA @K2 Pro-all.json index fdfbbef1c52..fff8741bec8 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yXWDlqzGqqIg2tbx", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K2 SE-all.json b/resources/profiles/Creality/filament/CR-PLA @K2 SE-all.json index c58a5f3a8c2..cbb2931fbd4 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j8Iaz6y4iiOw2I5n", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K2-all.json b/resources/profiles/Creality/filament/CR-PLA @K2-all.json index 5c15a48b32d..75c085137d5 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K2-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7f0r4XOgIhVG2OPH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-PLA @SPARKX i7-all.json index ff98272efd7..4727ca270ac 100644 --- a/resources/profiles/Creality/filament/CR-PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "G1KqKgylj61LrtiS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Carbon @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Carbon @K1 Max_CFS-C-all.json index 3bcf4b771e4..18f928308c3 100644 --- a/resources/profiles/Creality/filament/CR-PLA Carbon @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Carbon @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VzHBAqKC0WWSEga0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Carbon @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA Carbon @K1C-all.json index 19f7b646ef2..071cdb39452 100644 --- a/resources/profiles/Creality/filament/CR-PLA Carbon @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Carbon @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2ve6KpyKswcbHPJi", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Carbon @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Carbon @K1C_CFS-C-all.json index c2d4ad14b88..85bdd7bb41b 100644 --- a/resources/profiles/Creality/filament/CR-PLA Carbon @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Carbon @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MbgilTqqbN9QZvtq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Carbon @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Carbon @K1_CFS-C-all.json index 2fab455cf84..5118f3b0152 100644 --- a/resources/profiles/Creality/filament/CR-PLA Carbon @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Carbon @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e5ACy8cJonV9q1pe", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Carbon @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PLA Carbon @K2 Plus-all.json index bb25b5d474c..f3efa4d2ac4 100644 --- a/resources/profiles/Creality/filament/CR-PLA Carbon @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Carbon @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ua3BCvZtfYAgH7nN", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K1 Max_CFS-C-all.json index f412a907c5c..b84b651e68f 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "njQE4bpSlZHrCqrg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K1C-all.json index 6097fab3414..12834e2b63b 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eCuLoIdPsTEiLxZB", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K1C_CFS-C-all.json index a672a0c8e3d..4944e616276 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5vTZFUcLv6DL06Nr", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K1_CFS-C-all.json index 6a4d7eeef78..3c288db1e65 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HDRiQNtbO8jZR6tW", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Plus-all.json index ba3ad11eca0..cb2e84fa5be 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gKRZWt2XVBGFoQ6t", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Pro-all.json index 118bb40ec7c..c320654960a 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yGc6fpse4MyUXWXa", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K2-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K2-all.json index 927f479b675..f0d35f90da3 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @K2-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BJwFbpJ8baT3vyEU", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @SPARKX i7-all.json index e268cb99b7a..b2cf047a8aa 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0xviyTPYLAxrpVGK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @Ender-3 V4-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @Ender-3 V4-all.json index 20b07cfbb31..f341ed0ee4a 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0edq8qWqKaGPZc1t", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K1 Max_CFS-C-all.json index 8617f0bd2d3..5f94d3a21b1 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZFXelUe4vcYytBIg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K1C-all.json index 5091b279499..68c02594da2 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mQDyxAEILwLuFWAw", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K1C_CFS-C-all.json index da9bf93f171..c19a9407809 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "38NjxetvurFFPPEy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K1_CFS-C-all.json index 9416e6a7a7f..20477243e60 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KFNeCYp4ck8diZRG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K2 Plus-all.json index bfd69a63f7a..e62afb4ad37 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WXOXHiNp1tvh4Y5T", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K2 Pro-all.json index 4b497c0ecf9..62ab04db20e 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LNN1w66GDTFxTCMq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K2-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K2-all.json index 8a5b4921ca2..0b5efb1f62c 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @K2-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nk9dxS7bcChQ26pZ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @SPARKX i7-all.json index ffe5aa441eb..23fd3380c4b 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NNx1aU5NjcyeKPec", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @Ender-3 V4-all.json b/resources/profiles/Creality/filament/CR-Silk @Ender-3 V4-all.json index ba00c7dcf3a..0b6c2422b34 100644 --- a/resources/profiles/Creality/filament/CR-Silk @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "96xBgfns6PJljRBO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @Ender-5 Max-all.json b/resources/profiles/Creality/filament/CR-Silk @Ender-5 Max-all.json index 887ee3d0dd1..41047d385c5 100644 --- a/resources/profiles/Creality/filament/CR-Silk @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vFgKdtdiuqqrL9rk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @Hi-all.json b/resources/profiles/Creality/filament/CR-Silk @Hi-all.json index ac8192b0548..838ffa205cc 100644 --- a/resources/profiles/Creality/filament/CR-Silk @Hi-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @Hi-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tCMjuQOR2yj66jPW", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Silk @K1 Max_CFS-C-all.json index 82535379968..ef4503c7f0c 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ljLSobQ4S3BAkBNk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K1 SE-all.json b/resources/profiles/Creality/filament/CR-Silk @K1 SE-all.json index 81877f44e01..6261b0607b4 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K1 SE-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jHEDkgKkZAy21Ali", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Silk @K1 SE_CFS-C-all.json index 54a129d6829..a5e4bf6b40f 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GbHXYf8i8km1Ox5r", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K1C-all.json b/resources/profiles/Creality/filament/CR-Silk @K1C-all.json index 60fea441077..ce4e3be3ee8 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I4LxzBtRIwagIQUJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Silk @K1C_CFS-C-all.json index 24428407910..c44216537a4 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JMpBkMELewelYBDU", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Silk @K1_CFS-C-all.json index 6adf6b81e9a..164cadd6cd5 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dVxmGRP36D3lampi", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-Silk @K2 Plus-all.json index 978a7438b15..83927ba13ba 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8mKZzYS3ykGEMqjH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-Silk @K2 Pro-all.json index 5de03e08251..401753cdbd2 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KBVdrZA7bYRpGztN", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K2 SE-all.json b/resources/profiles/Creality/filament/CR-Silk @K2 SE-all.json index eff35d23145..2151efcec7a 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K2 SE-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0bvCEevcKO0uubLD", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K2-all.json b/resources/profiles/Creality/filament/CR-Silk @K2-all.json index 84f914b020e..dc5301be796 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K2-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MXAd3uHJUNHLFA4i", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-Silk @SPARKX i7-all.json index 20867e5c9a3..3e62f7680cf 100644 --- a/resources/profiles/Creality/filament/CR-Silk @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "A30ICaD1Lz0cWkEH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-TPU @K1 Max_CFS-C-all.json index 824549ed9ab..d27ed626819 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K1 Max_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KkOkqdyd9DekhhNx", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @K1C-all.json b/resources/profiles/Creality/filament/CR-TPU @K1C-all.json index c5fe5163d35..490e293ab9d 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K1C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7IDbEU7GXQfJbFQz", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-TPU @K1C_CFS-C-all.json index 57f4f42a747..8186e5a558a 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K1C_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "m33d4hGzs5ZC1faF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-TPU @K1_CFS-C-all.json index e0d674d79a6..34343ecff5b 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K1_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kt3VziPx3umU4Q5R", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-TPU @K2 Plus-all.json index ce93eb2cb85..bcc65299d1f 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K2 Plus-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KioNr9VhBOnLMtnm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-TPU @K2 Pro-all.json index b120cd3308b..abd8207f326 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K2 Pro-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8akFfk1Evt6aKtRL", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @K2-all.json b/resources/profiles/Creality/filament/CR-TPU @K2-all.json index c6b36db5ce2..9f0e96c0157 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K2-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K2-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZXIOQXEGhsUn2x8j", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-TPU @SPARKX i7-all.json index dfa0eb41db3..7181fce5e09 100644 --- a/resources/profiles/Creality/filament/CR-TPU @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @SPARKX i7-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mCfhjDYJc8oh3k2X", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Wood @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Wood @K1 Max_CFS-C-all.json index 015d77cd174..54c9f99ea00 100644 --- a/resources/profiles/Creality/filament/CR-Wood @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Wood @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Wood @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vIzshYLqN5j6pkDn", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Wood @K1C-all.json b/resources/profiles/Creality/filament/CR-Wood @K1C-all.json index 4682997375a..7def3b58f76 100644 --- a/resources/profiles/Creality/filament/CR-Wood @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-Wood @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-Wood @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zSfzwta4F6MAXAn7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Wood @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Wood @K1C_CFS-C-all.json index 4544ea376a8..59364bfce59 100644 --- a/resources/profiles/Creality/filament/CR-Wood @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Wood @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Wood @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5n4iNCttBHmnXKaT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Wood @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Wood @K1_CFS-C-all.json index 684baa63ab0..ce6631705fb 100644 --- a/resources/profiles/Creality/filament/CR-Wood @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Wood @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Wood @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kBGvS0Npk3V5eY8j", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Wood @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-Wood @K2 Plus-all.json index 791e93252ac..9d5910633b8 100644 --- a/resources/profiles/Creality/filament/CR-Wood @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-Wood @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-Wood @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NFRGg9wmbojJ0Ye9", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Creality Generic ABS @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic ABS @Ender-3V3-all.json index e5ef752e52a..ef6884e0695 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS @Ender-3V3-all", "inherits": "Creality Generic ABS", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "Jvnq628y3IlGGHK6", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic ABS @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic ABS @Ender-5Max-all.json index cbb5e904b9c..2e7d34794d9 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "mriWPwWZUKmr7ws0", "filament_id": "07001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic ABS @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic ABS @Hi-all.json index bfcf7b34727..10fe49d23e0 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS @Hi-all", "inherits": "Creality Generic ABS", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "mKgdNahVCaxQLMJE", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic ABS @K1-all.json b/resources/profiles/Creality/filament/Creality Generic ABS @K1-all.json index 483687776ea..369b92c3040 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS @K1-all", "inherits": "Creality Generic ABS", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "lbMWwEM2Rb9ylrkA", "instantiation": "true", "filament_max_volumetric_speed": [ "14" diff --git a/resources/profiles/Creality/filament/Creality Generic ABS @K2-all.json b/resources/profiles/Creality/filament/Creality Generic ABS @K2-all.json index a725ff63603..15229ac4ebb 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS @K2-all", "inherits": "Creality Generic ABS", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "jl0usGdbqac1xcGN", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Creality/filament/Creality Generic ABS.json b/resources/profiles/Creality/filament/Creality Generic ABS.json index bf807b6764c..5fc04c19ac2 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fv5g33ofjgyjVexC", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality Generic ASA @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic ASA @Ender-3V3-all.json index c6e72d38183..3da4bd05316 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA @Ender-3V3-all", "inherits": "Creality Generic ASA", "from": "system", - "setting_id": "GFSA04_00", + "setting_id": "3KXcINpeRKqx9Hhw", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic ASA @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic ASA @Ender-5Max-all.json index 015e4fb99b2..d93db9edb53 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "4muzPKAzy8FJKM5D", "filament_id": "19001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic ASA @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic ASA @Hi-all.json index 30c223ef78e..aff57be93d1 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA @Hi-all", "inherits": "Creality Generic ASA", "from": "system", - "setting_id": "GFSA04_00", + "setting_id": "DaPUW1rMtWyZLo3H", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic ASA @K1-all.json b/resources/profiles/Creality/filament/Creality Generic ASA @K1-all.json index bd01703e0ba..2248ac68181 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA @K1-all", "inherits": "Creality Generic ASA", "from": "system", - "setting_id": "GFSA04_00", + "setting_id": "nq4sPDBNWLOnU5pD", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Creality/filament/Creality Generic ASA @K2-all.json b/resources/profiles/Creality/filament/Creality Generic ASA @K2-all.json index d4d5edc1b0f..5e1f0c9a18e 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA @K2-all", "inherits": "Creality Generic ASA", "from": "system", - "setting_id": "GFSA04_00", + "setting_id": "OAYGhucg52H8nPIF", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Creality/filament/Creality Generic ASA-CF @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic ASA-CF @Hi-all.json index d17a90acb55..4c11ce042b8 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA-CF @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA-CF @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA-CF @Hi-all", "inherits": "Creality Generic ASA @Hi-all", "from": "system", - "setting_id": "GFSA04_00", + "setting_id": "C7IB6HSJxW598zFA", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic ASA.json b/resources/profiles/Creality/filament/Creality Generic ASA.json index a58da1dbf88..ddf812b5ce8 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jHgcISP1UXOPsGH0", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality Generic PA @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic PA @Ender-5Max-all.json index 49f1c1c318b..f72b006d9b7 100644 --- a/resources/profiles/Creality/filament/Creality Generic PA @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PA @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PA @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "8caHexyoeQW9p1NF", "filament_id": "11001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic PA-CF @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PA-CF @Ender-3V3-all.json index 9d62c520ef3..f7990f9e99e 100644 --- a/resources/profiles/Creality/filament/Creality Generic PA-CF @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PA-CF @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PA-CF @Ender-3V3-all", "inherits": "Creality Generic PA-CF", "from": "system", - "setting_id": "GFSN99_01", + "setting_id": "PxYQg8A9aHBV0wKU", "instantiation": "true", "compatible_printers": [ "Creality Ender-3 V3 0.4 nozzle", diff --git a/resources/profiles/Creality/filament/Creality Generic PA-CF @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PA-CF @K1-all.json index c481f60a8bd..80ff499716c 100644 --- a/resources/profiles/Creality/filament/Creality Generic PA-CF @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PA-CF @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PA-CF @K1-all", "inherits": "Creality Generic PA-CF", "from": "system", - "setting_id": "GFSN99_01", + "setting_id": "3j6MMw59d8UigcH7", "instantiation": "true", "compatible_printers": [ "Creality K1 (0.4 nozzle)", diff --git a/resources/profiles/Creality/filament/Creality Generic PA-CF @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PA-CF @K2-all.json index accd941c63c..04ace3d4f42 100644 --- a/resources/profiles/Creality/filament/Creality Generic PA-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PA-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PA-CF @K2-all", "inherits": "Creality Generic PA-CF", "from": "system", - "setting_id": "GFSN99_01", + "setting_id": "08QXVyyDDpDPhOoJ", "instantiation": "true", "nozzle_temperature_initial_layer": [ "280" diff --git a/resources/profiles/Creality/filament/Creality Generic PA-CF.json b/resources/profiles/Creality/filament/Creality Generic PA-CF.json index 8f84eefde6c..92a2c258937 100644 --- a/resources/profiles/Creality/filament/Creality Generic PA-CF.json +++ b/resources/profiles/Creality/filament/Creality Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Creality Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "hBNsuwMzm7ZZn15D", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Creality/filament/Creality Generic PC @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PC @K1-all.json index b6b5b2bcad9..90983605946 100644 --- a/resources/profiles/Creality/filament/Creality Generic PC @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PC @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PC @K1-all", "inherits": "Creality Generic PC", "from": "system", - "setting_id": "GFSC99_06", + "setting_id": "NZ93pDkjFnCyAVZW", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PETG @Ender-3V3-all.json index 98e9acc71dd..b1e47e12c99 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG @Ender-3V3-all", "inherits": "Creality Generic PETG", "from": "system", - "setting_id": "GFSG99_00", + "setting_id": "VsfDu1bl3N1EaXrw", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic PETG @Ender-5Max-all.json index c0f325abd5f..63700d92072 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "vRVsTatkrE46rzRB", "filament_id": "06001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic PETG @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PETG @Hi-all.json index 4566c8d3d43..6889cf3cf34 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG @Hi-all", "inherits": "Creality Generic PETG", "from": "system", - "setting_id": "GFSG99_00", + "setting_id": "ZGI0yhD4lB10uUOd", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PETG @K1-all.json index 204d4df543c..67a901d8db6 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG @K1-all", "inherits": "Creality Generic PETG", "from": "system", - "setting_id": "GFSG99_00", + "setting_id": "zk1Typ98hZMZLn68", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PETG @K2-all.json index afe54cc1e68..55ab9051b46 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG @K2-all", "inherits": "Creality Generic PETG", "from": "system", - "setting_id": "GFSG99_00", + "setting_id": "FhtlimihjuAe2pbs", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG-CF @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PETG-CF @Hi-all.json index 40a105035dc..28f6f071502 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG-CF @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG-CF @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG-CF @Hi-all", "inherits": "Creality Generic PETG @Hi-all", "from": "system", - "setting_id": "GFSG99_00", + "setting_id": "G4ZIJDNOpQvutOfs", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG.json b/resources/profiles/Creality/filament/Creality Generic PETG.json index 1c6fc463d94..28c70a1f6af 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ixhOwyMvBCpI8nQs", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Creality/filament/Creality Generic PLA @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PLA @Ender-3V3-all.json index c5ce0b1bd26..5e28b48844c 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA @Ender-3V3-all", "inherits": "Creality Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "d9awwT21ZLo1iXoh", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic PLA @Ender-5Max-all.json index d613074e67c..23b15169e9f 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "zQiwnlxGlX4pFOHR", "filament_id": "04001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic PLA @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA @Hi-all.json index cde20a7d972..3247f385005 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA @Hi-all", "inherits": "Creality Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "3gf0CImK4nJwfXrB", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PLA @K1-all.json index a58982e8f86..d5ea668c687 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA @K1-all", "inherits": "Creality Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "c5ArCv3qjuKjBwEQ", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PLA @K2-all.json index ebb66ff4017..2c6000111f3 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA @K2-all", "inherits": "Creality Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "bnqvzgmJYbLraBWC", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Ender-3V3-all.json index 7c4c82327b0..7538ad118cc 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA High Speed @Ender-3V3-all", "inherits": "Creality Generic PLA @Ender-3V3-all", "from": "system", - "setting_id": "GFSL95_00", + "setting_id": "4F3dZWvsniH9QHtr", "instantiation": "true", "filament_max_volumetric_speed": [ "23" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Hi-all.json index d45ec238b97..f1748f5d810 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA High Speed @Hi-all", "inherits": "Creality Generic PLA @Hi-all", "from": "system", - "setting_id": "GFSL95_00", + "setting_id": "KzaopZGQPw5OJFFD", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K1-all.json index e6159def6f7..c810abe5e94 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA High Speed @K1-all", "inherits": "Creality Generic PLA @K1-all", "from": "system", - "setting_id": "GFSL95_00", + "setting_id": "ptxV78rC6wevH916", "instantiation": "true", "filament_max_volumetric_speed": [ "23" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K2-all.json index 43d6cb1de78..559cb6c0d8a 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA High Speed @K2-all", "inherits": "Creality Generic PLA @K2-all", "from": "system", - "setting_id": "GFSL95_00", + "setting_id": "ozHstwkc3N5LGWLV", "instantiation": "true", "filament_max_volumetric_speed": [ "23" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Matte @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Matte @Ender-3V3-all.json index 2d6a7357bef..8386488fcdd 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Matte @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Matte @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Matte @Ender-3V3-all", "inherits": "Creality Generic PLA @Ender-3V3-all", "from": "system", - "setting_id": "GFSL05_00", + "setting_id": "xF1B593frol5PWVw", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Matte @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Matte @Hi-all.json index 4f1bdbb1279..fe7c08e6c51 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Matte @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Matte @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Matte @Hi-all", "inherits": "Creality Generic PLA @Hi-all", "from": "system", - "setting_id": "GFSL05_00", + "setting_id": "R7Jo7NhjsR1iU2Fd", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Matte @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Matte @K1-all.json index 4aad961b0d0..9869ee37fa5 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Matte @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Matte @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Matte @K1-all", "inherits": "Creality Generic PLA @K1-all", "from": "system", - "setting_id": "GFSL05_00", + "setting_id": "3hreTG3DjcgmwZC2", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Matte @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Matte @K2-all.json index 1ceaf2f3993..1659fed28fd 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Matte @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Matte @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Matte @K2-all", "inherits": "Creality Generic PLA @K2-all", "from": "system", - "setting_id": "GFSL05_00", + "setting_id": "fxZf5E6IHWWq3dsu", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Silk @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Silk @Ender-3V3-all.json index 4e17dceeb18..d4e1b1f7aa8 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Silk @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Silk @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Silk @Ender-3V3-all", "inherits": "Creality Generic PLA @Ender-3V3-all", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "uPFnSMh7WoXmMAoy", "instantiation": "true", "filament_max_volumetric_speed": [ "7.5" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Silk @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Silk @Hi-all.json index c88ef128793..17b55e52028 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Silk @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Silk @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Silk @Hi-all", "inherits": "Creality Generic PLA @Hi-all", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "RPDVqZcn8EZizd1U", "instantiation": "true", "filament_flow_ratio": [ "0.97" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Silk @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Silk @K1-all.json index f4d7a433746..13cd1e7c93a 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Silk @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Silk @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Silk @K1-all", "inherits": "Creality Generic PLA @K1-all", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "pxvc0ICvqc0M3wYV", "instantiation": "true", "filament_max_volumetric_speed": [ "7.5" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Silk @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Silk @K2-all.json index 8626a32645a..3b9a3d242cb 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Silk @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Silk @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Silk @K2-all", "inherits": "Creality Generic PLA @K2-all", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "qS0Mlt24iz1k4P7n", "instantiation": "true", "filament_max_volumetric_speed": [ "10" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Wood @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Wood @Hi-all.json index 8ecc23f5874..53637dd4606 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Wood @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Wood @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Wood @Hi-all", "inherits": "Creality Generic PLA @Hi-all", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "OEc7Bc7WG99tuO5D", "instantiation": "true", "filament_flow_ratio": [ "0.88" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA-CF @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA-CF @Hi-all.json index 4e267ed514a..42eaf2c36c5 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA-CF @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA-CF @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA-CF @Hi-all", "inherits": "Creality Generic PLA-CF", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "9nAovlPz0SEUcovr", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA-CF @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PLA-CF @K1-all.json index 30e4bc094ae..7eca9d5dc02 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA-CF @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA-CF @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA-CF @K1-all", "inherits": "Creality Generic PLA-CF", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "zCnOLIfwhfZIDYLC", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA-CF @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PLA-CF @K2-all.json index 959e4a5d026..7b2b7212e85 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA-CF @K2-all", "inherits": "Creality Generic PLA-CF", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "wfZgLrH8dafxsNyZ", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA-CF.json b/resources/profiles/Creality/filament/Creality Generic PLA-CF.json index d1f757a2bb8..83fa21d7d6b 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA-CF.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA-CF.json @@ -3,6 +3,7 @@ "name": "Creality Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "DCCWPQGMsvDOucwx", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality Generic PLA.json b/resources/profiles/Creality/filament/Creality Generic PLA.json index b0d5c2a89d0..6791ec64c44 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rUYYpB3GkiNCVyfY", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality Generic TPU @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic TPU @Ender-3V3-all.json index 5510f3b6c13..11b24086b25 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU @Ender-3V3-all", "inherits": "Creality Generic TPU", "from": "system", - "setting_id": "GFU99_CREALITY_00", + "setting_id": "0fDkYNB91MiqbAS0", "instantiation": "true", "hot_plate_temp": [ "30" diff --git a/resources/profiles/Creality/filament/Creality Generic TPU @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic TPU @Ender-5Max-all.json index f19b29106f5..20b4033ed45 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "aaiFHjbveXabDAMr", "filament_id": "10001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic TPU @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic TPU @Hi-all.json index 78c8a27bc7d..c3b5905d964 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU @Hi-all", "inherits": "Creality Generic TPU", "from": "system", - "setting_id": "GFU99_CREALITY_00", + "setting_id": "aF2isnhJKc3hoq8r", "instantiation": "true", "hot_plate_temp": [ "30" diff --git a/resources/profiles/Creality/filament/Creality Generic TPU @K1-all.json b/resources/profiles/Creality/filament/Creality Generic TPU @K1-all.json index 6f538186542..c8d4b63a698 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU @K1-all", "inherits": "Creality Generic TPU", "from": "system", - "setting_id": "GFU99_CREALITY_00", + "setting_id": "isJCGG1B672xyX4l", "instantiation": "true", "hot_plate_temp": [ "30" diff --git a/resources/profiles/Creality/filament/Creality Generic TPU @K2-all.json b/resources/profiles/Creality/filament/Creality Generic TPU @K2-all.json index 6b32693f3ab..db2138db739 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU @K2-all", "inherits": "Creality Generic TPU", "from": "system", - "setting_id": "GFU99_CREALITY_00", + "setting_id": "60PiyJbkRFDzr7b5", "instantiation": "true", "hot_plate_temp": [ "40" diff --git a/resources/profiles/Creality/filament/Creality Generic TPU.json b/resources/profiles/Creality/filament/Creality Generic TPU.json index 12310fb9131..904768bb5e2 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mKCynAMC7cjY03c0", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Creality/filament/Creality HF Generic PLA.json b/resources/profiles/Creality/filament/Creality HF Generic PLA.json index a60cf558b3b..0b0c7d7d701 100644 --- a/resources/profiles/Creality/filament/Creality HF Generic PLA.json +++ b/resources/profiles/Creality/filament/Creality HF Generic PLA.json @@ -3,7 +3,7 @@ "name": "Creality HF Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "p07b7w0HDxavGLdd", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality HF Generic Speed PLA.json b/resources/profiles/Creality/filament/Creality HF Generic Speed PLA.json index d82f8848f48..dabcf7cdba5 100644 --- a/resources/profiles/Creality/filament/Creality HF Generic Speed PLA.json +++ b/resources/profiles/Creality/filament/Creality HF Generic Speed PLA.json @@ -3,7 +3,7 @@ "name": "Creality HF Generic Speed PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Jp93uqYennsWVAKe", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality Hyper ABS @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Hyper ABS @Ender-5Max-all.json index fc8aed16715..8dc6b98afb3 100644 --- a/resources/profiles/Creality/filament/Creality Hyper ABS @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Hyper ABS @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Hyper ABS @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "9Ek7KtQF2kgJbeXg", "filament_id": "03001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Hyper PLA @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Hyper PLA @Ender-5Max-all.json index 957afc38876..78804787500 100644 --- a/resources/profiles/Creality/filament/Creality Hyper PLA @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Hyper PLA @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Hyper PLA @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "YUtnpJsC9o1D3NUR", "filament_id": "01001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Hyper PLA-CF @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Hyper PLA-CF @Ender-5Max-all.json index ec53f05dae8..9c5a06621b8 100644 --- a/resources/profiles/Creality/filament/Creality Hyper PLA-CF @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Hyper PLA-CF @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Hyper PLA-CF @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "fZvWZ9kfPN8MU6cX", "filament_id": "02001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Silk PLA @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Silk PLA @Ender-5Max-all.json index 14bd453a270..82110363504 100644 --- a/resources/profiles/Creality/filament/Creality Silk PLA @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Silk PLA @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Silk PLA @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "S4nzxbjE4DmkoS7p", "filament_id": "05001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K1 Max_CFS-C-all.json index f9ef845e221..bd674466203 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "158lgUy4NWVKp625", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K1C-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K1C-all.json index d61eb86038a..20e1c80d6c2 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K1C-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K1C-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GGgjz1BfWVm9G9oO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K1C_CFS-C-all.json index 7409ecd7099..36b97a2268d 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gZVVoUCJ7QRhAHjO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K1_CFS-C-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K1_CFS-C-all.json index a0d70444d94..eab3e35431b 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Av0kmRfBxzfEtFMI", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K2 Plus-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K2 Plus-all.json index 5d784a30e10..10971264e85 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8jntA1DA7UKpFB5D", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K2 Pro-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K2 Pro-all.json index c7e21f60dd3..1b6b372fd5f 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xIghXweOHDN6eUJA", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K2-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K2-all.json index 3fda2472302..e70da1c59ef 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K2-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K2-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "knIpfA9wHBoyClD9", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @SPARKX i7-all.json b/resources/profiles/Creality/filament/EN-PLA+ @SPARKX i7-all.json index 436f4742c5e..415263d110f 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "noCevEGFMtClqvDZ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @Hi-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @Hi-all.json index e2918f21376..8b2802939b2 100644 --- a/resources/profiles/Creality/filament/ENDER FAST PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/ENDER FAST PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "ENDER FAST PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZK9la4OwCbY6P1Ka", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Plus-all.json index 87fce80c82d..0d353b5b007 100644 --- a/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "ENDER FAST PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aX5GTeSuTe2xMM6U", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Pro-all.json index 1c2aee35a37..ce9f2f01867 100644 --- a/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "ENDER FAST PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rPu8RtmT8ketxiKn", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @K2-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @K2-all.json index 3b6140450df..b3178db08de 100644 --- a/resources/profiles/Creality/filament/ENDER FAST PLA @K2-all.json +++ b/resources/profiles/Creality/filament/ENDER FAST PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "ENDER FAST PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KXmnvtnGjZiXVYVs", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @SPARKX i7-all.json index f18e7965ec1..33d7a84e985 100644 --- a/resources/profiles/Creality/filament/ENDER FAST PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/ENDER FAST PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "ENDER FAST PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EOJUiD8x2hx3y4HO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Ender-PLA @Ender-3 V4-all.json index 843a01d580b..0c911f30cba 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4ZsPBPTcW7Nbud94", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @Hi-all.json b/resources/profiles/Creality/filament/Ender-PLA @Hi-all.json index f5595db898b..a7ff4e72473 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3cpofydFoBjnKdNH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Ender-PLA @K1 Max_CFS-C-all.json index 8d91cb361eb..7a70d000773 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CHtytKAUVFpAy8Qm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @K1C-all.json b/resources/profiles/Creality/filament/Ender-PLA @K1C-all.json index f3d0a961ca5..a9bd4373e6e 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xnFY6LUmvd7zH1kQ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Ender-PLA @K1C_CFS-C-all.json index 7df3be0f552..258c51c0d07 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q3cb72JAry8Nj9Jc", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Ender-PLA @K1_CFS-C-all.json index ed8d932b3b7..98e13e58997 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tITLcxwReOtBn4un", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Ender-PLA @K2 Plus-all.json index 9622ce948d0..625795d82b0 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CZfEiMPan3Lz1qK6", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Ender-PLA @K2 Pro-all.json index 82af096bd61..096baea4847 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QqeD0acLtTx3o8hq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @K2-all.json b/resources/profiles/Creality/filament/Ender-PLA @K2-all.json index 57849c693c5..e7f978e6cb3 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "r81gYSIP0AGeFowj", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/Ender-PLA @SPARKX i7-all.json index 929095e9b92..a4f9b7c7cea 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I8mV3hBRdyGTSqgt", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic ABS @Ender-3 V4-all.json index 9dcacb29025..6690a036763 100644 --- a/resources/profiles/Creality/filament/Generic ABS @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Ender-3 V4-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4uYoekJTerUnoYl8", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic ABS @Ender-5 Max-all.json index c96bed99b3f..ca7518e9b3b 100644 --- a/resources/profiles/Creality/filament/Generic ABS @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Ender-5 Max-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3BjyaE4hGrz7tqnk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @Hi-all.json b/resources/profiles/Creality/filament/Generic ABS @Hi-all.json index f23ddb234e0..e64f47d466f 100644 --- a/resources/profiles/Creality/filament/Generic ABS @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Hi-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9z0uoXnHksedYsyq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ABS @K1 Max_CFS-C-all.json index 3bc3c7c3a7f..4c78f3881a4 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K1 Max_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VF8DUfOECtADXXXT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K1 SE-all.json b/resources/profiles/Creality/filament/Generic ABS @K1 SE-all.json index 219b392f56d..0841cb593a6 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K1 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6tqh2NX6hGdsR8Gy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ABS @K1 SE_CFS-C-all.json index ec798a8dd7e..8c297b397d4 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K1 SE_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "D95cc9TGmWbPC8em", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K1C-all.json b/resources/profiles/Creality/filament/Generic ABS @K1C-all.json index b90c6bad01e..2f21834dc76 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K1C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CGDrkpaby0ZdpoSH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ABS @K1C_CFS-C-all.json index 3cae95dc900..4135ea39ac3 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K1C_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eMQXlXLK9wyeqYEx", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ABS @K1_CFS-C-all.json index 04d587cb5f2..eb71fa7e643 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K1_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3YcpDd1XsJKf2T02", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic ABS @K2 Plus-all.json index 458a9a24835..d6f73b5e64e 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K2 Plus-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ju8Vp3ee2mBYGzKr", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic ABS @K2 Pro-all.json index 5defa04c030..e3c1674f0b0 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K2 Pro-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CKz3942iA5I2gfaA", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K2 SE-all.json b/resources/profiles/Creality/filament/Generic ABS @K2 SE-all.json index 7f571b1f7a3..e895bc8ab84 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K2 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PdjEPWVOSloevfUZ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K2-all.json b/resources/profiles/Creality/filament/Generic ABS @K2-all.json index 400e12eed4b..f9949a0dc52 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K2-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K2-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "v8K9u7osBIzsrQCh", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic ASA @Ender-5 Max-all.json index 3d2282461f6..85251468b07 100644 --- a/resources/profiles/Creality/filament/Generic ASA @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @Ender-5 Max-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1cOFjktr0dBTbYS4", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ASA @K1 Max_CFS-C-all.json index cb8a8172c1e..1b8af0ce94d 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K1 Max_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JS8oDrWmlTmmZ9VJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K1 SE-all.json b/resources/profiles/Creality/filament/Generic ASA @K1 SE-all.json index 0748a5d2e10..9ffdccc2f33 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K1 SE-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XK0E9L6nEGz9410w", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ASA @K1 SE_CFS-C-all.json index 980ddcb95d6..7e83bc3c500 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K1 SE_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "U4HDFaHTS7EtgCJj", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K1C-all.json b/resources/profiles/Creality/filament/Generic ASA @K1C-all.json index f714b8e4f56..eaf1f691855 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K1C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Yya6SGcDEMvAKLYs", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ASA @K1C_CFS-C-all.json index dd749741f0f..338fc4981a4 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K1C_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1nVS1yN0psDyFajd", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ASA @K1_CFS-C-all.json index cfa349f1d69..e2db7afa6ee 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K1_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "62EZvOkMH6gWc6CU", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic ASA @K2 Plus-all.json index 7577891b922..f9aa956e15b 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K2 Plus-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bPiPJ2MrgMOq01jX", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic ASA @K2 Pro-all.json index f57faabbb56..2723557aa65 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K2 Pro-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RScrAM7qssIS1RQC", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K2 SE-all.json b/resources/profiles/Creality/filament/Generic ASA @K2 SE-all.json index 86ae9dca6f6..79cd23a4f45 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K2 SE-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "B3KqWjy2YfMDxjbS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K2-all.json b/resources/profiles/Creality/filament/Generic ASA @K2-all.json index 2419947adf8..cb18ef79a42 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K2-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K2-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nmVYYCCRebt7sRKj", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic ASA-CF @K2 Plus-all.json index 71ee9185fdf..6736c660a29 100644 --- a/resources/profiles/Creality/filament/Generic ASA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic ASA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA-CF @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DnKtg4yCiafeDBIu", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @Hi-all.json b/resources/profiles/Creality/filament/Generic BVOH @Hi-all.json index 0e1aa3fb5a7..decbb3e4a1c 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @Hi-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5HO5PysrHUKqReVb", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic BVOH @K1 Max_CFS-C-all.json index bb0f70816de..81dc3b2ac42 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K1 Max_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rzpKPYQdPjzN3oVS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @K1C-all.json b/resources/profiles/Creality/filament/Generic BVOH @K1C-all.json index 47387ac3be1..ac52221e0e4 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K1C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sBNRrUUShVPgFlD2", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic BVOH @K1C_CFS-C-all.json index 1c3b1ddaf16..35d6581e85d 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K1C_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "F35hv7Jv8sdPpHuG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic BVOH @K1_CFS-C-all.json index f9e153ea8d5..db50bb2d683 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K1_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "quzQIkhGomoTlGMy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic BVOH @K2 Plus-all.json index 1a77b66aee0..2dde38b9967 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "s7taqaFnDhBFXnJQ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic BVOH @K2 Pro-all.json index f2785bd2140..c9e4552fed3 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K2 Pro-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WN4gUC7lL433UeUa", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @K2-all.json b/resources/profiles/Creality/filament/Generic BVOH @K2-all.json index 5e1ae13b4c3..6bb308253a9 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K2-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K2-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "appeb6xRpTFbyGsM", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic HIPS @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic HIPS @K1 Max_CFS-C-all.json index 4dcad26bd14..b4b0fc15c42 100644 --- a/resources/profiles/Creality/filament/Generic HIPS @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic HIPS @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic HIPS @K1 Max_CFS-C-all", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "GFSA04", + "setting_id": "un4bn2cxbFdGO3DR", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic HIPS @K1C-all.json b/resources/profiles/Creality/filament/Generic HIPS @K1C-all.json index 8515096fece..78fde3f1ab4 100644 --- a/resources/profiles/Creality/filament/Generic HIPS @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic HIPS @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic HIPS @K1C-all", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e1wQQnbsFK0eOT76", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic HIPS @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic HIPS @K1C_CFS-C-all.json index 6ab853d6547..f63576c7cf7 100644 --- a/resources/profiles/Creality/filament/Generic HIPS @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic HIPS @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic HIPS @K1C_CFS-C-all", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5ZZon4W5GRf2ilKk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic HIPS @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic HIPS @K1_CFS-C-all.json index ffe08c86250..23a86958eb6 100644 --- a/resources/profiles/Creality/filament/Generic HIPS @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic HIPS @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic HIPS @K1_CFS-C-all", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "GFSA04", + "setting_id": "81vAelQ8KbUPkNAL", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic HIPS @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic HIPS @K2 Plus-all.json index 5fb87af569a..d004f30737e 100644 --- a/resources/profiles/Creality/filament/Generic HIPS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic HIPS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic HIPS @K2 Plus-all", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eaR3AeSZnfqfAKaX", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA @K1 Max_CFS-C-all.json index db666376de9..9fd3eb7324a 100644 --- a/resources/profiles/Creality/filament/Generic PA @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kJAlbLyNyUBh772X", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA @K1C-all.json b/resources/profiles/Creality/filament/Generic PA @K1C-all.json index f07abd2ebb4..ef8e0358670 100644 --- a/resources/profiles/Creality/filament/Generic PA @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Y68qR47SYWUENSKm", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA @K1C_CFS-C-all.json index 74dbec0e75d..91bdcf21c70 100644 --- a/resources/profiles/Creality/filament/Generic PA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VtABl7yMx0yDOnz0", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA @K1_CFS-C-all.json index f96feee9e29..7f077d59a8f 100644 --- a/resources/profiles/Creality/filament/Generic PA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ivl9C3evnuPMgB0F", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA @K2 Plus-all.json index ef5efd2838d..59e941c60f9 100644 --- a/resources/profiles/Creality/filament/Generic PA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "E5tvF6Xpv7jZzLgm", "instantiation": "true", "additional_cooling_fan_speed": [ "70" diff --git a/resources/profiles/Creality/filament/Generic PA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PA @K2 Pro-all.json index 710e2355cdc..c9df3bc667d 100644 --- a/resources/profiles/Creality/filament/Generic PA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0139pzgdlOAScB7g", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA @K2-all.json b/resources/profiles/Creality/filament/Generic PA @K2-all.json index 9bbb1cb7ece..85793868582 100644 --- a/resources/profiles/Creality/filament/Generic PA @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K2-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gxCrQfCHpKO4p5IT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA-CF @K1 Max_CFS-C-all.json index 2795f4997ef..b457a527a51 100644 --- a/resources/profiles/Creality/filament/Generic PA-CF @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PA-CF @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jEl76gFz2QQyvW6A", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PA-CF @K1C-all.json index c0ae2930034..2d4f9cb2bf5 100644 --- a/resources/profiles/Creality/filament/Generic PA-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PA-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA-CF @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eGoj7kJxL2NfqY5o", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA-CF @K1C_CFS-C-all.json index 0746c394bd4..8263c9d4264 100644 --- a/resources/profiles/Creality/filament/Generic PA-CF @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PA-CF @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zbiMNXMvHACEqLfK", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA-CF @K1_CFS-C-all.json index b0c356786d6..49173fecd45 100644 --- a/resources/profiles/Creality/filament/Generic PA-CF @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PA-CF @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA-CF @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DB1549abK4ZDVWG2", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA-CF @K2 Plus-all.json index 2b2d62ac129..56c2aeed8a3 100644 --- a/resources/profiles/Creality/filament/Generic PA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aBR3ODfDoxJOLx8k", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA12-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA12-CF @K2 Plus-all.json index 955acd3b3cf..3fc6fa46441 100644 --- a/resources/profiles/Creality/filament/Generic PA12-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA12-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA12-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rZP36BUTvc68sHWI", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K1 Max_CFS-C-all.json index d77b7ffcb62..c9aa3f2918b 100644 --- a/resources/profiles/Creality/filament/Generic PA6-CF @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PA6-CF @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QSCyT35VNEEMhvud", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K1C-all.json index 2010f829371..c3108d354a6 100644 --- a/resources/profiles/Creality/filament/Generic PA6-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PA6-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fhFfYR7jZE4EbV0j", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K1C_CFS-C-all.json index 6e33d60b0ea..d745af00095 100644 --- a/resources/profiles/Creality/filament/Generic PA6-CF @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PA6-CF @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Go0O3gXzk3QyyBGk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K1_CFS-C-all.json index e579e40909a..6eb15698166 100644 --- a/resources/profiles/Creality/filament/Generic PA6-CF @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PA6-CF @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dOmhoYus5mupLjle", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K2 Plus-all.json index 94f06e7db25..162ec5e7d1a 100644 --- a/resources/profiles/Creality/filament/Generic PA6-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA6-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3UftFI9726wU6cBK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K2 Pro-all.json index f3102313d44..6049b3b882b 100644 --- a/resources/profiles/Creality/filament/Generic PA6-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PA6-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "p6hDaLrNJvnvejQv", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA6-GF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA6-GF @K2 Plus-all.json index c9bcff90341..d113edd116d 100644 --- a/resources/profiles/Creality/filament/Generic PA6-GF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA6-GF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA6-GF @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Snwr9UFekvFcj8lx", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA612-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA612-CF @K2 Plus-all.json index 73b2e2084d8..25956f1c1ca 100644 --- a/resources/profiles/Creality/filament/Generic PA612-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA612-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA612-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Od0K6cY5fZtDAOOF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA612-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PA612-CF @K2 Pro-all.json index 757f121585e..5a29d469ef6 100644 --- a/resources/profiles/Creality/filament/Generic PA612-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PA612-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PA612-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YZr7lxLJZjL71WzO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K1 Max_CFS-C-all.json index a3ab90075ef..3fee83483fe 100644 --- a/resources/profiles/Creality/filament/Generic PAHT-CF @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q6f7jvJqw2gyNBFZ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K1C-all.json index 24f3c640078..100798cac6e 100644 --- a/resources/profiles/Creality/filament/Generic PAHT-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Rt7TNUSJlBGzxbcN", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K1C_CFS-C-all.json index 603d21e928b..71dff576e2f 100644 --- a/resources/profiles/Creality/filament/Generic PAHT-CF @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CbUS1kiIgsHTZa28", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K1_CFS-C-all.json index b17098080b0..956496c6a1d 100644 --- a/resources/profiles/Creality/filament/Generic PAHT-CF @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "71tO55hudcpbpReV", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Plus-all.json index 87de64d9727..2b21d3680c8 100644 --- a/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "p3nXM3BSnsmS2XHO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Pro-all.json index 3853bf54db0..cd4b5491a9e 100644 --- a/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gwXDISorxlzhqE2L", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K2-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K2-all.json index 809d617bfa8..0c507bc83d4 100644 --- a/resources/profiles/Creality/filament/Generic PAHT-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K2-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OK8a49qQ1ooSpYKe", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PC @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PC @K1 Max_CFS-C-all.json index d196ff38eda..b2e4a4cc1a7 100644 --- a/resources/profiles/Creality/filament/Generic PC @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PC @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PC @K1 Max_CFS-C-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Dh2hSCE4xEmmv601", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PC @K1C-all.json b/resources/profiles/Creality/filament/Generic PC @K1C-all.json index 0e2d6c96e18..c23127714d2 100644 --- a/resources/profiles/Creality/filament/Generic PC @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PC @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PC @K1C-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KWaWn7qw5WFhxP6u", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PC @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PC @K1C_CFS-C-all.json index 1bf63972b2b..5a775566d26 100644 --- a/resources/profiles/Creality/filament/Generic PC @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PC @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PC @K1C_CFS-C-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YXZbtzq7xTHm1L1k", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PC @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PC @K1_CFS-C-all.json index 8e4bc89aa66..11d4aa54b06 100644 --- a/resources/profiles/Creality/filament/Generic PC @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PC @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PC @K1_CFS-C-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZzPtJF9WrqfZa29N", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PC @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PC @K2 Plus-all.json index 24d10917572..a4fd7b8e178 100644 --- a/resources/profiles/Creality/filament/Generic PC @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PC @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PC @K2 Plus-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3knMGS1s49r6Z9eL", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PC @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PC @K2 Pro-all.json index 939280a0eba..17b8f5ba3ca 100644 --- a/resources/profiles/Creality/filament/Generic PC @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PC @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PC @K2 Pro-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CSAIxm75n407CqTG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PCTG @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PCTG @K2 Plus-all.json index eb652b11889..5e82819e328 100644 --- a/resources/profiles/Creality/filament/Generic PCTG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PCTG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PCTG @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zmSP0G2uQvugDqZs", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET @K1 Max_CFS-C-all.json index 2997083adf3..f2bd3dde2b0 100644 --- a/resources/profiles/Creality/filament/Generic PET @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K1 Max_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rbuxBWsJ43mXgEIi", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET @K1C-all.json b/resources/profiles/Creality/filament/Generic PET @K1C-all.json index 7fd91d6fb3d..b855b18446c 100644 --- a/resources/profiles/Creality/filament/Generic PET @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K1C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yblsYcRQlWMPyE2X", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET @K1C_CFS-C-all.json index 029888f2dfe..fef797ee4bf 100644 --- a/resources/profiles/Creality/filament/Generic PET @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K1C_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Yhi1n5iQJpQPQQAp", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET @K1_CFS-C-all.json index f713c802f98..6de2eb826dd 100644 --- a/resources/profiles/Creality/filament/Generic PET @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K1_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HrEHGzilsq8F3ne7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PET @K2 Plus-all.json index 1638d071f6c..d23ec6c6812 100644 --- a/resources/profiles/Creality/filament/Generic PET @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K2 Plus-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OFMSlAPXoITrhmPG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PET @K2 Pro-all.json index daf375c971c..ff35401f39f 100644 --- a/resources/profiles/Creality/filament/Generic PET @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K2 Pro-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fIxga8QpAboN7reJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET @K2-all.json b/resources/profiles/Creality/filament/Generic PET @K2-all.json index 2336b9404ea..52aaa6e18cc 100644 --- a/resources/profiles/Creality/filament/Generic PET @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K2-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "K7DNfNNpWlGriQip", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K1 Max_CFS-C-all.json index 1e07976b9d9..c42769fe119 100644 --- a/resources/profiles/Creality/filament/Generic PET-CF @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PET-CF @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iAykK8PMYs9LdxrP", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K1C-all.json index 5777ca035f1..a2937237227 100644 --- a/resources/profiles/Creality/filament/Generic PET-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PET-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K1C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WhGF57kMBW9hM9zv", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K1C_CFS-C-all.json index 53758a5f54b..5e49cbdb770 100644 --- a/resources/profiles/Creality/filament/Generic PET-CF @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PET-CF @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IiR1UEHx5RrOeAWM", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K1_CFS-C-all.json index 844e1b65e82..72bec3d1ba7 100644 --- a/resources/profiles/Creality/filament/Generic PET-CF @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PET-CF @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K1_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2a9xvwlw1X0qsA26", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K2 Plus-all.json index 234d8cdd173..627620e2e04 100644 --- a/resources/profiles/Creality/filament/Generic PET-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PET-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K2 Plus-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "srmb3jsHHpFDnfsp", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K2 Pro-all.json index 501add5ed43..ab8839dd7ec 100644 --- a/resources/profiles/Creality/filament/Generic PET-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PET-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K2 Pro-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5tjKAfZmtCNClyrd", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic PETG @Ender-3 V4-all.json index 5eb55e15fbd..74e49dfb400 100644 --- a/resources/profiles/Creality/filament/Generic PETG @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Ender-3 V4-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "P9ZP95oPCCBeXhGC", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic PETG @Ender-5 Max-all.json index 40cf82de3eb..229ac91f2ba 100644 --- a/resources/profiles/Creality/filament/Generic PETG @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Ender-5 Max-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yNgF407ERXuU7LHE", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @Hi-all.json b/resources/profiles/Creality/filament/Generic PETG @Hi-all.json index 79d8a6eb54c..f855fb82172 100644 --- a/resources/profiles/Creality/filament/Generic PETG @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Hi-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1N9muT0ILCJ7pdQq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG @K1 Max_CFS-C-all.json index c303cd23461..2cba8d0911f 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K1 Max_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j2R2SrPu6U5fde21", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K1 SE-all.json b/resources/profiles/Creality/filament/Generic PETG @K1 SE-all.json index 5f730209bbc..2626c596da3 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K1 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ktn07NL2acbf4FzZ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG @K1 SE_CFS-C-all.json index 9b49b2a0a72..af8cb7d3715 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K1 SE_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8isRtWlMhY6f6OTg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K1C-all.json b/resources/profiles/Creality/filament/Generic PETG @K1C-all.json index 9d63399bdda..1122d81c46f 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "983sxUds4Bih3OCl", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG @K1C_CFS-C-all.json index 0751a945253..48b60877347 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K1C_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rMTi8mSKdtnzsMbr", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG @K1_CFS-C-all.json index ef5b2cfa1f1..5d518fde424 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K1_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9Ay01Nq2Dv2SfQVR", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PETG @K2 Plus-all.json index f98f4794853..1bb9217b847 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "z4vClzn8RViHNLgk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PETG @K2 Pro-all.json index 8b1ea84cf09..e50a03cb280 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "huEA8Ry63opxcD4n", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K2 SE-all.json b/resources/profiles/Creality/filament/Generic PETG @K2 SE-all.json index 9d486c6b4a8..1b56e51679a 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K2 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "awADayXExBihbXgS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K2-all.json b/resources/profiles/Creality/filament/Generic PETG @K2-all.json index b8cac262bb9..9df2e83d3d1 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7iDx59I7g14YDF8w", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PETG @SPARKX i7-all.json index 340277968f9..2fee02a7036 100644 --- a/resources/profiles/Creality/filament/Generic PETG @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5jgqjcjpqHPzxm6H", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K1 Max_CFS-C-all.json index 9da2c4cdaa6..e4ab4980638 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4aNmHiMKdF9f0qdK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K1C-all.json index 4edd9d272c6..8bbacdd0735 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "J9U6OONEnIpwmjf1", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K1C_CFS-C-all.json index 2bdfd562bb1..d5a0981341c 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K1C_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WaKz2m5F97gq2Lm2", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K1_CFS-C-all.json index 96b88acade6..1414ef10c29 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K1_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "37j0QrLekeU2z2q6", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K2 Plus-all.json index bdba57f0b96..71145505767 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OEzFehmwiMscMC7x", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K2 Pro-all.json index d791b741058..d4f5068e4de 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XNo4wgLuyPeOqInw", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K2-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K2-all.json index 6fbf4f1c4db..d9c52ea4d41 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LrzCY2ZsMGzQ9hZW", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @SPARKX i7-all.json index 237f456aa54..349f5d24183 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0UI0C81wu0FTlutg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-GF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PETG-GF @K2 Plus-all.json index f49582c056d..09c26dc7044 100644 --- a/resources/profiles/Creality/filament/Generic PETG-GF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-GF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-GF @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Bn3MV8VSTFbpxsJK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-GF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PETG-GF @K2 Pro-all.json index 97818fbe9a1..dda8a48f06a 100644 --- a/resources/profiles/Creality/filament/Generic PETG-GF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-GF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-GF @K2 Pro-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q5qYSWKf0YGbomey", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-GF @K2-all.json b/resources/profiles/Creality/filament/Generic PETG-GF @K2-all.json index 7cd65d60f9c..2505b3ccc8d 100644 --- a/resources/profiles/Creality/filament/Generic PETG-GF @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-GF @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-GF @K2-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mirtPgYBmAcUOLCg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic PLA @Ender-3 V4-all.json index 4fe5f0c5387..6bb5cef8b2f 100644 --- a/resources/profiles/Creality/filament/Generic PLA @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "prD5vMrpYGccWzdn", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic PLA @Ender-5 Max-all.json index d19a64ded01..54783f5efca 100644 --- a/resources/profiles/Creality/filament/Generic PLA @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ubfcxetXGj6agAoi", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @Hi-all.json b/resources/profiles/Creality/filament/Generic PLA @Hi-all.json index ade6b04155a..831a63dc03d 100644 --- a/resources/profiles/Creality/filament/Generic PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eza77EPrdoTvZdw7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA @K1 Max_CFS-C-all.json index 2a5931bc676..a2757b6400a 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ARsPmEmVZlsfqy4L", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K1 SE-all.json b/resources/profiles/Creality/filament/Generic PLA @K1 SE-all.json index 7d6061c32f6..fe66c9659f5 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZzKNiMtyn93fR8Hq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA @K1 SE_CFS-C-all.json index d995a87a677..c4b6a70d4ee 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "grHcTUEdjD6jxza1", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K1C-all.json b/resources/profiles/Creality/filament/Generic PLA @K1C-all.json index f2a793a8029..87b5d0554c6 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qSoHwF6RKEDk9oy0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA @K1C_CFS-C-all.json index 18f2869f7a0..a8e2ea3433c 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5oIZY7x0t6ORAd5y", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA @K1_CFS-C-all.json index ea835e8a08f..9ad9f4d172d 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LVSGrfS4cac3vRgQ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PLA @K2 Plus-all.json index fb7258977e4..9b4f832744d 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zgZhX3yZ3m9HZ8AF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PLA @K2 Pro-all.json index 9a976c6a638..97bfa85e57a 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "umMGfkURWkPH7wY2", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K2 SE-all.json b/resources/profiles/Creality/filament/Generic PLA @K2 SE-all.json index 325bb277604..8c2f352b62f 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "03mMqzkFvH7rS8wz", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K2-all.json b/resources/profiles/Creality/filament/Generic PLA @K2-all.json index 8582cebf5e7..5773b09d4a8 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WD6bTDOOwBE72RaU", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PLA @SPARKX i7-all.json index 19827ac4625..c0d5e84f04c 100644 --- a/resources/profiles/Creality/filament/Generic PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "09RAKy1b3XyRqJlV", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @Ender-3 V4-all.json index e34f9872a89..c651861af8f 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9EtBYoxLtP3BuplP", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @Ender-5 Max-all.json index 828a76daa01..ed024bf161b 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AHrCSGRui6sRCmQx", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1 Max_CFS-C-all.json index e90daf4a211..8721ebfd575 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gMlu34zMrx0IX0GY", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE-all.json index 4dcb9c4ac00..9b686f0f9a0 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kCiZBqAiO5Jc8RgA", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE_CFS-C-all.json index 75da2ed43ff..a606564c5d1 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dCS3zA3Z3QmsUMav", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1C-all.json index 9d7e142b1ec..f0bd1b2659f 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6p7VGPRhpUjCVmrs", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1C_CFS-C-all.json index 26c5f3e6712..9e1ed31ae49 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eL5STunwFpRYoNwx", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1_CFS-C-all.json index b77c0fdffb8..aa6a91936fc 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RGCRo5t8SRI85Oyz", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K2 Plus-all.json index c95758b4cf0..be755fcebb5 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nZoZ1KL4YYwCdBYo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K2 Pro-all.json index 0b4a9b0dd39..2e54d39334a 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eXbFz3H9NBjDv3fy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K2 SE-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K2 SE-all.json index d6bd3ea4d49..64c621680e7 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4PnBWB1vn3jXYDcV", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K2-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K2-all.json index 85a09d6540d..c754999f331 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Vp7iPE7R08sUpbNM", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @SPARKX i7-all.json index ff196a9ebc9..60fa4e2bee6 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KnXh5yN3mZ1zFs7t", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-3 V4-all.json index 4237b098095..1cf6f9ecd90 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4oKiaxCpzOVuq7JT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-5 Max-all.json index 94f452aeb25..250c3879825 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zIrKl9P6Aer6sbiS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @Hi-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @Hi-all.json index 55161e548f5..d2dab74d676 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yiXBAJwZHe0yW8MN", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 Max_CFS-C-all.json index 521c1676360..53f97c21f13 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "a8WrKJxnm4xNe1HK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE-all.json index fe441fdd775..92dc9c7f22c 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "inmumMkeEas0Maw3", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE_CFS-C-all.json index d56525f82f5..683eb16c4d6 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WaWMHS0yaaoiG98Q", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1C-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1C-all.json index 84a1e0b2475..7210792495c 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GpGBUE0LBkVKGtO1", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1C_CFS-C-all.json index d79751dc451..70e41a80782 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cZIEiMZQbIcvP57r", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1_CFS-C-all.json index 36bdadab2f4..71b992c1fc5 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jJ8kRNXq2iz98qTh", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Plus-all.json index 88cdbd7f208..ba03b66ddde 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8DTZKlZEArr9Exd7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Pro-all.json index 4b7986d7016..9e03746797c 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hzbRwh2RichDUBMU", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 SE-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 SE-all.json index 01fb3b2ca60..074fde8bfec 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GdPDY6XouAmn2Sw4", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K2-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K2-all.json index c39bffe31c0..953edaba8bb 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VhDF33Mt4h0SUIZH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @SPARKX i7-all.json index da182e69da1..30e6a20ebdb 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "veZcyFoa3uiS0oel", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PP @K1 Max_CFS-C-all.json index 00bccafe2d1..59f53cbb9df 100644 --- a/resources/profiles/Creality/filament/Generic PP @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K1 Max_CFS-C-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SpL486LVpIbISfQj", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP @K1C-all.json b/resources/profiles/Creality/filament/Generic PP @K1C-all.json index d5b50bb581a..4c8ac4d0d06 100644 --- a/resources/profiles/Creality/filament/Generic PP @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K1C-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iY30mqnBJOeybNin", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PP @K1C_CFS-C-all.json index f0cab01d8f1..1668dd04faa 100644 --- a/resources/profiles/Creality/filament/Generic PP @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K1C_CFS-C-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "27bAcMgt0jDcUvLF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PP @K1_CFS-C-all.json index b8c6ccba8da..f82a464fe50 100644 --- a/resources/profiles/Creality/filament/Generic PP @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K1_CFS-C-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8c9klBh6C7O76Lgc", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PP @K2 Plus-all.json index 83ffec6d278..9a5f2f3e539 100644 --- a/resources/profiles/Creality/filament/Generic PP @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K2 Plus-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sevgawCx7xvOFLXm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PP @K2 Pro-all.json index 71313bed4d9..38ba4abe649 100644 --- a/resources/profiles/Creality/filament/Generic PP @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K2 Pro-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bAxYHHsv8COKiIFG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP @K2-all.json b/resources/profiles/Creality/filament/Generic PP @K2-all.json index bdc713b2989..8f97f08d6b6 100644 --- a/resources/profiles/Creality/filament/Generic PP @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K2-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dMhTxpF3ipepME4p", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PP-CF @K2 Plus-all.json index d176077873f..3f35f963433 100644 --- a/resources/profiles/Creality/filament/Generic PP-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PP-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PP-CF @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lHJWTFXiSKzWrX1A", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS @K1 Max_CFS-C-all.json index 17b2f3d25c0..37176e53e12 100644 --- a/resources/profiles/Creality/filament/Generic PPS @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS @K1 Max_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OCjDOWQ5tgZgZB0R", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS @K1C-all.json b/resources/profiles/Creality/filament/Generic PPS @K1C-all.json index 869e317bb19..d15aeef4699 100644 --- a/resources/profiles/Creality/filament/Generic PPS @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS @K1C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9HAL1MdIgM7fyklo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS @K1C_CFS-C-all.json index 62324268406..d2af02918eb 100644 --- a/resources/profiles/Creality/filament/Generic PPS @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS @K1C_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DVtMTnkEsr8o5Vzh", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS @K1_CFS-C-all.json index d89fe2bbb57..69f7f95046b 100644 --- a/resources/profiles/Creality/filament/Generic PPS @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS @K1_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2HTODPgc4aIZ3XG8", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PPS @K2 Plus-all.json index 488dee43018..964d010a97b 100644 --- a/resources/profiles/Creality/filament/Generic PPS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PPS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS @K2 Plus-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nGEhRfiizC0emg2M", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS-CF @K1 Max_CFS-C-all.json index e9c6e714c0c..47c8c9dc0ec 100644 --- a/resources/profiles/Creality/filament/Generic PPS-CF @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS-CF @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Lo64lIBBBOVC7X0f", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PPS-CF @K1C-all.json index 68aedffc0cf..c8e56eb45bd 100644 --- a/resources/profiles/Creality/filament/Generic PPS-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS-CF @K1C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IGMvRXBFMXKpLJmO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS-CF @K1C_CFS-C-all.json index 882ab1eb202..5a937397acf 100644 --- a/resources/profiles/Creality/filament/Generic PPS-CF @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS-CF @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TaXzrJiCydy8MS3f", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS-CF @K1_CFS-C-all.json index f692cf4659b..ae80e3823af 100644 --- a/resources/profiles/Creality/filament/Generic PPS-CF @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS-CF @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS-CF @K1_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KqN1ZnjnbBaLjVK5", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PPS-CF @K2 Plus-all.json index 78dfc79d8ad..a538bfb7a1d 100644 --- a/resources/profiles/Creality/filament/Generic PPS-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PPS-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS-CF @K2 Plus-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tIoEmhVZ47jiEg2Q", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @Hi-all.json b/resources/profiles/Creality/filament/Generic PVA @Hi-all.json index e3e0e357793..a327524d0b3 100644 --- a/resources/profiles/Creality/filament/Generic PVA @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @Hi-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "M3oK19GPHF4pXnE1", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PVA @K1 Max_CFS-C-all.json index 94eabaeb72e..468d9101907 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K1 Max_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GVvpekUbUn6UPw2h", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @K1C-all.json b/resources/profiles/Creality/filament/Generic PVA @K1C-all.json index e29b5be7c2c..208b12d48ec 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K1C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DnCH1X6KBNi1m0LO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PVA @K1C_CFS-C-all.json index c3a49fcecac..5f2d2d535aa 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K1C_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "16V0liTfFopXs9hz", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PVA @K1_CFS-C-all.json index 4fb477e6a40..e527dfaddf8 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K1_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tomLVSBIaoZzTLo0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PVA @K2 Plus-all.json index 02c0a87eabc..4e76a603d23 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rCyivt0j7lJ11Obc", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PVA @K2 Pro-all.json index 29cbfda2110..3902a813d54 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K2 Pro-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q3FPysmnAH6EI5QJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @K2-all.json b/resources/profiles/Creality/filament/Generic PVA @K2-all.json index be695648009..9d6376abe78 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K2-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8ZOmE6qGjxxL8H0b", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic Support for PA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic Support for PA @K2 Plus-all.json index cf4b26380f0..65431307ec9 100644 --- a/resources/profiles/Creality/filament/Generic Support for PA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic Support for PA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic Support for PA @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jqyOG2srSFDU3HCN", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic Support for PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic Support for PLA @K2 Plus-all.json index 3c09b615e47..130d40baff2 100644 --- a/resources/profiles/Creality/filament/Generic Support for PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic Support for PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic Support for PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "W6AEYBcheMyorkN1", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU 64D @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic TPU 64D @K2 Plus-all.json index 3024bc3be18..2d59a7a434a 100644 --- a/resources/profiles/Creality/filament/Generic TPU 64D @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic TPU 64D @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU 64D @K2 Plus-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0qV6lVuaNDT3U2HK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU 64D @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic TPU 64D @SPARKX i7-all.json index 0497d7fd301..5b50b540bfa 100644 --- a/resources/profiles/Creality/filament/Generic TPU 64D @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic TPU 64D @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU 64D @SPARKX i7-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MCElfOpYpjeuwZju", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic TPU @Ender-3 V4-all.json index e8489cb041b..d5582bb4847 100644 --- a/resources/profiles/Creality/filament/Generic TPU @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @Ender-3 V4-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iJozGH7KvOHz8smj", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic TPU @Ender-5 Max-all.json index c0bf47eed7b..940f0bdb03b 100644 --- a/resources/profiles/Creality/filament/Generic TPU @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @Ender-5 Max-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KPUcdZyegXYeyHOL", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic TPU @K1 Max_CFS-C-all.json index c353526ee79..cb08115e87b 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K1 Max_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "h9xCBpYO0jR5I5PG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K1 SE-all.json b/resources/profiles/Creality/filament/Generic TPU @K1 SE-all.json index ee092fbcaab..46e2de46290 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K1 SE-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "euSJIgcrA95IBrYT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic TPU @K1 SE_CFS-C-all.json index fafd514d7ac..45926b0b66b 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K1 SE_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nHZN4EVW9T6dcG2v", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K1C-all.json b/resources/profiles/Creality/filament/Generic TPU @K1C-all.json index 0eef4febc29..bcfcbd48360 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K1C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "170MDhVcDn1dM9eK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic TPU @K1C_CFS-C-all.json index 6d448d61433..7d929554a87 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K1C_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XyaRiGJD4khUkwUe", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic TPU @K1_CFS-C-all.json index b8bbbc3a959..56491b9100a 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K1_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5e2FELlHtgaCc0K3", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic TPU @K2 Plus-all.json index 38c08a0dc0d..46aee6149c7 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K2 Plus-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kcwtAbqZkxRwtCE3", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic TPU @K2 Pro-all.json index 94cb080eec1..62451e782a3 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K2 Pro-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AZzxNf1i5qruVcBL", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K2 SE-all.json b/resources/profiles/Creality/filament/Generic TPU @K2 SE-all.json index e920d51b404..04348049b8c 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K2 SE-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pjhl2ytSAdJgb8tc", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K2-all.json b/resources/profiles/Creality/filament/Generic TPU @K2-all.json index a3c35ca023f..4967c237e0b 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K2-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K2-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sjSoPLBLcYw8AJKV", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic TPU @SPARKX i7-all.json index 196ab196570..cd8b519c2e5 100644 --- a/resources/profiles/Creality/filament/Generic TPU @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @SPARKX i7-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "v6uEvu5qbKX9kE7T", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP Ultra PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/HP Ultra PLA @K1 Max_CFS-C-all.json index fb78d1dac94..c7ae9701793 100644 --- a/resources/profiles/Creality/filament/HP Ultra PLA @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP Ultra PLA @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP Ultra PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mNVwdo8Tu3M8MAMQ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP Ultra PLA @K1C-all.json b/resources/profiles/Creality/filament/HP Ultra PLA @K1C-all.json index 3c3bb3de55a..e02b477267b 100644 --- a/resources/profiles/Creality/filament/HP Ultra PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/HP Ultra PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "HP Ultra PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7mN3GsHHQb2sziH9", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP Ultra PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/HP Ultra PLA @K1C_CFS-C-all.json index 40f27d553a9..c6bb9bd5474 100644 --- a/resources/profiles/Creality/filament/HP Ultra PLA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP Ultra PLA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP Ultra PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xYIC2SFJ9IeGcVuC", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP Ultra PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/HP Ultra PLA @K1_CFS-C-all.json index 115b3b43180..1eb74d0999c 100644 --- a/resources/profiles/Creality/filament/HP Ultra PLA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP Ultra PLA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP Ultra PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HfPCXm8gwCtZnkjJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP Ultra PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/HP Ultra PLA @K2 Plus-all.json index 06b454e58e2..399c357b29a 100644 --- a/resources/profiles/Creality/filament/HP Ultra PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/HP Ultra PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "HP Ultra PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yHu1ZjX5BoH8dw5z", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @Ender-5 Max-all.json b/resources/profiles/Creality/filament/HP-ASA @Ender-5 Max-all.json index b4ba326deb2..b2d283fae01 100644 --- a/resources/profiles/Creality/filament/HP-ASA @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @Ender-5 Max-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JzsojF2Um23vm2qT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/HP-ASA @K1 Max_CFS-C-all.json index 99617239620..3118bd2d960 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K1 Max_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RInV2wT54da08tvW", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K1C-all.json b/resources/profiles/Creality/filament/HP-ASA @K1C-all.json index f8508360a6a..95e31de6b33 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K1C-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K1C-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K1C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Iw7dIqafCnOnBgDE", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/HP-ASA @K1C_CFS-C-all.json index 422c22c92c8..6ea06b5eb74 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K1C_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "A5zG0GNhQnOlhTOU", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/HP-ASA @K1_CFS-C-all.json index 8d9eaabd999..30411e40284 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K1_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "umNqcyYhx49DC2Ki", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K2 Plus-all.json b/resources/profiles/Creality/filament/HP-ASA @K2 Plus-all.json index fda02f2fa25..3babd544efe 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K2 Plus-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cH8oKyQX9jde7Bf8", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K2 Pro-all.json b/resources/profiles/Creality/filament/HP-ASA @K2 Pro-all.json index cf4f93b0f88..a508566f74c 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K2 Pro-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HxNkP2GYbTD7yrUZ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K2 SE-all.json b/resources/profiles/Creality/filament/HP-ASA @K2 SE-all.json index c7c0792e19a..68cbfb27d76 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K2 SE-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TbIud8JJSMQ0nYz0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K2-all.json b/resources/profiles/Creality/filament/HP-ASA @K2-all.json index 6a4b0f77b7b..b7d3829cda6 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K2-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K2-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K2-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j9EXhFUKSE3c2awm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @Ender-3 V4-all.json b/resources/profiles/Creality/filament/HP-TPU @Ender-3 V4-all.json index c378d0e2172..e627f5c5e8f 100644 --- a/resources/profiles/Creality/filament/HP-TPU @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @Ender-3 V4-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "x7fQ7w2dCpvVfOLw", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @Ender-5 Max-all.json b/resources/profiles/Creality/filament/HP-TPU @Ender-5 Max-all.json index 07b7074c700..c25294789bb 100644 --- a/resources/profiles/Creality/filament/HP-TPU @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @Ender-5 Max-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7Y7KjqVEXrce3jKO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @Hi-all.json b/resources/profiles/Creality/filament/HP-TPU @Hi-all.json index 4484d9a3c54..244f173f412 100644 --- a/resources/profiles/Creality/filament/HP-TPU @Hi-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @Hi-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @Hi-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "x5v3sNNZYWbPIsPN", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/HP-TPU @K1 Max_CFS-C-all.json index 65e4ee7c9e9..8ed2212fa9b 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K1 Max_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eY1DCIW7WyTnmRYP", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K1 SE-all.json b/resources/profiles/Creality/filament/HP-TPU @K1 SE-all.json index d6cad98be9d..5c83cda993b 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K1 SE-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K1 SE-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3YN3jfV75qyfUZWm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/HP-TPU @K1 SE_CFS-C-all.json index dc105409b86..f251c2e7db4 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K1 SE_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WnGZuBiSGSoGru8C", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K1C-all.json b/resources/profiles/Creality/filament/HP-TPU @K1C-all.json index 0881b96efcf..65594567239 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K1C-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K1C-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K1C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "USI47rUnoJXanAFI", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/HP-TPU @K1C_CFS-C-all.json index a6ccad9c7bb..825d30d3237 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K1C_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rCn7lAeHr77FziYn", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K1_CFS-C-all.json b/resources/profiles/Creality/filament/HP-TPU @K1_CFS-C-all.json index b40c64ae47d..9a950cce1d3 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K1_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N3NDaZzc5XyUm3b1", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K2 Plus-all.json b/resources/profiles/Creality/filament/HP-TPU @K2 Plus-all.json index b8487fbf9e5..19195696be1 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K2 Plus-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CNm35YCN42NAgbU1", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K2 Pro-all.json b/resources/profiles/Creality/filament/HP-TPU @K2 Pro-all.json index d77486de522..07423945cb9 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K2 Pro-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tfrclH3VqZ4nPzi7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K2 SE-all.json b/resources/profiles/Creality/filament/HP-TPU @K2 SE-all.json index c3b7e45f767..df44f03a653 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K2 SE-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K2 SE-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IgniOuVC4DtRnxS0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K2-all.json b/resources/profiles/Creality/filament/HP-TPU @K2-all.json index ac4c6bca935..4d1285f8158 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K2-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K2-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K2-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l9E5f6JLwfKo4aG9", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @SPARKX i7-all.json b/resources/profiles/Creality/filament/HP-TPU @SPARKX i7-all.json index 1095d8b540c..796ce1e78f4 100644 --- a/resources/profiles/Creality/filament/HP-TPU @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @SPARKX i7-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oINMsmmxspqPOW8b", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Hyper ABS @Ender-3 V4-all.json index b45ad1b4822..3f038190b18 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @Ender-3 V4-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "utCV4AwQPV4Ums35", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Hyper ABS @Ender-5 Max-all.json index ca7a7d66a7d..097434bdc46 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @Ender-5 Max-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jPfMyNBquP31h2Eb", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @Hi-all.json b/resources/profiles/Creality/filament/Hyper ABS @Hi-all.json index 765b2c82a8e..5e3b9d7de7f 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @Hi-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LO4MgYNCtAlMyD11", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1 Max_CFS-C-all.json index bf0184ecc6e..f2a095c2357 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1 Max_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PjT9gDai5g9iVBf3", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1 SE-all.json index d3a94446e9f..35871f8ac58 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dWKTm246jz7e4QRy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1 SE_CFS-C-all.json index 743f5adecc1..f160827598c 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1 SE_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GCj4hOsf9S9DqFdh", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1C-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1C-all.json index 5faac6bafad..0d57ad03809 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DlsL5Ex7MQ54Yje6", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1C_CFS-C-all.json index 843f49d5b9e..78b1d7d719e 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1C_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "psgahhKiXE7koRWY", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1_CFS-C-all.json index baef2eb4ce9..e6ef2cfb6c3 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YbYUo1FfZlLJg4zm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2 Plus-all.json index 80dddef35a0..bbef4b21486 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K2 Plus-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lGXmZiCrrwfTeERC", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2 Pro-all.json index e73e9545cda..edd4f7a352e 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K2 Pro-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "01z4QYF33KN1OsBM", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2 SE-all.json index 9b128b23309..4710c1f7b12 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K2 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "X3WH0zaUg8WyahsO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2-all.json index 20be7b85dc2..6aa0b2f736a 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K2-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "B0mfi4oxoUIDW2Lv", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @Hi-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @Hi-all.json index 92f146279ef..efafa600172 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "snqNKAAquQRA20Ik", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 Max_CFS-C-all.json index 82e0fe76b32..4b8ed94936c 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nhmKUDLK6wxVO1vH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE-all.json index 68f823f0cba..c07d9981dba 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MEaOGHy3pWSd1Gj3", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE_CFS-C-all.json index 2ee911c6f1a..3d69f8e7ae5 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xCioj1jNunIX2GBK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1C-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1C-all.json index da2fea04b74..7193bf835bc 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xye2OhGeKqg44ya7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1C_CFS-C-all.json index 88332fb5d5d..0757ec1fc86 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EXxV0Fo4rexuxidn", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1_CFS-C-all.json index 526607d93d8..387a549dbc6 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lfP5u92yfXRedGuy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Plus-all.json index 2d242459f83..2f3c64a6e13 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "U1kZq5P21qnFe5NC", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Pro-all.json index 62ec9834762..902e373f862 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4O7avB3eSA1pKDxz", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K2-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K2-all.json index c582a85ce01..a0f31de0c4d 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gkzTfze1OQmP8zgE", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @Hi-all.json b/resources/profiles/Creality/filament/Hyper Luminous @Hi-all.json index 42c1c0ad5cf..a6873b4dc26 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8PNVp96HmPvjOBVq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K1C-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K1C-all.json index d8ce75f23c9..df72136acc7 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MHaJR8CAtuSwUOIx", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K2 Plus-all.json index 764f3bb1e9f..13670be4d98 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zY0hIYvTg3v2wyOJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K2 Pro-all.json index 5988cac327a..eb7d7f3f03b 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "14znq0LtaUx1RUP5", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K2-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K2-all.json index 01104f4cef9..86a72078c65 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zD3EOJFcZOuhQHmk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper Luminous @SPARKX i7-all.json index d6b582ba155..b4991bc3ff0 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DKQgoZvvkOBsEJCA", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @Hi-all.json b/resources/profiles/Creality/filament/Hyper Marble @Hi-all.json index 4d5d8c8a891..75761850760 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "K6SS7X2jvyXsEgaR", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Marble @K1 Max_CFS-C-all.json index e4de323f9b7..3475d6f5aa7 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8dYJk1STVIRB2JWw", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K1C-all.json b/resources/profiles/Creality/filament/Hyper Marble @K1C-all.json index b525070bbae..fb9bc8c08cf 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SWzt8p5UBfgMauNE", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Marble @K1C_CFS-C-all.json index 64a25f3f0d7..63ab61c68eb 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gZLo5W0F3NLFCkvg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Marble @K1_CFS-C-all.json index e7873abdb60..0e3f2176697 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JDAiAZKjxEoWKDwW", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2 Plus-all.json index d317b1b7b36..bce1cbb5f0e 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "X2fgUYasv7lNEoqK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2 Pro-all.json index ad582e46ea3..4c77e3e4ab0 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CITMYaFiwchQ3xoo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2 SE-all.json index 0bb2fffb6b8..706230c0b98 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PyazquNRWsPUM2bt", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2-all.json index 232efedb3dd..527ec673327 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YxvU7wRdgrtckCa7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper Marble @SPARKX i7-all.json index b443ca672bf..0746b42880e 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "teddd8l8D8ASmYQs", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Plus-all.json index aa6511a476d..01aeb86cdfa 100644 --- a/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PA6-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ns7xy8v6L92XsDy2", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Pro-all.json index 20ee2712c7e..40139cf279d 100644 --- a/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PA6-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FNuPosBKWyq79bjR", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Plus-all.json index 32d1fd35f72..2f8bcbbacb4 100644 --- a/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PA612-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2xgxuOoGNlO9lEs4", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Pro-all.json index 3a889502035..3f4be12bf3b 100644 --- a/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PA612-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sDTzKRsBAaiOxA5I", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1 Max_CFS-C-all.json index 6d0eeeea896..3311a960824 100644 --- a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "98Dhy7By3Sp6lISa", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C-all.json index 10d257a464d..b06066ce46a 100644 --- a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SpXh27tlQXEbxDUk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C_CFS-C-all.json index cea414ec930..1e89fbaa082 100644 --- a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ShD1PW5HWkjnHXrd", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1_CFS-C-all.json index 9039a93e539..bf05bb6310a 100644 --- a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wzYQ0bizO8RDWjSX", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Plus-all.json index f11afb82407..df43ebb973f 100644 --- a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NneN5bFLYVXNPzlM", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Pro-all.json index 4b16d06b17b..60e6f6e84e9 100644 --- a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wl8JhmCp9Be3cYMJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2-all.json index 23c52975f43..39fc5e217b9 100644 --- a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K2-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jtElnQJxHKLDQSHo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PC @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PC @K2 Plus-all.json index 1043d0bde84..43f1d53cdcc 100644 --- a/resources/profiles/Creality/filament/Hyper PC @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PC @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PC @K2 Plus-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zhN9dkzeJWtsAKj8", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PC @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PC @K2 Pro-all.json index 3c9f4643258..3668981c2b0 100644 --- a/resources/profiles/Creality/filament/Hyper PC @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PC @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PC @K2 Pro-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6NMso8XW9632vz5s", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Hyper PETG @Ender-3 V4-all.json index e9160346e62..aa4a1da8b80 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @Ender-3 V4-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EDl8nfZRP1T8CBOs", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Hyper PETG @Ender-5 Max-all.json index 9a7e2161e00..fe1f0fbded0 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @Ender-5 Max-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nr57CpZ5PwPmcOCR", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @Hi-all.json b/resources/profiles/Creality/filament/Hyper PETG @Hi-all.json index 9a1786f4813..fdc782abad7 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @Hi-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZKLZLxxyjfbdAYZ4", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1 Max_CFS-C-all.json index 8424d578763..89090724f4b 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1 Max_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Bcgdo3fx6xntQ68t", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1 SE-all.json index 1702856fdcf..85d9b0fc2d6 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "huvZfn5aMetsY1qr", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1 SE_CFS-C-all.json index f289a0c7c73..afd34c32d2e 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1 SE_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cyl9yuFghMkUh21u", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1C-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1C-all.json index 49b1f1b352c..b4f548e7d8e 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HYCr4pafWTw3btkg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1C_CFS-C-all.json index b9dbfc6b59f..a132ab6ba7f 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1C_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6vOJLefZfaXZTSae", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1_CFS-C-all.json index 62a6f3a0773..1d4207f0471 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FeLhYkEwkavAVWlq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2 Plus-all.json index 6894a170514..2b65adafadf 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LLehESBAwc7JG1sb", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2 Pro-all.json index 16f298023c1..25acc10afb3 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FEZohKnhkTIWLIGo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2 SE-all.json index 3a142caed7b..f00003218e5 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K2 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YKt97IZEOlPbNE45", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2-all.json index 09fb4c4857b..f0f86795eca 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tA9uY8ONg89tnmBS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper PETG @SPARKX i7-all.json index 7ae63365797..26b6def656c 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KCinMkKfbIlmgNY5", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K1 Max_CFS-C-all.json index 4385043cc02..459f8fcd55f 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Xas7n19K71hs4LDE", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K1C-all.json index 6825d72dd99..05fe909fb4f 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Qb08ZrBwuO8zt4AH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K1C_CFS-C-all.json index 35879943bcc..9fa1a032be2 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K1C_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DoTcUw5GMoTHQg7e", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K1_CFS-C-all.json index 6d15c42b652..3f99330c5b1 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K1_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CcmwXMNgZWg8VguD", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Plus-all.json index ff06b80c421..544ae5fb6f6 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DyG4SbAXKKPcZtrz", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Pro-all.json index 379d5245661..ec260e76f3b 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kit5JfJiicLJF4zF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K2-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K2-all.json index 4a77e329845..e178e47042a 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sqyA1OhRFwfJdaQC", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @SPARKX i7-all.json index d8d5b347110..f88b59d4d72 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ysPPxXtL5M7eQwOp", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-GF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PETG-GF @K1C-all.json index 42b12a0f576..0c1d8e5c2a5 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-GF @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-GF @K1C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nEDeotPVKPCQe8Nb", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Plus-all.json index e0f7076f526..4b719767d0c 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-GF @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "usQ7v9aSP9GkBJlW", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Pro-all.json index 1d047665de8..346247a4aa2 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-GF @K2 Pro-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9cVMYbupJs6RNOy7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-GF @K2-all.json b/resources/profiles/Creality/filament/Hyper PETG-GF @K2-all.json index 0f426b753ef..9f28d154fb4 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-GF @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-GF @K2-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LFtfaG6s8REfWmjg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Hyper PLA @Ender-3 V4-all.json index acda60e5dfb..aa981c3a308 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jO61I2nsJ2yY0WG4", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Hyper PLA @Ender-5 Max-all.json index 8a7bc108f64..6c5bac864d1 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Nb1H9jKg8CPQXLVI", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @Hi-all.json b/resources/profiles/Creality/filament/Hyper PLA @Hi-all.json index 9c47561aea0..9b1ec357b7d 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AG1UL48Bof1wFYDF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1 Max_CFS-C-all.json index 24e840bcc5c..c3e7bed7f81 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lRYhcdi64EmFem40", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1 SE-all.json index cc8090f21f0..717c0835dc1 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "w22rt5ipwYogeRyf", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1 SE_CFS-C-all.json index 77818e4dc9f..3679080841d 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qV4HvI6OV80255YA", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1C-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1C-all.json index 206e54c9649..fa5a7a6ac20 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TnpXw6J6vdHtcI0m", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1C_CFS-C-all.json index e7cb4776668..7626dae8354 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NkW5cDCzmoseCFmO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1_CFS-C-all.json index e3670fb5918..f95f80a5a47 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q74GgG8YgUE29949", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2 Plus-all.json index 1049cbbdc1d..2d4608e32fb 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CCn1pBWY533DPO2I", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2 Pro-all.json index 4d80eae23c6..973044ff35f 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1KX2t8HgeGnCF4Mt", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2 SE-all.json index 96c06351c90..6480fb0dad8 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zTFbjztyji63caxW", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2-all.json index c2d9ec352b9..910f9888fe1 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "klq59FDTiu0dk3WO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper PLA @SPARKX i7-all.json index 91c32b8c6d7..8e9b21749f1 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pvnoJu0FPBxRAX6w", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-3 V4-all.json index 91b7974d616..f55de5ef561 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "30n5mJl8L6az4Ugt", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-5 Max-all.json index 7a006b788e7..75928402599 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pW3AHx1VemLWSa7q", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @Hi-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @Hi-all.json index 37c8b8668af..ac7a4138886 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l4gTfu7FrFCXseZR", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 Max_CFS-C-all.json index d69c944bb1c..f15929e4868 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jNMBQgVxJOyIVLcq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE-all.json index ea157a79df2..af9c28e8091 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qmyerfbWbH0wbbk7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE_CFS-C-all.json index 7e8ac822970..b44b0ceb3d9 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l8sx6lH2mvQLZObS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1C-all.json index b54a530ee1d..f4f4b2e5365 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "23SZfDiYXhm9hn5G", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1C_CFS-C-all.json index c4a91a426db..952822e0409 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ITQgXSnjWFeY68wT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1_CFS-C-all.json index 3395485aa38..f65f1b5ec51 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9rf6iQ0xQuReogCt", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Plus-all.json index 697a6f41eb2..ebb185aabcb 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GjpBicP4kPE8flGx", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Pro-all.json index e29da4de9d0..b32297ee790 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Y4er7SRg27NLBiG1", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 SE-all.json index 233bd639228..758086354d4 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NBqaRVKwrOk8znjG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K2-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K2-all.json index ae9fa8b00d4..b2805828033 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L7pciawKG1j3Q543", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @SPARKX i7-all.json index 9b4782b63bf..ccb1e5a6904 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "18bK3EZVaHGwGmsL", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Plus-all.json index e9198f0ad62..e13b1c84204 100644 --- a/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PPA-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ltnrZwbu4XXaDTkF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Pro-all.json index c80dba4a314..314b8641aa9 100644 --- a/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PPA-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wrCqzQPdSReyJSfo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @Hi-all.json b/resources/profiles/Creality/filament/Hyper Stardust @Hi-all.json index 8e0c54075a1..fd0c47db8e5 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Jg5EAOLRZBLTvozN", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K1 Max_CFS-C-all.json index dfaca6da59b..e822a0fa7a2 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hwto2aYfebw6i6sm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K1C-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K1C-all.json index 9872d0861de..8e9d53c8937 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GC5jc2gUOL34TtA2", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K1C_CFS-C-all.json index 6c281f5be2d..416ee437c06 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zqZR6xEtm9Gokib0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K1_CFS-C-all.json index c192bf7033f..d8dcb3862b7 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fWmKrIlCzeemGvXQ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2 Plus-all.json index 76cbbd61d63..b74711cd628 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q0hz1XpiWQeZhcjF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2 Pro-all.json index 36e571bf294..a0fdc30bab6 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SjkfsdLhjA5CFsCl", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2 SE-all.json index 980129d8c35..84a8a22de50 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "O2BLGgWwKLgovOmm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2-all.json index 96688571090..95f30eb1497 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4OC4zOZaAUUsyu27", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper Stardust @SPARKX i7-all.json index 9ea280b81e3..bc3de91594b 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "flyQf6Emi8ND7BDe", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Panchroma PLA Matte @K2 Plus-all.json b/resources/profiles/Creality/filament/Panchroma PLA Matte @K2 Plus-all.json index 07e3d901dd0..05b64e36482 100644 --- a/resources/profiles/Creality/filament/Panchroma PLA Matte @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Panchroma PLA Matte @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Matte @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ArTNQCA0xnqZKZk9", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Panchroma PLA Satin @K2 Plus-all.json b/resources/profiles/Creality/filament/Panchroma PLA Satin @K2 Plus-all.json index 4fa1dc24fb4..c290ac07484 100644 --- a/resources/profiles/Creality/filament/Panchroma PLA Satin @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Panchroma PLA Satin @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Satin @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dK0jvrB1WOFjPf7g", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/PolySonic PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/PolySonic PLA @K2 Plus-all.json index 11dfdde054f..bee02a0f146 100644 --- a/resources/profiles/Creality/filament/PolySonic PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/PolySonic PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "PolySonic PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "K3kUZYddQO8SUKKa", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/PolySonic PLA Pro @K2 Plus-all.json b/resources/profiles/Creality/filament/PolySonic PLA Pro @K2 Plus-all.json index d7fe6c0d9ff..47e17257bde 100644 --- a/resources/profiles/Creality/filament/PolySonic PLA Pro @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/PolySonic PLA Pro @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "PolySonic PLA Pro @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DEU6e8l8Gbz616Fi", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @Hi-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @Hi-all.json index bc4a675758b..66fb01a064a 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @Hi-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @Hi-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @Hi-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sUalM5HH0sDpMOmD", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @K1C-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @K1C-all.json index bca5772cf08..208583adff5 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @K1C-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K1C-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RHcExN6yUArn3nky", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Plus-all.json index b52821d427e..f9d68e033af 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "w8SHt6Slm8uIqTbh", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Pro-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Pro-all.json index 17a8ea6c3f3..d88e732e2fc 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vI7ThHCwOBfts0NQ", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2-all.json index 48f2fb0d030..5c62188c934 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nqr9TMlkS8nLVGhG", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @SPARKX i7-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @SPARKX i7-all.json index 549997c5b0b..5b73363f5d8 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yWR45TQhsN5eYgCu", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @Ender-3 V4-all.json index e0e11ef6b11..0abc37c050b 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lMmOE3j5nMNIukQN", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @Hi-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @Hi-all.json index 93a4acfea3a..8340313872e 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DzjjhzaPhKF7olJU", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1 Max_CFS-C-all.json index 316b2b87f85..b32740a47cc 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1 Max_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1 Max_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9dhggId2Cg5oR8Qo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C-all.json index 72785cfb4cf..2b0d1058ccc 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XP2BDRK5jZOC4TYv", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C_CFS-C-all.json index ecf91b8d735..9cfa3eb9e93 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "98NLzuVoD8d35zrm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1_CFS-C-all.json index d14d1cb9fb3..4cb9bfa4ffb 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zovui7ZsQ26KEgYY", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Plus-all.json index 6ff60d94833..b4e93a4aead 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QJjtgwE6G4TS3V6y", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Pro-all.json index a53c164a799..63b6a48fa21 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cprQoD8o6UmetOxS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 SE-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 SE-all.json index 40d00941349..590e345f39a 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vAzjJYRL4Swmyq0z", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2-all.json index d229f278fc1..3e8753160b5 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UhE9df2kH6LealCb", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @SPARKX i7-all.json index ad56b4e28f5..3c15bcb7d0c 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SlwK2b9m8ZQJY4nH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/eSUN ABS+ @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN ABS+ @K2 Plus-all.json index 658269b4b72..449aed76630 100644 --- a/resources/profiles/Creality/filament/eSUN ABS+ @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN ABS+ @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN ABS+ @K2 Plus-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7plEfQUFL6qclQ8B", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/eSUN ASA+ @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN ASA+ @K2 Plus-all.json index f9fe3e5e8ad..d9e439ef2b0 100644 --- a/resources/profiles/Creality/filament/eSUN ASA+ @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN ASA+ @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN ASA+ @K2 Plus-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WjM4WIPAamvbee7G", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/eSUN PET-Basic @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PET-Basic @K2 Plus-all.json index 63e0385d94c..0befedf49fd 100644 --- a/resources/profiles/Creality/filament/eSUN PET-Basic @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PET-Basic @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PET-Basic @K2 Plus-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fJJfZCZc5MrXX1Lg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/eSUN PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PETG @K2 Plus-all.json index 0e585921b92..abbc6f48cc7 100644 --- a/resources/profiles/Creality/filament/eSUN PETG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PETG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PETG @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BHCutIIr9w5Lg1DM", "instantiation": "true", "cool_plate_temp": [ "70" diff --git a/resources/profiles/Creality/filament/eSUN PETG+HS @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PETG+HS @K2 Plus-all.json index aef215351ce..2ac796d2981 100644 --- a/resources/profiles/Creality/filament/eSUN PETG+HS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PETG+HS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PETG+HS @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2hnUQwzB9vx9ZUOG", "instantiation": "true", "cool_plate_temp": [ "70" diff --git a/resources/profiles/Creality/filament/eSUN PETG-Basic @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PETG-Basic @K2 Plus-all.json index 026abb8026d..5803a71cef3 100644 --- a/resources/profiles/Creality/filament/eSUN PETG-Basic @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PETG-Basic @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PETG-Basic @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YxOoppTAD5GAFwyM", "instantiation": "true", "cool_plate_temp": [ "70" diff --git a/resources/profiles/Creality/filament/eSUN PLA+ @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA+ @K2 Plus-all.json index 0c96e7adc89..a5bdfb25cd0 100644 --- a/resources/profiles/Creality/filament/eSUN PLA+ @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA+ @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA+ @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AW7HLQJ78DAEUjge", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/eSUN PLA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-CF @K2 Plus-all.json index c6eebf31720..3712719e472 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-CF @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DYF2ppm40yQWEtnp", "instantiation": "true", "additional_cooling_fan_speed": [ "80" diff --git a/resources/profiles/Creality/filament/eSUN PLA-HS @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-HS @K2 Plus-all.json index 77828ed8da2..a5a1e52d468 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-HS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-HS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-HS @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lJaXWbmrBmg87yhI", "instantiation": "true", "additional_cooling_fan_speed": [ "80" diff --git a/resources/profiles/Creality/filament/eSUN PLA-LW @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-LW @K2 Plus-all.json index 945dbe5ad61..99550707a22 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-LW @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-LW @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-LW @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9lAD1qJIwwtcSvk0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/eSUN PLA-Lite @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-Lite @K2 Plus-all.json index fef7aaf481f..07fdbcd5b2f 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-Lite @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-Lite @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Lite @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "om2444MoWYK7ZCqS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/eSUN PLA-Matte @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-Matte @K2 Plus-all.json index 5f57f0494c8..5a1f80d5deb 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-Matte @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-Matte @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Matte @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BYYGdJpoZG5BXr1r", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/eSUN PLA-Silk @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-Silk @K2 Plus-all.json index b51e3d37da7..d09abc2625e 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-Silk @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-Silk @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Silk @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IfZwVzcyYM0D5XR0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/machine/Creality CR-10 Max 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 Max 0.4 nozzle.json index 588af2e3d66..73687d8be78 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 Max 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 Max 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "C2fvuwjz7clQPiPJ", "instantiation": "true", "printer_model": "Creality CR-10 Max", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json index 409d4ca108c..34ae5f05e32 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 SE 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "gS1yvOH4tc67Tyhl", "instantiation": "true", "printer_model": "Creality CR-10 SE", "printer_variant": "0.2", diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json index edbc7e901bc..99ddf4e2e23 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 SE 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ofEM221M7bEnAANA", "instantiation": "true", "printer_model": "Creality CR-10 SE", "printer_variant": "0.4", diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json index 3710eabc328..32bec9dd851 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 SE 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "R1pF6RmuvEREvW3F", "instantiation": "true", "printer_model": "Creality CR-10 SE", "printer_variant": "0.6", diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json index 1083e88c54f..25d0d2a2dfe 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 SE 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "5RITcoqGZYcSWB1n", "instantiation": "true", "printer_model": "Creality CR-10 SE", "printer_variant": "0.8", diff --git a/resources/profiles/Creality/machine/Creality CR-10 V2 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 V2 0.4 nozzle.json index b42b0b65910..af449cd7056 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 V2 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 V2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 V2 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Hw2DcjVmYAlMkQaw", "instantiation": "true", "printer_model": "Creality CR-10 V2", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-10 V3 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 V3 0.4 nozzle.json index c23caed5315..10837d92715 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 V3 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 V3 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ZOxwNAzICHVJnfKk", "instantiation": "true", "printer_model": "Creality CR-10 V3", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-10 V3 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 V3 0.6 nozzle.json index bdf429b11df..6b518c35a5a 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 V3 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 V3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 V3 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "YQJ89O3acgff47iY", "instantiation": "true", "printer_model": "Creality CR-10 V3", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 Max 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 Max 0.2 nozzle.json index dd85475fb3e..35d77612c20 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 Max 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 Max 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "gC9FH5eCZ2DnL5LX", "instantiation": "true", "printer_model": "Creality CR-6 Max", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 Max 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 Max 0.4 nozzle.json index e676da451e1..0c8ce148a69 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 Max 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 Max 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "mkQW2JyBpZdpkrqX", "instantiation": "true", "printer_model": "Creality CR-6 Max", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 Max 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 Max 0.6 nozzle.json index bc62f036761..aeea306f78b 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 Max 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 Max 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "as4xvDHlVuLy5Yfl", "instantiation": "true", "printer_model": "Creality CR-6 Max", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 Max 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 Max 0.8 nozzle.json index eeac867e895..417eba9589d 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 Max 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 Max 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "h1fDN0WnZm5RQ9RZ", "instantiation": "true", "printer_model": "Creality CR-6 Max", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 SE 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 SE 0.2 nozzle.json index e749ce3a4a0..c04b78dfa18 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 SE 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 SE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 SE 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ZvJ0fJYI5s9xW90V", "instantiation": "true", "printer_model": "Creality CR-6 SE", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 SE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 SE 0.4 nozzle.json index 0b7b83495eb..8c862ad0c1f 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 SE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 SE 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "D1mqDqt9PZVLRp4C", "instantiation": "true", "printer_model": "Creality CR-6 SE", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 SE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 SE 0.6 nozzle.json index 62d81469840..d5f40f373fb 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 SE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 SE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 SE 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "5mSWnvqrjarTUJpz", "instantiation": "true", "printer_model": "Creality CR-6 SE", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 SE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 SE 0.8 nozzle.json index 42d435387f6..a38fa30329a 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 SE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 SE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 SE 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "CQi7GTzeyyVQyoTw", "instantiation": "true", "printer_model": "Creality CR-6 SE", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-M4 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-M4 0.4 nozzle.json index 72180afc39a..165a332297c 100644 --- a/resources/profiles/Creality/machine/Creality CR-M4 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-M4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-M4 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "8j6T4rBpObLegPyx", "instantiation": "true", "printer_model": "Creality CR-M4", "gcode_flavor": "marlin", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 0.2 nozzle.json index 8fec187c6d5..29762960b6c 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "5oUf77sfk02YYkPg", "instantiation": "true", "printer_model": "Creality Ender-3", "printer_variant": "0.2", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 0.4 nozzle.json index b3eb9d0df2b..59497d500b2 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "i9f1B2Ys6LJN4uhi", "instantiation": "true", "printer_model": "Creality Ender-3", "printer_variant": "0.4", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 0.6 nozzle.json index 9151be945b2..a33329652b6 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "JPUH8enVvMBNoQMI", "instantiation": "true", "printer_model": "Creality Ender-3", "printer_variant": "0.6", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 0.8 nozzle.json index b252b274673..d77ba1063f7 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "NSqhrkWEfEWkcmNe", "instantiation": "true", "printer_model": "Creality Ender-3", "printer_variant": "0.8", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.2 nozzle.json index 467a1178f03..d6715bb6367 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 Pro 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "J3vE732ssoOVnlfr", "instantiation": "true", "printer_model": "Creality Ender-3 Pro", "printer_variant": "0.2", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.4 nozzle.json index b8c4fcd32dd..ac1a04a609d 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 Pro 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Su88iexS0u8mergm", "instantiation": "true", "printer_model": "Creality Ender-3 Pro", "printer_variant": "0.4", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.6 nozzle.json index 2736000995c..f0377efa296 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 Pro 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "jRFxaEisLIVgMe3E", "instantiation": "true", "printer_model": "Creality Ender-3 Pro", "printer_variant": "0.6", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.8 nozzle.json index 1194f94db80..b8371d17700 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 Pro 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "THwsFY73tap4Sz1j", "instantiation": "true", "printer_model": "Creality Ender-3 Pro", "printer_variant": "0.8", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 0.4 nozzle.json index a9662ff5427..c8ee1f7a0fd 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "v5zq6LZrvEqFgvuK", "instantiation": "true", "printer_model": "Creality Ender-3 S1", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json index fafa7b1180d..66d9161841d 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 Plus 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "llVriwRyCGHvk0ve", "instantiation": "true", "printer_model": "Creality Ender-3 S1 Plus", "printer_variant": "0.2", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json index 8b04a36ef37..a871bc6d03c 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 Plus 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ZvCvEfhAHvPiyEn5", "instantiation": "true", "printer_model": "Creality Ender-3 S1 Plus", "printer_variant": "0.4", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json index 1dc456e921c..53d59233588 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 Plus 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "WWy1HTsQv1k8ObA6", "instantiation": "true", "printer_model": "Creality Ender-3 S1 Plus", "printer_variant": "0.6", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json index 3abf2847f54..29735d253df 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 Plus 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "HuGg4jA6mXt5VPXN", "instantiation": "true", "printer_model": "Creality Ender-3 S1 Plus", "printer_variant": "0.8", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro 0.4 nozzle.json index 360b418b07d..fa9f815d66d 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 Pro 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "QW6vWxP2VA6kipYu", "instantiation": "true", "printer_model": "Creality Ender-3 S1 Pro", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V2 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V2 0.4 nozzle.json index cafe1ec31dd..2e7787e04e3 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V2 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V2 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "8Y7SQdYcZgqYmzZT", "instantiation": "true", "printer_model": "Creality Ender-3 V2", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo 0.4 nozzle.json index fcf60491827..e07ac17f024 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V2 Neo 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "IQBZD7CKE6CJZyqX", "instantiation": "true", "printer_model": "Creality Ender-3 V2 Neo", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json index 066eb1a6be7..4bc5a8a963e 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "FUmSsB1Xk6FJC0tl", "instantiation": "true", "printer_model": "Creality Ender-3 V3", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json index cf0d4b6f055..317b7b3499b 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "elu1uN1i8DV45IZc", "instantiation": "true", "printer_model": "Creality Ender-3 V3", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json index 44754ead869..9b1fa97ba20 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 KE 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "9UssfDU6iVd2SVhf", "instantiation": "true", "printer_variant": "0.2", "printer_settings_id": "Creality", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json index 8d1269dc4a2..a0a2f1fe1b2 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 KE 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "dVAxSK9P8leZim5Q", "instantiation": "true", "printer_variant": "0.4", "printer_settings_id": "Creality", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json index 36e61d62292..7141b3088f8 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 KE 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "o3Sr7Hq4OzWMK4ek", "instantiation": "true", "printer_variant": "0.6", "printer_settings_id": "Creality", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json index 863d20c3fb2..da6689b46de 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 KE 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "gUxGziFTA6pWEmxI", "instantiation": "true", "printer_variant": "0.8", "printer_settings_id": "Creality", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.4 nozzle.json index d4e84a0f60c..ac9f51f5cb5 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 Plus 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "HGz252Lczho2ktAf", "instantiation": "true", "printer_model": "Creality Ender-3 V3 Plus", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.6 nozzle.json index 3045591ba9d..52db2b831db 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 Plus 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "KqXFEwJFo0QFOCHm", "instantiation": "true", "printer_model": "Creality Ender-3 V3 Plus", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.2 nozzle.json index 096bbc1c0e6..e75a79ce233 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 SE 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "9Z5cOcRzSGSWoSh4", "instantiation": "true", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 SE", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.4 nozzle.json index 09f92eba63d..59c207b62a6 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 SE 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "mUxlFWtW07nXn7xG", "instantiation": "true", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 SE", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.6 nozzle.json index 4f5e8d31322..713e8e7332a 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 SE 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "TgxxwdQ6XybuoQ2c", "instantiation": "true", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 SE", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.8 nozzle.json index 0ed91cc83c6..b904c4b7f3c 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 SE 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "hUb175zgxfcy5FUJ", "instantiation": "true", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 SE", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V4 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V4 0.4 nozzle.json index 7dfad31b73d..3c1fcae9690 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V4 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V4 0.4 nozzle.json @@ -107,5 +107,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality Ender-3 V4 0.4 nozzle", - "setting_id": "80639" + "setting_id": "R96v98fNsXyf9HXq" } diff --git a/resources/profiles/Creality/machine/Creality Ender-5 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 0.4 nozzle.json index 2d383f24499..c04de580971 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "X0rYP2JyEqdNbTDt", "instantiation": "true", "printer_model": "Creality Ender-5", "default_print_profile": "0.20mm Standard @Creality Ender5", diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Max 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.4 nozzle.json index 2ca1802e74e..fb15db7ab3e 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Max 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Max 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "arQeECQGICLCHhYQ", "instantiation": "true", "printer_model": "Creality Ender-5 Max", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Max 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.6 nozzle.json index 98e51b84d2f..f895c93b42b 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Max 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.6 nozzle.json @@ -115,5 +115,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality Ender-5 Max 0.6 nozzle", - "setting_id": "71211" + "setting_id": "1idSrUiK9hZwCJNy" } \ No newline at end of file diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Max 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.8 nozzle.json index cdf56ee8982..2fad99bcea5 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Max 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.8 nozzle.json @@ -115,5 +115,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality Ender-5 Max 0.8 nozzle", - "setting_id": "99719" + "setting_id": "mPvxCeNkSTMYta2L" } \ No newline at end of file diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Plus 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Plus 0.4 nozzle.json index 5356ab7f461..bcca726c1bd 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Plus 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "qAbfSQYMb1zHtNMj", "instantiation": "true", "printer_model": "Creality Ender-5 Plus", "default_print_profile": "0.20mm Standard @Creality Ender5Plus", diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.2 nozzle.json index 78fbf3b5d43..285297c0dff 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "zuWysC3doyDowLlU", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.25 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.25 nozzle.json index 75dbc9bf671..375ad54f20a 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.25 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.25 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "eGUm178CPAaKbo2l", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.3 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.3 nozzle.json index 273169b2d5c..fc273af47ed 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.3 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.3 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.3 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "MrO5xuRjdOfpglux", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.4 nozzle.json index 9b7fe4bd2fe..860e1dcc059 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "i6iBwupKUbmb9mM6", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.5 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.5 nozzle.json index 4eb9c8b9ac1..47ad87824a4 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.5 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.5 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Dqrt25OUEk2kXNbI", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.6 nozzle.json index 9f8667d100e..11a71495b29 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "1e0GYplHi67SFFTR", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.8 nozzle.json index 6ff9c62b8d4..45332a97886 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "sJZGoZ8hDTfITwIL", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 1.0 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 1.0 nozzle.json index adaef6d596f..5d5230f5af1 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 1.0 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 1.0 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "fhXgkpkxmW7FunGA", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 S1 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 S1 0.4 nozzle.json index 0f27ab91328..6ef5e99e94f 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 S1 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 S1 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "1wZtkdPmvwYS53L6", "instantiation": "true", "printer_model": "Creality Ender-5 S1", "default_print_profile": "0.20mm Standard @Creality Ender5S1", diff --git a/resources/profiles/Creality/machine/Creality Ender-5S 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5S 0.4 nozzle.json index ef0256ab37b..5b9fbe6a665 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5S 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5S 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5S 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PELsbN4W37DHhHXD", "instantiation": "true", "printer_model": "Creality Ender-5S", "default_print_profile": "0.20mm Standard @Creality Ender5S", diff --git a/resources/profiles/Creality/machine/Creality Ender-6 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-6 0.4 nozzle.json index 010f32e6d75..3e8b6f1216b 100644 --- a/resources/profiles/Creality/machine/Creality Ender-6 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-6 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "bpLN0RYSFgUZIEDV", "instantiation": "true", "printer_model": "Creality Ender-6", "default_print_profile": "0.20mm Standard @Creality Ender6", diff --git a/resources/profiles/Creality/machine/Creality Hi 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.2 nozzle.json index 7fa2e4ae3a8..b7a1676baa8 100644 --- a/resources/profiles/Creality/machine/Creality Hi 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Hi 0.2 nozzle.json @@ -120,5 +120,5 @@ "z_hop": "0.4", "z_hop_types": "Auto Lift", "name": "Creality Hi 0.2 nozzle", - "setting_id": "73035" + "setting_id": "Qr6oR8AJNy1QmytY" } \ No newline at end of file diff --git a/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json index 3de164add19..74cd4559d57 100644 --- a/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Hi 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "eUOvgX9fGP2CSq0d", "instantiation": "true", "printer_model": "Creality Hi", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json index a14bb76e0bb..402771c4104 100644 --- a/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Hi 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "kcNwxPo5XPc0xEuO", "instantiation": "true", "printer_model": "Creality Hi", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Hi 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.8 nozzle.json index 9905ee87945..5f43c0992c4 100644 --- a/resources/profiles/Creality/machine/Creality Hi 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Hi 0.8 nozzle.json @@ -112,5 +112,5 @@ "z_hop": "0.4", "z_hop_types": "Auto Lift", "name": "Creality Hi 0.8 nozzle", - "setting_id": "37865" + "setting_id": "Q7M2ihdHisSVLDGF" } \ No newline at end of file diff --git a/resources/profiles/Creality/machine/Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/machine/Creality K1 (0.4 nozzle).json index 52be85c7bb8..4b1fad646bf 100644 --- a/resources/profiles/Creality/machine/Creality K1 (0.4 nozzle).json +++ b/resources/profiles/Creality/machine/Creality K1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Creality K1 (0.4 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "YTVSp79gHX8xNpu2", "instantiation": "true", "printer_model": "Creality K1", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K1 (0.6 nozzle).json b/resources/profiles/Creality/machine/Creality K1 (0.6 nozzle).json index 38890795a8a..1a849f15d93 100644 --- a/resources/profiles/Creality/machine/Creality K1 (0.6 nozzle).json +++ b/resources/profiles/Creality/machine/Creality K1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Creality K1 (0.6 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Y0zJhWCnQkS1jEIa", "instantiation": "true", "printer_model": "Creality K1", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K1 (0.8 nozzle).json b/resources/profiles/Creality/machine/Creality K1 (0.8 nozzle).json index f4f8ba213cf..efc77b16233 100644 --- a/resources/profiles/Creality/machine/Creality K1 (0.8 nozzle).json +++ b/resources/profiles/Creality/machine/Creality K1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Creality K1 (0.8 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "GHGfwva619UwPc9n", "instantiation": "true", "printer_model": "Creality K1", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K1 Max (0.4 nozzle).json b/resources/profiles/Creality/machine/Creality K1 Max (0.4 nozzle).json index 96e4a963521..d41f4b8ec94 100644 --- a/resources/profiles/Creality/machine/Creality K1 Max (0.4 nozzle).json +++ b/resources/profiles/Creality/machine/Creality K1 Max (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Creality K1 Max (0.4 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "rqhrDn8Hx3uRxEnc", "instantiation": "true", "printer_model": "Creality K1 Max", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K1 Max (0.6 nozzle).json b/resources/profiles/Creality/machine/Creality K1 Max (0.6 nozzle).json index 25519f92205..8c0f630a435 100644 --- a/resources/profiles/Creality/machine/Creality K1 Max (0.6 nozzle).json +++ b/resources/profiles/Creality/machine/Creality K1 Max (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Creality K1 Max (0.6 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "MWaZ3DC8NiQn7vbW", "instantiation": "true", "printer_model": "Creality K1 Max", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K1 Max (0.8 nozzle).json b/resources/profiles/Creality/machine/Creality K1 Max (0.8 nozzle).json index cfe7baed49c..2593be039b2 100644 --- a/resources/profiles/Creality/machine/Creality K1 Max (0.8 nozzle).json +++ b/resources/profiles/Creality/machine/Creality K1 Max (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Creality K1 Max (0.8 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "jeSiHKAisMVAWrTq", "instantiation": "true", "printer_model": "Creality K1 Max", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K1 Max_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1 Max_CFS-C 0.4 nozzle.json index 6da2fc81258..0ffbbb8fc2c 100644 --- a/resources/profiles/Creality/machine/Creality K1 Max_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1 Max_CFS-C 0.4 nozzle.json @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Auto Lift", "name": "Creality K1 Max_CFS-C 0.4 nozzle", - "setting_id": "81993" + "setting_id": "zx1WGvi1Ff3X3RpP" } diff --git a/resources/profiles/Creality/machine/Creality K1 SE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1 SE 0.4 nozzle.json index af015ece59d..fc50432dd08 100644 --- a/resources/profiles/Creality/machine/Creality K1 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1 SE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K1 SE 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "E8r7L89MF77uzSpN", "instantiation": "true", "printer_model": "Creality K1 SE", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K1 SE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality K1 SE 0.6 nozzle.json index 35e1b30b95d..93a4641702d 100644 --- a/resources/profiles/Creality/machine/Creality K1 SE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1 SE 0.6 nozzle.json @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality K1 SE 0.6 nozzle", - "setting_id": "22599" + "setting_id": "x2DzbcUOES62gJTj" } \ No newline at end of file diff --git a/resources/profiles/Creality/machine/Creality K1 SE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality K1 SE 0.8 nozzle.json index c909a98fdc0..aa98cb2b002 100644 --- a/resources/profiles/Creality/machine/Creality K1 SE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1 SE 0.8 nozzle.json @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality K1 SE 0.8 nozzle", - "setting_id": "56461" + "setting_id": "sJR1oCXnOEQ2HZ5O" } \ No newline at end of file diff --git a/resources/profiles/Creality/machine/Creality K1 SE_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1 SE_CFS-C 0.4 nozzle.json index f5f56418bb8..14077b66937 100644 --- a/resources/profiles/Creality/machine/Creality K1 SE_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1 SE_CFS-C 0.4 nozzle.json @@ -108,5 +108,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality K1 SE_CFS-C 0.4 nozzle", - "setting_id": "98732" + "setting_id": "jAWMfHFcVBnqEqb1" } diff --git a/resources/profiles/Creality/machine/Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1C 0.4 nozzle.json index a736756f5b1..87ccb311bf7 100644 --- a/resources/profiles/Creality/machine/Creality K1C 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K1C 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Xxy4q0xtx8Re7WPo", "instantiation": "true", "printer_model": "Creality K1C", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K1C 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality K1C 0.6 nozzle.json index c9e1ec313ea..b00db3d173b 100644 --- a/resources/profiles/Creality/machine/Creality K1C 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K1C 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "7OloFrnUOgr6NqYN", "instantiation": "true", "printer_model": "Creality K1C", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K1C 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality K1C 0.8 nozzle.json index ab67b5acf33..069b665e5f8 100644 --- a/resources/profiles/Creality/machine/Creality K1C 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K1C 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "F9LWshBdIbw0Ygf8", "instantiation": "true", "printer_model": "Creality K1C", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K1C_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1C_CFS-C 0.4 nozzle.json index 7060043e3fe..225b760c9c6 100644 --- a/resources/profiles/Creality/machine/Creality K1C_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1C_CFS-C 0.4 nozzle.json @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Auto Lift", "name": "Creality K1C_CFS-C 0.4 nozzle", - "setting_id": "73280" + "setting_id": "ZhdzT48wvUDLGpPp" } diff --git a/resources/profiles/Creality/machine/Creality K1_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1_CFS-C 0.4 nozzle.json index 0ba20f265da..d4a7d9e9138 100644 --- a/resources/profiles/Creality/machine/Creality K1_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1_CFS-C 0.4 nozzle.json @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Auto Lift", "name": "Creality K1_CFS-C 0.4 nozzle", - "setting_id": "62995" + "setting_id": "AnvSIapWvZ2Jpc3T" } diff --git a/resources/profiles/Creality/machine/Creality K2 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality K2 0.2 nozzle.json index a6d31198abb..a0a342d4067 100644 --- a/resources/profiles/Creality/machine/Creality K2 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 0.2 nozzle.json @@ -1,7 +1,7 @@ { "type": "machine", "from": "system", - "settings_id": "GM001", + "setting_id": "8aX66GbijkwrT7DY", "instantiation": "true", "inherits": "fdm_creality_common", "printer_model": "Creality K2", diff --git a/resources/profiles/Creality/machine/Creality K2 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K2 0.4 nozzle.json index 13f1ae6b892..c3d6488839c 100644 --- a/resources/profiles/Creality/machine/Creality K2 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 0.4 nozzle.json @@ -1,7 +1,6 @@ { "type": "machine", "from": "system", - "settings_id": "GM001", "instantiation": "true", "inherits": "fdm_creality_common", "printer_model": "Creality K2", @@ -203,5 +202,5 @@ "retract_lift_enforce": "All Surfaces", "retraction_distances_when_cut": "30", "z_hop_types": "Auto Lift", - "setting_id": "91520" + "setting_id": "XiWyoJJ90uesQMGs" } diff --git a/resources/profiles/Creality/machine/Creality K2 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality K2 0.6 nozzle.json index ec1254ff378..b17c6f479aa 100644 --- a/resources/profiles/Creality/machine/Creality K2 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 0.6 nozzle.json @@ -1,7 +1,7 @@ { "type": "machine", "from": "system", - "setting_id": "GM001", + "setting_id": "xjllrWDeH0ABMI8K", "instantiation": "true", "inherits": "fdm_creality_common", "printer_model": "Creality K2", diff --git a/resources/profiles/Creality/machine/Creality K2 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality K2 0.8 nozzle.json index d6f955ae17f..9d13607569a 100644 --- a/resources/profiles/Creality/machine/Creality K2 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "machine", "from": "system", - "setting_id": "GM001", + "setting_id": "O1ardlnBQ2nqCs07", "instantiation": "true", "inherits": "fdm_creality_common", "printer_model": "Creality K2", diff --git a/resources/profiles/Creality/machine/Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Plus 0.2 nozzle.json index 7f70f8a16b8..52e7d360e9d 100644 --- a/resources/profiles/Creality/machine/Creality K2 Plus 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 Plus 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K2 Plus 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "62PSCmTOEBCBeaQm", "instantiation": "true", "printer_model": "Creality K2 Plus", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Plus 0.4 nozzle.json index db0233fe59b..93472b4deaa 100644 --- a/resources/profiles/Creality/machine/Creality K2 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K2 Plus 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "05zfI0qf5flvMmnC", "instantiation": "true", "printer_model": "Creality K2 Plus", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Plus 0.6 nozzle.json index e527bb5065c..3b9009eb0c3 100644 --- a/resources/profiles/Creality/machine/Creality K2 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K2 Plus 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "k01XrEd92hFQoMN9", "instantiation": "true", "printer_model": "Creality K2 Plus", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Plus 0.8 nozzle.json index 4c854a70520..285613858f1 100644 --- a/resources/profiles/Creality/machine/Creality K2 Plus 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K2 Plus 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "KyuzcfgsBhym76XG", "instantiation": "true", "printer_model": "Creality K2 Plus", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K2 Pro 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Pro 0.2 nozzle.json index 6b3455edb8a..08249a6136d 100644 --- a/resources/profiles/Creality/machine/Creality K2 Pro 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K2 Pro 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "O7s4tZqfiukNZUuz", "instantiation": "true", "printer_model": "Creality K2 Pro", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Pro 0.4 nozzle.json index 199ee93b374..c9d74994d78 100644 --- a/resources/profiles/Creality/machine/Creality K2 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K2 Pro 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "nEmGdfGXnsRqJa4a", "instantiation": "true", "printer_model": "Creality K2 Pro", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Pro 0.6 nozzle.json index 8b587e79a3f..b364acf29f3 100644 --- a/resources/profiles/Creality/machine/Creality K2 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K2 Pro 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "yiuckOph1AsX2Gtz", "instantiation": "true", "printer_model": "Creality K2 Pro", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Pro 0.8 nozzle.json index 2aeb72dca53..207c059d247 100644 --- a/resources/profiles/Creality/machine/Creality K2 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K2 Pro 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Dp40KfzTlDSNWQOE", "instantiation": "true", "printer_model": "Creality K2 Pro", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality K2 SE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K2 SE 0.4 nozzle.json index 6aab3b5e3a6..ebe24f655f6 100644 --- a/resources/profiles/Creality/machine/Creality K2 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 SE 0.4 nozzle.json @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality K2 SE 0.4 nozzle", - "setting_id": "21783" + "setting_id": "Blm3dYf9xWwUoaYJ" } diff --git a/resources/profiles/Creality/machine/Creality SPARKX i7 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality SPARKX i7 0.2 nozzle.json index e4f58991e8a..c2ea6339143 100644 --- a/resources/profiles/Creality/machine/Creality SPARKX i7 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.2 nozzle.json @@ -120,5 +120,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality SPARKX i7 0.2 nozzle", - "setting_id": "24422" + "setting_id": "I4qasXKWnIbPgYbu" } diff --git a/resources/profiles/Creality/machine/Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality SPARKX i7 0.4 nozzle.json index 0651421606b..8ee1efeebd2 100644 --- a/resources/profiles/Creality/machine/Creality SPARKX i7 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.4 nozzle.json @@ -120,5 +120,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality SPARKX i7 0.4 nozzle", - "setting_id": "88315" + "setting_id": "4usBaKppjmBSZy8N" } diff --git a/resources/profiles/Creality/machine/Creality SPARKX i7 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality SPARKX i7 0.6 nozzle.json index 769a7535619..70c72ec78f8 100644 --- a/resources/profiles/Creality/machine/Creality SPARKX i7 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.6 nozzle.json @@ -120,5 +120,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality SPARKX i7 0.6 nozzle", - "setting_id": "24559" + "setting_id": "6R7l1V4liyafB0lf" } diff --git a/resources/profiles/Creality/machine/Creality SPARKX i7 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality SPARKX i7 0.8 nozzle.json index 0a63417d6d0..d8358eb9dc7 100644 --- a/resources/profiles/Creality/machine/Creality SPARKX i7 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.8 nozzle.json @@ -120,5 +120,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality SPARKX i7 0.8 nozzle", - "setting_id": "81812" + "setting_id": "kwyQHmNESgzBBCr0" } diff --git a/resources/profiles/Creality/machine/Creality Sermoon V1 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Sermoon V1 0.4 nozzle.json index 7bf110633f0..a3a6bfbfb17 100644 --- a/resources/profiles/Creality/machine/Creality Sermoon V1 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Sermoon V1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Sermoon V1 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "OnKwNzhsh33llBNP", "instantiation": "true", "printer_model": "Creality Sermoon V1", "default_filament_profile": [ diff --git a/resources/profiles/Creality/process/0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/process/0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle.json index 5e9d26007be..0ff5143efe8 100644 --- a/resources/profiles/Creality/process/0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "5FeO8mZypv8CHDpj", "name": "0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm HueForge @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm HueForge @Creality Hi 0.4 nozzle.json index 10d0b854c90..e993c77b6c3 100644 --- a/resources/profiles/Creality/process/0.08mm HueForge @Creality Hi 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm HueForge @Creality Hi 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "peqHRWTyVxZ2w5WU", "name": "0.08mm HueForge @Creality Hi 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 0.4 nozzle.json index 3d9b3234d7c..3f0ff3b2070 100644 --- a/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "rWpJRnZscjXyKngw", "name": "0.08mm HueForge @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Plus 0.4 nozzle.json index 05bb1d1bb2f..6ddf78e2d2a 100644 --- a/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "nOd96z5QquzKG3iu", "name": "0.08mm HueForge @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Pro 0.4 nozzle.json index fadb388927b..ab5c252c2bc 100644 --- a/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "uUPLPuPdvODZdBSU", "name": "0.08mm HueForge @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm HueForge @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm HueForge @Creality SPARKX i7 0.4 nozzle.json index f35ef8de4bd..f584a864494 100644 --- a/resources/profiles/Creality/process/0.08mm HueForge @Creality SPARKX i7 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm HueForge @Creality SPARKX i7 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KQXt6EPU3DFJ4xLr", "name": "0.08mm HueForge @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality CR-6 0.2.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality CR-6 0.2.json index 430f707c857..d33349495f5 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality CR-6 0.2.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality CR-6 0.2.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality CR-6 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2DE0Yll1uWWACmoJ", "instantiation": "true", "bottom_shell_layers": "5", "initial_layer_line_width": "0.2", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2.json index 90b94b505b6..230b17d517e 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2", "inherits": "fdm_process_creality_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "VeEiN85x7tr0zsDH", "instantiation": "true", "bottom_shell_layers": "9", "top_shell_layers": "11", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.25.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.25.json index a6c925d45b6..aa1fb27356e 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.25.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.25.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality Ender5Pro (2019) 0.25", "inherits": "fdm_process_creality_common_0_25", "from": "system", - "setting_id": "GP004", + "setting_id": "8WKBbuUI1uqaxBQ9", "instantiation": "true", "bottom_shell_layers": "9", "top_shell_layers": "11", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.3.json index 63430a33042..d1e542b304c 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "9rohQW8ZwBpbFIMN", "instantiation": "true", "bottom_shell_layers": "9", "top_shell_layers": "11", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Hi 0.4 nozzle.json index 0353685a8a7..05da7204cf4 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Hi 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Hi 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Gzis5yvHXQD9PnSf", "name": "0.08mm SuperDetail @Creality Hi", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 (0.4 nozzle).json index e52e4277a50..8bf73caf412 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "jgP5JZdbxUbg8lfB", "name": "0.08mm SuperDetail @Creality K1 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle.json index 79235fbc875..5ff07e264b0 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "715XKCccsul5FKvC", "name": "0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C 0.4 nozzle.json index 2c8e3bd46e4..fbc953f4203 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "OhhZPXABlfjJun3o", "name": "0.08mm SuperDetail @Creality K1C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle.json index e9c3195a91f..bacd88b9f30 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "DMPF0xf2yvEWmu4L", "name": "0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1Max (0.4 nozzle).json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1Max (0.4 nozzle).json index 4b10530fb0f..1083550af81 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1Max (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1Max (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CaqcNDTSGWeJ81xw", "name": "0.08mm SuperDetail @Creality K1Max (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle.json index a53ae48e135..3e981814305 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ZqIhsxrzqVs6cFvM", "name": "0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.2 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.2 nozzle.json index 18bbea0e04d..7690eb02065 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality K2 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "EnApHkeVPFdim9oX", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.4 nozzle.json index 973c9c1115a..229c5be38ac 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VK8qeRg8ZEHRo2Rk", "name": "0.08mm SuperDetail @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle.json index 95296975c8e..26e877b4bf5 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "d22VPSF1SXi5gPOI", "name": "0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle.json index f690de029bc..f9b00d52835 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "T181USiYx4xlKGI9", "name": "0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle.json index 0ff6a159cd4..11833d41bc6 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "DxjpqUlUH3sSInBK", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle.json index c2fde64f12c..2edfea780c0 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Qq07eSaIWdVHr9mr", "name": "0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle.json index 5c8501305b6..94b622d6744 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "1PSmepdqo0eFyI23", "name": "0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-6 0.4.json index f0ff986bbc9..792e4bf7a33 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality 0.4 CR-6 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gCDf5r3S40HdDGIg", "instantiation": "true", "initial_layer_line_width": "0.3", "inner_wall_line_width": "0.3", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-M4.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-M4.json index 982a2c7db96..53d9a6d5b9d 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-M4.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-M4.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality CR-M4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vtCpsHiGx0zYKKBI", "instantiation": "true", "bottom_surface_pattern": "monotonic", "bottom_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.2.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.2.json index 4c8ee3f28bc..dfb5e9c47da 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.2.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.2.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality Ender5Pro (2019) 0.2", "inherits": "fdm_process_creality_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "6ajvAR6ksUWY9RAV", "instantiation": "true", "bottom_shell_layers": "7", "top_shell_layers": "9", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.25.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.25.json index 83d98845863..05874dce2ae 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.25.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.25.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality Ender5Pro (2019) 0.25", "inherits": "fdm_process_creality_common_0_25", "from": "system", - "setting_id": "GP004", + "setting_id": "ErW5xUm5tUnvvoI7", "instantiation": "true", "bottom_shell_layers": "7", "top_shell_layers": "9", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.3.json index 8c70c530257..bd46eedd267 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "gUk5D8WLQjvVYaGV", "instantiation": "true", "bottom_shell_layers": "7", "top_shell_layers": "9", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 0.2 nozzle.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 0.2 nozzle.json index a09d6a3f2fa..fbf0043f016 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality K2 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "VbMcEfWRcPS8ZziD", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Plus 0.2 nozzle.json index 83f53064921..6bf1baf2d25 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Plus 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Plus 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "V2oWbmagKmmoxbv3", "name": "0.10mm HighDetail @Creality K2 Plus 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Pro 0.2 nozzle.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Pro 0.2 nozzle.json index cbf293adb8f..d104a68e6a8 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Pro 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality K2 Pro 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "Yoy4llkdi8vyoU5I", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle.json index 620bf612b9b..16bc203a9c0 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "GqPrfjfOMnakeSmK", "name": "0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.2.json b/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.2.json index 617951eef0b..148e6ca5d96 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality CR-6 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QyCbRvjV5jfaacYs", "instantiation": "true", "bottom_shell_layers": "5", "initial_layer_line_width": "0.2", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.4.json index b8afae91e53..89456915eed 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality 0.4 CR-6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "SSSndKiWBQ06hxMX", "instantiation": "true", "initial_layer_line_width": "0.4", "inner_wall_line_width": "0.4", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.2.json b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.2.json index 25d0143839f..ad1efe29852 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality Ender5Pro (2019) 0.2", "inherits": "fdm_process_creality_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "iddMq4aUFe59QAMO", "instantiation": "true", "bottom_shell_layers": "6", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.25.json b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.25.json index 8c6fcc86824..691b29d56a4 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.25.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.25.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality Ender5Pro (2019) 0.25", "inherits": "fdm_process_creality_common_0_25", "from": "system", - "setting_id": "GP004", + "setting_id": "dUke7RQrRu8vFqPb", "instantiation": "true", "bottom_shell_layers": "6", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.3.json index 99540e9f9ad..e1eea95fd24 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "t7CMboSULL3CvaVR", "instantiation": "true", "bottom_shell_layers": "6", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.5.json index ddc19d593a9..5334f80bed6 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "uBnTsWOjSMd1yfNz", "instantiation": "true", "bottom_shell_layers": "6", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.2 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.2 nozzle.json index 3a3acca396a..d8e1f7255d8 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality K2 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "CgyrqwevLHW5VJCz", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.4 nozzle.json index 719b13a9963..2003ecc36d9 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "RxVB6dYHB7XghTJM", "name": "0.12mm Detail @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.2 nozzle.json index e9964cf9cd8..d2c0488bd93 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "4QIsAhoHoAXDecGF", "name": "0.12mm Detail @Creality K2 Plus 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.4 nozzle.json index e6bdad81afe..6abaf12607c 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "fY34NxARSSe2qjvw", "name": "0.12mm Detail @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.2 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.2 nozzle.json index f80ea552490..3936bfee460 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality K2 Pro 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "rI2YSHJ85PYODVOr", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.4 nozzle.json index bcb4b218216..0c06c325fa6 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "g1QZLRXoH1joFYs3", "name": "0.12mm Detail @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json index 7f666c146b0..b753d5d697d 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality CR10Max", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "eeiPSOyL4ergqQ07", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json index 9d457e2c0db..fb8b684ca22 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality CR10SE 0.2", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "wrSsDTXZmqGP7jI6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json index 42e69ba86b5..080d492adbc 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality CR10SE 0.4", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "cDZYl2hgnh7Cc99L", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json index 61412b78d5d..fdac5e080fe 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality CR10SE 0.6", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "tSCiJ9olpnfuFwwH", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json index 7d8787db6e8..e6d532895c2 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality CR10SE 0.8", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "QheGOjs9kbqt0RIz", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json index d18498342bf..9d3526378ae 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TduEizRFdShIDRcm", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json index 751361e9525..e54dac4c6fd 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Vkv3aPxQr9VEJvaF", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json index c87df669047..dc474207799 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Oc6OFEFHUMPYMB63", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json index 63f8ee9ca31..25c255507a9 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UntNzp8KmgY2dJp5", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json index 398bd79f20d..bdbcde0c09c 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 Pro 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "29EqYizz07WCqLH6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json index e4f2e13de63..e094dec3667 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 Pro 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ud8sbqOYEtSQQT6z", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json index a88440984f9..f04f45f8fba 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 Pro 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "NZt7TVAsYcO4KVUO", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json index 72ca4f4a3cb..4a98444b8b9 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 Pro 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hYyzb4pWqSMccfku", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json index 77112e3ae5a..0c89db070e8 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BYotUlZcqUXYiUJD", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json index dd8b7b785bf..f5f2c129927 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V2Neo", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "cRgPV5JRbPRakGVF", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3 0.4 nozzle.json index c8c3dfb43cc..311aa9f18b8 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "Rs3jP38ZEjdPihGT", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json index 27c81d7cc3e..a9beb01fcf2 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V3KE", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "EJAHGtrssuw5Z6ul", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3Plus 0.4 nozzle.json index 0909f987569..82c3f7e5f93 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "qPcJyOUL611jQfcb", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json index d1888f1c896..812595bf28d 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V3SE 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JM7OGS3Cjxqg6wFn", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json index 2ba7212d14c..dbb03f982c6 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V3SE 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "W68mSPdmat2rCXuD", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json index 124f0b0915a..797cbcafc9f 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V3SE 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WS8Z9BGDgjWP3pQJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json index 117e747b9e2..202ac828bc4 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V3SE 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kkfspmZozKFg5BA4", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json index b63e8f9d9d9..d452d0e75e5 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender5Pro (2019)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pMT5vO5IBWX9wZLG", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Hi 0.4 nozzle.json index 82a540259a9..d332eeaf3b5 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Hi 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Hi 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "BqQTYLbb22LCHEJN", "name": "0.12mm Fine @Creality Hi", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/process/0.12mm Fine @Creality K1 (0.4 nozzle).json index ccb5d3fff52..56e76e7a032 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality K1 (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality K1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality K1 (0.4 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "g6zPlZ8mKj4YHC9l", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality K1 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality K1 SE 0.4 nozzle.json index f9e58fdc386..0d9c5f4f5b4 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality K1 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality K1 SE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality K1 SE", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "cAcjLnedHgi2zJ05", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality K1C 0.4 nozzle.json index c9dc1cb5f2d..00e10594e34 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality K1C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality K1C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality K1C", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "G93LbyixXNXBiA0c", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality K1Max (0.4 nozzle).json b/resources/profiles/Creality/process/0.12mm Fine @Creality K1Max (0.4 nozzle).json index 886e797a935..0afe3367a57 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality K1Max (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality K1Max (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality K1Max (0.4 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "hfAhnivnymhUKkuS", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality SPARKX i7 0.4 nozzle.json index e4cda3e4076..db05c36733e 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality SPARKX i7 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality SPARKX i7 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "gHnRFCfQOiqEOQhq", "name": "0.12mm Fine @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 0.2 nozzle.json b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 0.2 nozzle.json index 2d4567efc00..23ee07ff023 100644 --- a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Optimal @Creality K2 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "NE7Agdi1j6hrK7rw", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Plus 0.2 nozzle.json index e32511259e8..acdb2c2403c 100644 --- a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Plus 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Plus 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "AgwKETM82R6PNW8u", "name": "0.14mm Optimal @Creality K2 Plus 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Pro 0.2 nozzle.json b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Pro 0.2 nozzle.json index 4a15c4b30b0..dc2ded50f43 100644 --- a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Pro 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Optimal @Creality K2 Pro 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "uzBTcj0MWesbEiKJ", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.15mm Detail @Creality CR-M4.json b/resources/profiles/Creality/process/0.15mm Detail @Creality CR-M4.json index 52fa73047fa..5d1e3108807 100644 --- a/resources/profiles/Creality/process/0.15mm Detail @Creality CR-M4.json +++ b/resources/profiles/Creality/process/0.15mm Detail @Creality CR-M4.json @@ -3,7 +3,7 @@ "name": "0.15mm Detail @Creality CR-M4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jQbIfGEQz1oMASyr", "instantiation": "true", "bottom_surface_pattern": "monotonic", "bottom_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json b/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json index c824c21c93e..e04a25a2e79 100644 --- a/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Creality CR10Max", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AhVlBBKSgNv8gtzF", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json index ccf9622fe27..91fa465accc 100644 --- a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Creality Ender3V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZlLapzGj5AcZJW7n", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json index aefd817b48c..cae991ff769 100644 --- a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Creality Ender5Pro (2019)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ysg14LXoki3gnanY", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Fine @Creality Ender-3 V4 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Fine @Creality Ender-3 V4 0.4 nozzle.json index 7ccf8e901da..aeb29cee0ae 100644 --- a/resources/profiles/Creality/process/0.16mm Fine @Creality Ender-3 V4 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Fine @Creality Ender-3 V4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "cFlbPrdjMi4CLWZF", "name": "0.16mm Fine @Creality Ender-3 V4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.2.json index feeca696f09..84157fbc260 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR-6 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "NmD2dx7kslAV3A5L", "instantiation": "true", "bottom_shell_layers": "6", "initial_layer_line_width": "0.2", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.4.json index 9d7d19aeda1..44e22d33e98 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR-6 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hB2b43wb6zlKNwM7", "instantiation": "true", "adaptive_layer_height": "1", "brim_object_gap": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.6.json index 6454d9285c1..003f5494561 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hG0UwjqVbDIDvVSi", "instantiation": "true", "bottom_shell_layers": "5", "initial_layer_line_width": "0.6", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json index 02fceae2011..77f4e754f61 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR10SE 0.2", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "KJS40SDSHBwiqODl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json index 8a583fddb38..336e78ac1cf 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR10SE 0.4", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "0MJLzTqNgW25Uheg", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json index 53c4dfd48b6..1f1a708b4b8 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR10SE 0.6", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "N8cFrOUSa1yfMrv0", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json index f79b35382d9..b98f76289e8 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR10SE 0.8", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "cjrvnlS7gkkm0pNy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json index 9b388ee677e..067aa427600 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR10V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QussxQZJlCnscRO8", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json index 2b06519bb70..a41f412f454 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "cply3AO1zRZSsHgR", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json index 94abdc31998..9a42f544484 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "11bH6lpigIvL8u8f", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json index 4c3ff47b549..0c74372deea 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Fke1V31Lx19EoKIA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json index e13cd36e6d2..0ecee26eb00 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "9fSweJ4F7gua7Uc7", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json index 29071ad9750..e2ab351bc77 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 Pro 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "DwpNJnb8eEz7L9Bb", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json index 17eea5e09bb..c21dcdd1432 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 Pro 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "43mtG5xlkphvMKKd", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json index 2c39218d616..c8f96920394 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 Pro 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Jhb6GdIOKHntN1Ya", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json index 1f031ca6942..a90a14ce261 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 Pro 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fxgj9J397IulykPl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json index 9d5e2a76352..1adc7edee9c 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "O0dOiNS7TEZtCZ8R", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json index 860155f4da3..6ec52bb438c 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1Plus 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "eWDWBHYshBLl925f", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json index eeacbd6d1c5..dc0b13a54dd 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1Plus 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HjQX9RTDFKq7QGtA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json index cc35166f09a..4dca077fd89 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1Plus 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sFUH487ulcosG1Aj", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json index 8a99efc9d81..0b360bbdf51 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1Plus 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dDjBGlXptHbFRkZe", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json index ae6a5e4f129..dc75dd8a6bd 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1Pro", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "XL3fQRXNDiWlirhY", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json index ae3fc1628c2..ee244e17c81 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3V2Neo", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aoBTpFYHhbpg1kuj", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3 0.4 nozzle.json index ef0ae9d1b7c..c3487fcff2a 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "2Nrbq8PxssUPBLza", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json index eccf4945209..3ae447f19b7 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3V3KE", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "ujKrpcMbGeL1pnX6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3Plus 0.4 nozzle.json index 23224519572..9139a9ab804 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "eni3OChSXVGLB0NB", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json index d3171e0949c..b7113edd457 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3V3SE 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CSSjT637cJ1BSrDa", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json index 84816544b11..fca0842a892 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3V3SE 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jvnrh3jh6Btbs1Ja", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json index a9d7b877410..1bc4ed673f9 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3V3SE 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oFqTILkrvntT8uHM", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json index 957ef471180..676751fa1e5 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3V3SE 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kLTt1KBtPskehSHv", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json index 15581c8e35b..8912d61ace3 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dIPbjfE0UjFaq6YU", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json index 60ebbe32799..704cd3756aa 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Plus", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "A7RB0AQ0t1UkCN5G", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.2.json index c6c4544e706..344366907a6 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Pro (2019) 0.2", "inherits": "fdm_process_creality_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "PkYaHtGT4lQshqVI", "instantiation": "true", "bottom_shell_layers": "5", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.25.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.25.json index 81785ac1811..cbb82314667 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.25.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.25.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Pro (2019) 0.25", "inherits": "fdm_process_creality_common_0_25", "from": "system", - "setting_id": "GP004", + "setting_id": "A4ILOH76mEPaqZTn", "instantiation": "true", "bottom_shell_layers": "5", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.3.json index b5c7e8a33a8..f8542b1e99c 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "6yq15YC2v6Dl4eyl", "instantiation": "true", "bottom_shell_layers": "5", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.5.json index 86cadadd37d..bcca7d93c0e 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "vDwtu5SYxnCjXgrd", "instantiation": "true", "bottom_shell_layers": "5", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.6.json index b54ce67cd34..076f5babc01 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Pro (2019) 0.6", "inherits": "fdm_process_creality_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "9fr4NwTGAeHhTru5", "instantiation": "true", "bottom_shell_layers": "5", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json index c9f4460be7b..fb485bbf218 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5S", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qVu6mv4sVrVzWxvy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json index bfb8373bb66..45d61838d5c 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5S1", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "03w4e0cMfUFjZcv6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json index 8cc064376e4..4669bff8428 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "cjGhLiKivneRnlNJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Hi 0.4 nozzle.json index f29f1c3fdff..77b1295186a 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Hi 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Hi 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "NtD3nnUvAO8aSUDJ", "name": "0.16mm Optimal @Creality Hi", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 (0.4 nozzle).json index 5db4fc486e1..dba47d76a50 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "A0a8psWEQGdmYiPj", "name": "0.16mm Optimal @Creality K1 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle.json index d43806e95ac..ef22dc37ab5 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "BQiQnQJpN2Yy4c7u", "name": "0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE 0.4 nozzle.json index ab0303c3e41..2ac16fb4840 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "xHoh6Y8AfDzNA5Mf", "name": "0.16mm Optimal @Creality K1 SE", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle.json index 294d3dae01f..b247bece368 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ZhEEAnJ5eh6QES40", "name": "0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C 0.4 nozzle.json index c21c1f81432..b1d6201ba79 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "i25lsWBmZF21XcdV", "name": "0.16mm Optimal @Creality K1C", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle.json index 7e3512aa46f..44dc07e0706 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CpdVjCmJkN3pWssv", "name": "0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1Max (0.4 nozzle).json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1Max (0.4 nozzle).json index f0d420ac970..0b4ae9c7778 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1Max (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1Max (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "IN9EjcbeLmwzyIrt", "name": "0.16mm Optimal @Creality K1Max (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle.json index 27a62492d62..6b201d6f4db 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "a76Q90iyWf1az7Fv", "name": "0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 0.4 nozzle.json index a97b78472c2..d8e00651f28 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "xcJYMZt1N40vmszc", "name": "0.16mm Optimal @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Plus 0.4 nozzle.json index ccf524251ea..1f9b68b300e 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Qh4PUdesKrjSUXFm", "name": "0.16mm Optimal @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Pro 0.4 nozzle.json index 19a32f523ef..80277008a02 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "FCUUtHpYIxeokc0a", "name": "0.16mm Optimal @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality SPARKX i7 0.4 nozzle.json index 4da57df06a8..c23d00fba09 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality SPARKX i7 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality SPARKX i7 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "8z63KIGeDgitLqPe", "name": "0.16mm Optimal @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Sermoon V1.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Sermoon V1.json index 54bd4631d40..1500b58edd2 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Sermoon V1.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Sermoon V1.json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @Creality Sermoon V1", "inherits": "fdm_process_creality_common", "from": "User", + "setting_id": "hbBZ8omsECktSuQl", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "65%", diff --git a/resources/profiles/Creality/process/0.16mm Standard @Creality K2 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Standard @Creality K2 SE 0.4 nozzle.json index 4026d2c6426..4511db51d8b 100644 --- a/resources/profiles/Creality/process/0.16mm Standard @Creality K2 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Standard @Creality K2 SE 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KopqA4S2dMBSCBSD", "name": "0.16mm Standard @Creality K2 SE 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 0.6 nozzle.json b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 0.6 nozzle.json index b495589c408..c6aff2c46c4 100644 --- a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Detail @Creality K2 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "CnbapJIbVp2G1P3f", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Plus 0.6 nozzle.json index 736152328b7..9111e8a3950 100644 --- a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Plus 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "3wVXi8pXkGNmKm53", "name": "0.18mm Detail @Creality K2 Plus 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Pro 0.6 nozzle.json index 8d89aa7d4f0..d2299f536e7 100644 --- a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Detail @Creality K2 Pro 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "qkIa0kvnO1kKCXaH", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.1mm Standard @Creality Hi 0.2 nozzle.json b/resources/profiles/Creality/process/0.1mm Standard @Creality Hi 0.2 nozzle.json index b1a3389552d..40475733fd9 100644 --- a/resources/profiles/Creality/process/0.1mm Standard @Creality Hi 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.1mm Standard @Creality Hi 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "tkSkduU7S0ysAtM7", "name": "0.1mm Standard @Creality Hi 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm High Quality @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm High Quality @Creality K2 Plus 0.4 nozzle.json index e6e7bfbde0d..422e928cc02 100644 --- a/resources/profiles/Creality/process/0.20mm High Quality @Creality K2 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm High Quality @Creality K2 Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "UR1b2Z2o4t2uXsDO", "name": "0.20mm High Quality @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.4.json index e75c00d3f7d..506555356ec 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR-6 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1r7s9PLXP6o4Eu92", "instantiation": "true", "top_shell_layers": "4", "compatible_printers": [ diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.6.json index a5b9e950c78..afbdf4f130f 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "a7KaUj13TU2VGVeI", "instantiation": "true", "initial_layer_line_width": "0.63", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-M4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-M4.json index 65b0a4a4130..e9d475488ed 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-M4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-M4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR-M4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1ErOybjeyBbMseD4", "instantiation": "true", "bottom_surface_pattern": "monotonic", "bottom_shell_layers": "3", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json index ec0e3fc224d..702fcf8ea8c 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10Max", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZShSFfwlxaYTLPyk", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json index 8a87111b292..d540f01b055 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10SE 0.2", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "SUpsCvktcGgKFOwG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json index ae6e163166c..2ed8c6707fe 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10SE 0.4", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "Mi0CWgKQO5QtCUgX", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json index 097f08af975..36616153a4d 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10SE 0.6", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "ogY513sf2Ht92CNe", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json index bebc21cba9d..fe5cba1347a 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10SE 0.8", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "athOsWrvUS4bdchK", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json index 6eee215edc4..4a37e7aed66 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pRsZ1fGFRb5LxTi6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.4.json index a57800e5e66..8d5f34c0101 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10V3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oThS7cBtZl2ycbIR", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.6.json index 62a4f830dfe..d468da293f7 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10V3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BDjZsZ3Eron3yC6o", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-3 V4 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-3 V4 0.4 nozzle.json index 64fb27df826..b6d67036931 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-3 V4 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-3 V4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "V6277KGs62IwLGt2", "name": "0.20mm Standard @Creality Ender-3 V4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-5 Max 0.4mm nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-5 Max 0.4mm nozzle.json index 21bb216a1d6..c8decdadad3 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-5 Max 0.4mm nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-5 Max 0.4mm nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender-5 Max 0.4mm nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "AIGw5RfsGTHUTvDV", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "25%", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json index dd2ead1986c..8d7d9c44a6a 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "NUOwkxvz6bzH12be", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json index e7d9ed49dbe..9e7ec845b1e 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aPYE2hHFn4jp6hHd", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json index b7b63e7d25f..b24bac30e1f 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "iuwxYTfWfZ4RyZEg", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json index 22f57566f3d..e85725b2dbc 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fhwVxG08WJloBcrL", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json index 106e071c4f4..9e5461dbee2 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 Pro 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "V3Ik8iTHlZh5QNKm", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json index 3afccac49cc..3e1b8994463 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 Pro 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "g5sSMikMlHAPS2go", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json index 4a94011b63a..9ddf750136f 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 Pro 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vuh1vEUnXIvFGssp", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json index 63c3a5f55dc..537fff135e1 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 Pro 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "l6niLUptIm4MfRTB", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json index d71cabb4f7f..9abea8d0740 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "XzSinPHka1JNcgdc", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json index dcde2506513..c8e6b39c192 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "6n6QHp6IAmmgmTy7", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json index 50d49dbc5e4..5ac0c2cc467 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1Plus 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BmsBXICyG0DusAHS", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json index 25038b0d4b7..219119b0b9d 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1Plus 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "FFWB7dkbWTGsR5a1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json index 70dace11c4c..71fadd1ded3 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1Plus 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Fo07KIkbZydVaBgi", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json index 732e93b0b1a..4ce194a79e1 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1Plus 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "FiSvC283VqqMpr41", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json index e2f0f8ba968..022e911acca 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1Pro", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dPims9blQsZMrtnN", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json index cccf55522f1..0e16e788ef5 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pmPzGC04PU62qjcz", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json index 8782161984e..89c4f56fa8f 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V2Neo", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bVXaGFQ7f2jkilWk", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3 0.4 nozzle.json index e693a8f8d3a..0f5aae0bd66 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "wG01ybBcp59pX5lB", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json index 4c748ec0ab2..4041987d50d 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V3KE", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "H198VcahxwpEdma0", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3Plus 0.4 nozzle.json index f7b0f4d5e37..97892cc2035 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "rG5BalEQ9WpjxWXr", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json index e2751fe2aa3..a1672739e3c 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V3SE 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JrWxHTh4DZ7zRaog", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json index 5140aa122ed..8ef18f22fcf 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V3SE 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "YLkw9eyyK7cm97ek", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json index e5d0fb3b7a7..694492b626f 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V3SE 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "8xefmMVdxxfX5MTl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json index dc0f043b419..ec49bea8c63 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V3SE 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "DLABbffpOkmSzZrG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json index 042f608a87a..7d4eef8be24 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "8Ok1ykiLVdEftiJO", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json index 6ff447349ce..4de5bed1c6a 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Plus", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "y5dNuwrcPQ1xUKOM", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.25.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.25.json index 328f6aa855d..be515b9d656 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.25.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.25.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019) 0.25", "inherits": "fdm_process_creality_common_0_25", "from": "system", - "setting_id": "GP004", + "setting_id": "xK6kR6RFQVFRo6tE", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.3.json index 20a6a4fad8b..8920fa0caa9 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "dgypN1BMVnOqW926", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.5.json index f9c980de33c..6dc555ab8d0 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "1XGT3ichHXJ9UyaZ", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.6.json index 654b5274224..bf5f94e023b 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019) 0.6", "inherits": "fdm_process_creality_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "lqciHPLwFurH4fi6", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.8.json index dfc27e1dff0..80356a6239f 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019) 0.8", "inherits": "fdm_process_creality_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "1304wj45TgRamQar", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json index 0a95b5d5488..3abc3478f3c 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jy8Ih6XxbX6mY2Z2", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json index e3077d48509..9dfdc2bc125 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5S", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5x3ZLLMD1JScujiM", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json index 49bfbca6b30..5546e8b9163 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5S1", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lRpMOtyu8tTd4q5C", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json index 0d018bd377b..98e7815784c 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HWmFUQgTTKxAkHnA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Hi 0.4 nozzle.json index dd7a51c3d36..5a5b6096a0e 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Hi 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Hi 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Hi", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bcq9UBvpf9Ye1RX3", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 (0.4 nozzle).json index 1b1be37c49d..42e894eecda 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality K1 (0.4 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jxlXC0tjb1iInd1x", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle.json index 09eca93c541..f765f850c88 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "aBAXeSGAYu5QgS8m", "name": "0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json index b91e674d2b2..909172c14b7 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality K1 SE", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "eR9pRC1qPENNx8U9", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle.json index d52f146a9c9..85de09803b7 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "RBEfIJsnl68JBPDc", "name": "0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1C 0.4 nozzle.json index 0b069abf9bb..c33dc038f5d 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality K1C", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Pby5sWLEKpBaKwmM", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle.json index 8bb93854417..7957e09303c 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KXIWcAo9MAwFwT70", "name": "0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1Max (0.4 nozzle).json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1Max (0.4 nozzle).json index 29d8f1e9660..cea8966d465 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1Max (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1Max (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality K1Max (0.4 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "9nvA5UDQGFATLeFj", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1_CFS-C 0.4 nozzle.json index bc89ccbd43a..a617d8e2b4c 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "x8wjQRt9jfXwd6cJ", "name": "0.20mm Standard @Creality K1_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 0.4 nozzle.json index 6bcc74a3e71..ab4c3c45815 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "4xypdknoIfLrsbrs", "name": "0.20mm Standard @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Plus 0.4 nozzle.json index 1350c85b163..9faaa2515eb 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality K2 Plus 0.4 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "mizZLMHcJyRoiOns", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Pro 0.4 nozzle.json index 2c1f8c101d7..d46a33f97e3 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality K2 Pro 0.4 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "SBpBguQF77R7zhIn", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 SE 0.4 nozzle.json index 1e307f7adab..39876b77dd2 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 SE 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "eXLuYlHmWAomEpIp", "name": "0.20mm Standard @Creality K2 SE 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality SPARKX i7 0.4 nozzle.json index 8e01c7beb3f..11e1f6ed456 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality SPARKX i7 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality SPARKX i7 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VxY2jazB2Kn4930i", "name": "0.20mm Standard @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Sermoon V1.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Sermoon V1.json index f788c8bd055..d06447035a2 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Sermoon V1.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Sermoon V1.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Creality Sermoon V1", "inherits": "fdm_process_creality_common", "from": "User", + "setting_id": "J3IzdE5HVwBrHM7u", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "65%", diff --git a/resources/profiles/Creality/process/0.20mm Strength @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Strength @Creality K2 Plus 0.4 nozzle.json index 9698496c5e3..e98933167c0 100644 --- a/resources/profiles/Creality/process/0.20mm Strength @Creality K2 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Strength @Creality K2 Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "wApX9tYxw2iElGhq", "name": "0.20mm Strength @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle.json b/resources/profiles/Creality/process/0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle.json index d9bf928fd34..d84217d2ffe 100644 --- a/resources/profiles/Creality/process/0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "IQ46eLxYaNLrl7Ll", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "25%", diff --git a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 0.8 nozzle.json b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 0.8 nozzle.json index 694729f6078..010b4aecbf6 100644 --- a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Detail @Creality K2 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "qeRmEOFZkFm80rgB", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Plus 0.8 nozzle.json index 11d15999674..0d11e5ac33b 100644 --- a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Plus 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Plus 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "fIlqMCEz5fbmGHKW", "name": "0.24mm Detail @Creality K2 Plus 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Pro 0.8 nozzle.json index ded1805cf72..4e6400fb7c5 100644 --- a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Detail @Creality K2 Pro 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "1GYsJKbRc2h4iBtx", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.4.json index 5dc2d42da2a..613aba63aa1 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR-6 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "cbNntwjFVQBR2zAp", "instantiation": "true", "initial_layer_line_width": "0.4", "inner_wall_line_width": "0.4", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.6.json index cfb09407b8d..9280c29399a 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "G7ctnH4ZOpQUZ31B", "instantiation": "true", "initial_layer_line_width": "0.6", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json index 1a68b61f3d8..0b24f4d0b73 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR10Max", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5RGkaM3sTHAC90DK", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json index 2daa3e4780e..5b1ef5fde16 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR10SE 0.2", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "mEhTPVNyKIXwHM6R", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json index beed9d22e0b..19d67687278 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR10SE 0.4", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "qZkT2BU9Kg4n9tnF", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json index 70125a1e71e..68257a4de46 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR10SE 0.6", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "g0NQSWW3BZbgAMRl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json index f14846bb915..0c9c307c6b8 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR10SE 0.8", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "ZdimPQfRwZ0VDiZM", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender-3 V4 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender-3 V4 0.4 nozzle.json index 739e513d98a..494a97b4e44 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender-3 V4 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender-3 V4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "JxRqFqk1obhdGIKZ", "name": "0.24mm Draft @Creality Ender-3 V4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json index d8341c6e2ce..6f950b89050 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5bb8SQOestc8UdQe", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json index 350ab85b0d0..5458a1290e2 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sP41jQScaMnkdanj", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json index 0d5408f2d3e..c2cffefbc8c 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5z5F9heoZFK48zCY", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json index d5810c30ebc..5b0b8ef11a2 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "61RvRyfbHgGvr6eQ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json index 5f516fa85a5..6dfcdc172a5 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 Pro 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "nDVndS7HUxU2wT2D", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json index fdb1fffbbd2..f0e543f232c 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 Pro 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jGm1nCGpwxxtCtvT", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json index 86622ea1162..80ee65edbd5 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 Pro 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2eTryig3fd51wgQ3", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json index 2fd28e7bdce..ad27324794a 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 Pro 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "3Q7LIYMDI349jST9", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json index d58525f88cb..653d0124339 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3S1Plus 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZLzHZO4Db6sjb1f1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json index f7c166659be..231e7a82ff9 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3S1Plus 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "mxnyxP2RYe284OB7", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json index d73eb62f03b..a55b4541b31 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3S1Plus 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5sa2VFy1tjN907oW", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json index 2d8ec5d24eb..e20cc6741e9 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3S1Plus 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MadcYvntjYi46IDu", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json index 8981dc22d15..5b8482f5377 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "u9TtIf0XBhnWrwND", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json index 38035d47cc2..73c5f253ced 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V2Neo", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "De7wK4KBVZ2BzRx5", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3 0.4 nozzle.json index 02d33b8053b..c4669560cfa 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "O0jM8sqvBLR5aNfE", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json index 2ef4de47668..f4374f84d06 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V3KE", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "7ZtffBsXW6wPWj7k", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3Plus 0.4 nozzle.json index 569915e682d..0c781beb531 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "lH3j14miQE62zlSj", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json index 02579576b98..93a2507428f 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V3SE 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "0SJNhii84pYiz380", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json index 43dabd03528..6b750b66c1e 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V3SE 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Hg10EUNCLMEYYBN1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json index ec608a8ee85..17015f12de5 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V3SE 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "6F8olUrpFz6cSOfX", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json index a8ce7517b9b..f0c9c02f7ea 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V3SE 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "L6Qdsyt0yW2TCRyk", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.3.json index 98777f55edb..0e0eb4dc85b 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "qY5OF3zSgw1CgQE3", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.5.json index be30a577fd3..63dc2bc3059 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "JcUNh8xuFZU7JtzC", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.6.json index db83d06a56e..6049703a62f 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender5Pro (2019) 0.6", "inherits": "fdm_process_creality_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "jTNglevzxKhVH218", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.8.json index 348f865f5b2..942736f2cde 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender5Pro (2019) 0.8", "inherits": "fdm_process_creality_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "qIGeTJF0GsWz3eHi", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json index 7dddd3ffbcc..0d210f5c9f9 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender5Pro (2019)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "k1Qi7hPIAi1qp7cA", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Hi 0.4 nozzle.json index d39b2862319..1fce19f64e3 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Hi 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Hi 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "csR8yY0OEnt7SU6T", "name": "0.24mm Draft @Creality Hi", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 (0.4 nozzle).json index c23e8deda3e..051a14e1d49 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "NGQAnSKnUVHcq0sR", "name": "0.24mm Draft @Creality K1 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle.json index 9d56a6c18ad..8170eb02d64 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Lxyn5qXHZh4GIGS1", "name": "0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE 0.4 nozzle.json index fc980090a1d..349601c8575 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KJc1HuWgcYJkoy32", "name": "0.24mm Draft @Creality K1 SE", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle.json index 62dd4205e72..40ecd965b13 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "dPPC73WnlF20wbsm", "name": "0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1C 0.4 nozzle.json index ae9a1ac46ae..ef58869e105 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "POMxfD8I0LnZO9CB", "name": "0.24mm Draft @Creality K1C", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle.json index b0e564cf7f2..af9f2c5b86d 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "wGXybdgPzFWozZLw", "name": "0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1Max (0.4 nozzle).json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1Max (0.4 nozzle).json index bddcae64751..cea238f1f3f 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1Max (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1Max (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "rIeugRR6BYXplcpT", "name": "0.24mm Draft @Creality K1Max (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1_CFS-C 0.4 nozzle.json index 123c8d0cf85..5f91995b419 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1_CFS-C 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1_CFS-C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "vGw6lrXZLHRNpR6r", "name": "0.24mm Draft @Creality K1_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 0.4 nozzle.json index 7c62e7f31a4..cb761dd7cd9 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "G1PKSuPoCcbIA7Yh", "name": "0.24mm Draft @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Plus 0.4 nozzle.json index 97e7ad3dfbb..4676faab102 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "sPONNeyRg4CxHD1r", "name": "0.24mm Draft @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Pro 0.4 nozzle.json index e278f348620..7c1f71451e4 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "7V16er03IuXDpO4U", "name": "0.24mm Draft @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality SPARKX i7 0.4 nozzle.json index 1585d76d7f2..f8c9f5dea62 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality SPARKX i7 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality SPARKX i7 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "1E0byJ2cjuoubstC", "name": "0.24mm Draft @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality CR-6 0.8.json index 6e431b1c9f2..2591c462cfa 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5AsxUtH9OwzU3bCJ", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.4", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3 0.6 nozzle.json index 99f6243ba4a..5d8dd67e1f6 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "s3qAAYV2gY2x4rrB", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3Plus 0.6 nozzle.json index 43243f293ff..1d9da9088e9 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "w5MuLpLSpMMuLXwf", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality Hi 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality Hi 0.6 nozzle.json index 092a147f690..edb3f7e2dbe 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality Hi 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality Hi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality Hi", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "7uxCpPqUS9Lz1TK8", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1 (0.6 nozzle).json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1 (0.6 nozzle).json index 0478023aeb9..3af9088dcdf 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1 (0.6 nozzle).json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality K1 (0.6 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "GDs3Z2oIlW5O1tCx", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1C 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1C 0.6 nozzle.json index 0262d0399d2..9e582fad283 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1C 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality K1C", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "eF3su8pOiDbEHiOy", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1Max (0.6 nozzle).json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1Max (0.6 nozzle).json index 09d00f1c804..cf81e4557b4 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1Max (0.6 nozzle).json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1Max (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality K1Max (0.6 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "IZxO4Gmrh0sqyiC8", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 0.6 nozzle.json index 4c11a63d126..d57ff66332e 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality K2 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "t6bRCLDbbyLL2Iti", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Plus 0.6 nozzle.json index cef771146de..7cefcf50f96 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Plus 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "rFcFwPDRfrVVWCmp", "name": "0.24mm Optimal @Creality K2 Plus 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Pro 0.6 nozzle.json index 11672e16e1c..8a246c22457 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality K2 Pro 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "3Pbmrd0qM9D2TjD7", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.24mm Standard @Creality K2 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Standard @Creality K2 SE 0.4 nozzle.json index 0da85776207..ab6b0843f4a 100644 --- a/resources/profiles/Creality/process/0.24mm Standard @Creality K2 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Standard @Creality K2 SE 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "7DN0tghSeRVYQcde", "name": "0.24mm Standard @Creality K2 SE 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.28mm Standard @Creality Sermoon V1.json b/resources/profiles/Creality/process/0.28mm Standard @Creality Sermoon V1.json index 5b50f4224ce..b67ba120eec 100644 --- a/resources/profiles/Creality/process/0.28mm Standard @Creality Sermoon V1.json +++ b/resources/profiles/Creality/process/0.28mm Standard @Creality Sermoon V1.json @@ -3,6 +3,7 @@ "name": "0.28mm Standard @Creality Sermoon V1", "inherits": "fdm_process_creality_common", "from": "User", + "setting_id": "ATC7ZredxtE2vMZX", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "65%", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.4.json index a1a465742ce..bbc66265808 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality CR-6 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2SlYsN3t44qXyLD0", "instantiation": "true", "initial_layer_line_width": "0.4", "initial_layer_print_height": "0.28", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.6.json index 51d6bcd106d..711cbe34f17 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AibWSVsNuCytOtQs", "instantiation": "true", "initial_layer_line_width": "0.6", "inner_wall_line_width": "0.6", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle.json index 479f6e643d2..fcd0453ca23 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "nuR9SZ4PCShEC1Cw", "name": "0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json index 81523789515..4ca758ed551 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aQmsfZyAfVbBZ9Lh", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json index c45c474d946..79a99fa000b 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oFne48238nyyTRRV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json index 60b182f7f45..9b6cbd3e333 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1ByZYdK7bEtBcJGG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json index 129d78c47ca..59bd2ac2927 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "3uR1DRElzIYQ9TDK", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json index 71774c9e408..700148dc364 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 Pro 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "OWrIrHWU7qzlQyqs", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json index 07cef800d22..5a871b4730a 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 Pro 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "yMRcZG70S3Vgb3Qh", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json index e075b2758f5..2693520fa5e 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 Pro 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "N90MCWu17jFkXr2H", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json index 05245178fb8..992fc85d7ea 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 Pro 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jFWnCrXEW5bNSLzq", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.5.json index 5067e5586d3..b4e0c863674 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "rDgRcrDrPwvYwXcG", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.6.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.6.json index dad9ba76277..d0c557248c3 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.6.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.6.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality Ender5Pro (2019) 0.6", "inherits": "fdm_process_creality_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "X8qxYqqSFZnxd19W", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.8.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.8.json index 3c0d4495d43..c55b785ef3c 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.8.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.8.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality Ender5Pro (2019) 0.8", "inherits": "fdm_process_creality_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "TG4mn27pdWiYkLcE", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 1.0.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 1.0.json index 573a583e577..2caba2b00c9 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 1.0.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 1.0.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality Ender5Pro (2019) 1.0", "inherits": "fdm_process_creality_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "MQ2804jOSZWXAebc", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Hi 0.4 nozzle.json index a47ef553a54..a416d5e0826 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Hi 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Hi 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "XLp864DPRIWcjHvv", "name": "0.28mm SuperDraft @Creality Hi 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 0.4 nozzle.json index 9201f90e5d0..5686279f27d 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ELCUvdTCSg4N4HVC", "name": "0.28mm SuperDraft @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle.json index b1a8aa4ed0d..3b2f7e5cc12 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "lFZeFNWUsNRW3bvN", "name": "0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle.json index bcd5f52e3e4..39760a5c12a 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KO1MgETYTo42CfhQ", "name": "0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle.json index 840f9c37d15..e0538e6868d 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ruhDJCxvTN1nB60Z", "name": "0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.2mm Standard @Creality Ender-5 Max 0.4 nozzle.json b/resources/profiles/Creality/process/0.2mm Standard @Creality Ender-5 Max 0.4 nozzle.json index 89d578685fb..b3499fa4064 100644 --- a/resources/profiles/Creality/process/0.2mm Standard @Creality Ender-5 Max 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.2mm Standard @Creality Ender-5 Max 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "bG25lTbxHzhcGGQg", "name": "0.2mm Standard @Creality Ender-5 Max 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle.json b/resources/profiles/Creality/process/0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle.json index a488452fd37..248cfee8709 100644 --- a/resources/profiles/Creality/process/0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "7i9DCEZHvxgrYciY", "name": "0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality Ender-5 Max 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender-5 Max 0.6 nozzle.json index 2abac933aa8..14950f486e2 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality Ender-5 Max 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender-5 Max 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "eoPcs8fDihwCYFUB", "name": "0.30mm Standard @Creality Ender-5 Max 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3 0.6 nozzle.json index e905f5722e7..92a4a8fc489 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "KZjGEI0aqppw5c55", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3Plus 0.6 nozzle.json index 9e965bb7fd3..f1f3d5ce1a8 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "MX5VSmoPcOiBESP3", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality Hi 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality Hi 0.6 nozzle.json index 5a0b1e32e6b..a0bce0af8ab 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality Hi 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality Hi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality Hi", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lr1fzkgfsPpuA0Zf", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K1 (0.6 nozzle).json b/resources/profiles/Creality/process/0.30mm Standard @Creality K1 (0.6 nozzle).json index 719cf90ac95..1259ac5186a 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality K1 (0.6 nozzle).json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality K1 (0.6 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VtGpA1x62eB3getK", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K1 SE 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality K1 SE 0.6 nozzle.json index 5647b5c1b2d..81e54598e3e 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality K1 SE 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K1 SE 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "qd4AsuXVsp5pvPg4", "name": "0.30mm Standard @Creality K1 SE 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K1C 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality K1C 0.6 nozzle.json index be3ee03041f..71ecb52e77c 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality K1C 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality K1C", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ed8ZesknG151hgZX", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K1Max (0.6 nozzle).json b/resources/profiles/Creality/process/0.30mm Standard @Creality K1Max (0.6 nozzle).json index d1172286078..db9e4b1539e 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality K1Max (0.6 nozzle).json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K1Max (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality K1Max (0.6 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "uVKIDPK3qutnmyAh", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 0.6 nozzle.json index f4a7b68a7bf..71facd89ff7 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "nRmO47B1VhqIi2KU", "name": "0.30mm Standard @Creality K2 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Plus 0.6 nozzle.json index b0e5b3edbb6..216d964e6ea 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality K2 Plus 0.6 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TsIizwNZCBnNgi40", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Pro 0.6 nozzle.json index 9687b3d3d41..2bf82bc989f 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality K2 Pro 0.6 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BUhyANei4GEhKLTW", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality SPARKX i7 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality SPARKX i7 0.6 nozzle.json index 1b409fd7331..4da92d37324 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality SPARKX i7 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality SPARKX i7 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "obWYPAVrLuKr93Xe", "name": "0.30mm Standard @Creality SPARKX i7 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.30mm Strength @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Strength @Creality K2 Plus 0.6 nozzle.json index df426cfb27d..c9a7069a2a7 100644 --- a/resources/profiles/Creality/process/0.30mm Strength @Creality K2 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Strength @Creality K2 Plus 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "h9vwxtNQGvgHVldi", "name": "0.30mm Strength @Creality K2 Plus 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.32mm Chunky @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.32mm Chunky @Creality CR-6 0.6.json index 071dd4971ab..b7eccb8181b 100644 --- a/resources/profiles/Creality/process/0.32mm Chunky @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.32mm Chunky @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.32mm Chunky @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "i2NGg5j1cOMUg3dV", "instantiation": "true", "initial_layer_line_width": "0.6", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1 (0.8 nozzle).json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1 (0.8 nozzle).json index c776855ea8a..24fedd0965e 100644 --- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1 (0.8 nozzle).json +++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Creality K1 (0.8 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "Rc7DUtP8slk0zORl", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1C 0.8 nozzle.json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1C 0.8 nozzle.json index e29ddb6224a..2823947840f 100644 --- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1C 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Creality K1C", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "8Yz1tYKgOhlRhEFw", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1Max (0.8 nozzle).json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1Max (0.8 nozzle).json index 8d71d28d23b..40f87281ded 100644 --- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1Max (0.8 nozzle).json +++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1Max (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Creality K1Max (0.8 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "yDUagPaIFkVkQ7aL", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 0.8 nozzle.json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 0.8 nozzle.json index c83260e5fb7..e376b9dfe3d 100644 --- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Creality K2 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "rILba4gO1UHpLOvR", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Plus 0.8 nozzle.json index b96c9fb773a..ca585164109 100644 --- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Plus 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Plus 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "wUXKe2HJBnrZhwCJ", "name": "0.32mm Optimal @Creality K2 Plus 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Pro 0.8 nozzle.json index b014c7caba4..0308bb49f6a 100644 --- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Creality K2 Pro 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "PuP3yqQ2A2lyV3Yj", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.32mm Standard @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.32mm Standard @Creality CR-6 0.8.json index 9a168fbae2e..acc5ad17992 100644 --- a/resources/profiles/Creality/process/0.32mm Standard @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.32mm Standard @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CIUMFumfUJFKdvX5", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.5.json index f4d2d8c7755..469ed08efee 100644 --- a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.36mm Chunky @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "9AtwZLm4o2axDjSS", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.6.json b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.6.json index c3caeaa86ce..c8428476c1d 100644 --- a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.6.json +++ b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.6.json @@ -3,7 +3,7 @@ "name": "0.36mm Chunky @Creality Ender5Pro (2019) 0.6", "inherits": "fdm_process_creality_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "6peLlnuQw6zXrrxU", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.8.json b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.8.json index 06db3a9f690..db5b10390ab 100644 --- a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.8.json +++ b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.8.json @@ -3,7 +3,7 @@ "name": "0.36mm Chunky @Creality Ender5Pro (2019) 0.8", "inherits": "fdm_process_creality_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "CoomSxI6M1Rova9H", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 1.0.json b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 1.0.json index 2c57376dec5..f007be85a15 100644 --- a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 1.0.json +++ b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 1.0.json @@ -3,7 +3,7 @@ "name": "0.36mm Chunky @Creality Ender5Pro (2019) 1.0", "inherits": "fdm_process_creality_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "qtcNXGin91FacpuI", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3 0.6 nozzle.json index ac233e0ed93..f12fb8b0163 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "5L1oQB22HBdoaocC", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3Plus 0.6 nozzle.json index 31da21a8e8d..7a1a3c401d0 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "r3dweAtprgzF0jON", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality Hi 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality Hi 0.6 nozzle.json index 9c298e294c9..0ada8964306 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality Hi 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality Hi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality Hi", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "lD86ZxmhqaFLOXs7", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K1 (0.6 nozzle).json b/resources/profiles/Creality/process/0.36mm Draft @Creality K1 (0.6 nozzle).json index 19e33f70b62..d3de4eb889d 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality K1 (0.6 nozzle).json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality K1 (0.6 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "XCDNFQBF7Kx54Z2Y", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K1C 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality K1C 0.6 nozzle.json index b50880bc357..86e132abb4b 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality K1C 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality K1C", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "3yO02rZelrUrGct2", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K1Max (0.6 nozzle).json b/resources/profiles/Creality/process/0.36mm Draft @Creality K1Max (0.6 nozzle).json index 2f15d8beb33..69d90fbef69 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality K1Max (0.6 nozzle).json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K1Max (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality K1Max (0.6 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "OzKdcW8QjYz9Ekfg", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 0.6 nozzle.json index daefc0b4cfe..da7ca48be38 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality K2 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "Zom4bHm3tVvrBUNT", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Plus 0.6 nozzle.json index 2048cb61578..8edd6e869f0 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Plus 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "psLMoG691hQ5PSrK", "name": "0.36mm Draft @Creality K2 Plus 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Pro 0.6 nozzle.json index f82d03a9109..955f1332ed4 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality K2 Pro 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "AspPZdlIrck9YRnK", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.36mm SuperChunky @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.36mm SuperChunky @Creality CR-6 0.6.json index 499ea87e280..d9308a459cd 100644 --- a/resources/profiles/Creality/process/0.36mm SuperChunky @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.36mm SuperChunky @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.36mm SuperChunky @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HjaKqX7JvptQVfBK", "instantiation": "true", "initial_layer_line_width": "0.6", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Creality/process/0.40mm Draft @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.40mm Draft @Creality CR-6 0.8.json index b2e2e42c184..e46d858e3ec 100644 --- a/resources/profiles/Creality/process/0.40mm Draft @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.40mm Draft @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.40mm Draft @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sVOrg0HAqRIDG2w2", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.4", diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality Ender-5 Max 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality Ender-5 Max 0.8 nozzle.json index 3d128646b0e..15943f5c2c6 100644 --- a/resources/profiles/Creality/process/0.40mm Standard @Creality Ender-5 Max 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.40mm Standard @Creality Ender-5 Max 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "7HQvsdltfdC8N5Hw", "name": "0.40mm Standard @Creality Ender-5 Max 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality Hi 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality Hi 0.8 nozzle.json index 343567c396a..aa0efb8f49c 100644 --- a/resources/profiles/Creality/process/0.40mm Standard @Creality Hi 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.40mm Standard @Creality Hi 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "1xCIS6DBlkVcCLSf", "name": "0.40mm Standard @Creality Hi 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K1 (0.8 nozzle).json b/resources/profiles/Creality/process/0.40mm Standard @Creality K1 (0.8 nozzle).json index 0f7db77d2d9..5f61b218bce 100644 --- a/resources/profiles/Creality/process/0.40mm Standard @Creality K1 (0.8 nozzle).json +++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Creality K1 (0.8 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "x9a89wcgTxjzVjZz", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K1C 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality K1C 0.8 nozzle.json index 6b419734c23..d5d5d62cdae 100644 --- a/resources/profiles/Creality/process/0.40mm Standard @Creality K1C 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Creality K1C", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "caYmVSsFmtESzLNF", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K1Max (0.8 nozzle).json b/resources/profiles/Creality/process/0.40mm Standard @Creality K1Max (0.8 nozzle).json index 95a72213be9..793c6aa43e8 100644 --- a/resources/profiles/Creality/process/0.40mm Standard @Creality K1Max (0.8 nozzle).json +++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K1Max (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Creality K1Max (0.8 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "RGMrzd8TBanSP6xu", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 0.8 nozzle.json index 57415361fa4..b084f1cf473 100644 --- a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "mvjFUBLuSrZ1fm1e", "name": "0.40mm Standard @Creality K2 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Plus 0.8 nozzle.json index 1600399ef2d..3baf52acf5d 100644 --- a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Plus 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Creality K2 Plus 0.8 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BYecvyH9OxIQptiV", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Pro 0.8 nozzle.json index b32c6e22055..df23b1f46c5 100644 --- a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Creality K2 Pro 0.8 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "KGJHKj8Ay4MvxoQo", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality SPARKX i7 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality SPARKX i7 0.8 nozzle.json index 6f874eaa6ee..13c3d5986f1 100644 --- a/resources/profiles/Creality/process/0.40mm Standard @Creality SPARKX i7 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.40mm Standard @Creality SPARKX i7 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "auHhZ5g7PonLi942", "name": "0.40mm Standard @Creality SPARKX i7 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.40mm Strength @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Strength @Creality K2 Plus 0.8 nozzle.json index 7f8f6557870..c164cd88d41 100644 --- a/resources/profiles/Creality/process/0.40mm Strength @Creality K2 Plus 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.40mm Strength @Creality K2 Plus 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "DPs3K2D8t8dGscqK", "name": "0.40mm Strength @Creality K2 Plus 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 0.6 nozzle.json b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 0.6 nozzle.json index 50457c1e244..d732c7015ce 100644 --- a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm SuperDraft @Creality K2 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "YKODZ4gYFKzhqOvi", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle.json index dd00eadd968..d3076515c9a 100644 --- a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "kaJFaxUX6gSqC3Y7", "name": "0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle.json index d9f0959b3c3..78bd43a0d97 100644 --- a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "u3WhUBaMsyl3SoDf", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.44mm SuperExtraChunky @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.44mm SuperExtraChunky @Creality CR-6 0.6.json index 72a7e5f7d63..1dbda2a4953 100644 --- a/resources/profiles/Creality/process/0.44mm SuperExtraChunky @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.44mm SuperExtraChunky @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.44mm SuperExtraChunky @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jiQuYkeeEAwzjGG3", "instantiation": "true", "initial_layer_line_width": "0.6", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Creality/process/0.48mm Chunky @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.48mm Chunky @Creality CR-6 0.8.json index 6818f20a6e0..b2efb112b85 100644 --- a/resources/profiles/Creality/process/0.48mm Chunky @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.48mm Chunky @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.48mm Chunky @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "NmfLWGvRJPpKu5u7", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.48", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.48mm Draft @Creality CR-6 0.8.json index d5472ace502..a19aca4ffa9 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "8jeYHcPaST4fPfdS", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.48", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K1 (0.8 nozzle).json b/resources/profiles/Creality/process/0.48mm Draft @Creality K1 (0.8 nozzle).json index 10f44934374..3fa885318e1 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K1 (0.8 nozzle).json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Creality K1 (0.8 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "VMUL5DemqZSKkMEJ", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json b/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json index e5a5b03fbd3..1ef9c0d23f3 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Creality K1C", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "qaiff3f8gSQ1GVj1", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K1Max (0.8 nozzle).json b/resources/profiles/Creality/process/0.48mm Draft @Creality K1Max (0.8 nozzle).json index 4f01dc02846..6041d4c030f 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K1Max (0.8 nozzle).json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K1Max (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Creality K1Max (0.8 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "dIWKOSX80OJ6ixTT", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 0.8 nozzle.json b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 0.8 nozzle.json index e756cf56620..b3508aab5cc 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Creality K2 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "FNzDj9zM5RpSsl5G", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Plus 0.8 nozzle.json index 51edc7fdc8d..97da7fe92e8 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Plus 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Plus 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "s3FIq2ua0ODDqxtm", "name": "0.48mm Draft @Creality K2 Plus 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Pro 0.8 nozzle.json index fabf7268862..0cd49b9a894 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Creality K2 Pro 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "a0WvgiAOiZNdDH5v", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.56mm SuperChunky @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.56mm SuperChunky @Creality CR-6 0.8.json index 556e56374be..665d997917f 100644 --- a/resources/profiles/Creality/process/0.56mm SuperChunky @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.56mm SuperChunky @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.56mm SuperChunky @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UVGdubKQHMSFdmZC", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.4", diff --git a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 0.8 nozzle.json b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 0.8 nozzle.json index 639614fe30e..5f972131876 100644 --- a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm SuperDraft @Creality K2 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "5gHJtDqiuLKojo0s", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle.json index 02500bd723b..8113cadf74d 100644 --- a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "OUVOMZEwJDilvXiO", "name": "0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle.json index 26e7adae74e..3b12ac6944d 100644 --- a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "4jnNAHfqD3BPN5bO", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Cubicon.json b/resources/profiles/Cubicon.json index 906d06fea44..9f2100a187c 100644 --- a/resources/profiles/Cubicon.json +++ b/resources/profiles/Cubicon.json @@ -1,6 +1,6 @@ { "name": "Cubicon", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Cubicon configurations", "machine_model_list": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-I 0.4 nozzle.json index d1bf840e782..ca0143d65cf 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon ABS @base", + "setting_id": "VJEyK87ZYvHmamB9", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Mini 0.4 nozzle.json index fc7c587a792..72b2c51e50c 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon ABS @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon ABS @base", "from": "system", + "setting_id": "Kz41mb2M9xLbEJ97", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Plus 0.4 nozzle.json index 83cba085337..38a00a46241 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon ABS @base", + "setting_id": "A5FQdwh0Xo7aTRpq", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS @base.json b/resources/profiles/Cubicon/filament/Cubicon ABS @base.json index 94959c5e2c4..55fbd40ee44 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS @base", "inherits": "fdm_filament_abs", + "setting_id": "aZRVIlDze62Bbw81", "filament_id": "P510cfb0", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-I 0.4 nozzle.json index 02600336749..897f3cceff8 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS-A100 @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon ABS-A100 @base", + "setting_id": "OfiOryklf7FDVCz8", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Mini 0.4 nozzle.json index 251c62da89d..f0d3715d321 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon ABS-A100 @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon ABS-A100 @base", "from": "system", + "setting_id": "pIyU9uXQ5V3hsg5F", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Plus 0.4 nozzle.json index ceb602a4f17..c6965435a0a 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS-A100 @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon ABS-A100 @base", + "setting_id": "xhYh9x1vescinfbF", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @base.json b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @base.json index 9a4d63093f3..dddc147ff2f 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS-A100 @base", "inherits": "Cubicon ABS @base", + "setting_id": "vGIT4KZvqojIh2up", "filament_id": "P510cfb1", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-I 0.4 nozzle.json index 0867c3f8182..7596fa618a6 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABSk @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon ABSk @base", + "setting_id": "TXcodZkab4fofnEn", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Mini 0.4 nozzle.json index c29ccfcd948..63c827c034c 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon ABSk @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon ABSk @base", "from": "system", + "setting_id": "CsthNnKn8WlBbkP4", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Plus 0.4 nozzle.json index 1518474928d..586982ea51d 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABSk @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon ABSk @base", + "setting_id": "UVitMFMxvdf34qZw", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABSk @base.json b/resources/profiles/Cubicon/filament/Cubicon ABSk @base.json index 5d86d9a1a49..e1546d3bae1 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABSk @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABSk @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABSk @base", "inherits": "Cubicon ABS @base", + "setting_id": "UbOUO0K3Y2iRPBtf", "filament_id": "P510cfb2", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-I 0.4 nozzle.json index 9eba287e998..c8af313f4f4 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PA-CF @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PA-CF @base", + "setting_id": "nupuIJggdc1EKDqG", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Mini 0.4 nozzle.json index be8baf22901..40aa29b5777 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PA-CF @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PA-CF @base", "from": "system", + "setting_id": "NPjuy4deP6Ly7u9s", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Plus 0.4 nozzle.json index c7a5e501fa7..6e307bed783 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PA-CF @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PA-CF @base", + "setting_id": "ygB1Uf9Vbw9LJZc8", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PA-CF @base.json b/resources/profiles/Cubicon/filament/Cubicon PA-CF @base.json index 19893bff841..51c89949f6c 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PA-CF @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PA-CF @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PA-CF @base", "inherits": "fdm_filament_pa", + "setting_id": "55cJDyCoEudfOePY", "filament_id": "P510cfd0", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-I 0.4 nozzle.json index 633a95b27a0..b83d690fffd 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PC @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PC @base", + "setting_id": "c0sUPS0SRYUNjEpB", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Mini 0.4 nozzle.json index 010426e159f..868ec82e34f 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PC @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PC @base", "from": "system", + "setting_id": "XGXjHwuHUjtAJGl1", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Plus 0.4 nozzle.json index 5688fd00fe9..07a2308addc 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PC @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PC @base", + "setting_id": "jbYKOK1A0Oxm9t0f", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PC @base.json b/resources/profiles/Cubicon/filament/Cubicon PC @base.json index f6208845db5..de42989e84e 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PC @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PC @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PC @base", "inherits": "fdm_filament_pc", + "setting_id": "Mzg6jfwb2nqfGkdV", "filament_id": "P510cfd0", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-I 0.4 nozzle.json index b69f044a4bb..62a4f58c538 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PETG @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PETG @base", + "setting_id": "dsX01tCkd2Usk104", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Mini 0.4 nozzle.json index f235fdae310..9c1108a73f6 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PETG @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PETG @base", "from": "system", + "setting_id": "2hYoCR5qUXCWIAxZ", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Plus 0.4 nozzle.json index 653f28d956c..14a23cc7281 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PETG @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PETG @base", + "setting_id": "5pfiRdyNz9dvT4Q6", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PETG @base.json b/resources/profiles/Cubicon/filament/Cubicon PETG @base.json index d542c07ac73..2242ba36ca3 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PETG @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PETG @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PETG @base", "inherits": "fdm_filament_pet", + "setting_id": "bGfz4phwIdqSz0Hx", "filament_id": "P510cfc0", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-I 0.4 nozzle.json index 46cdf9c3b2a..bca40b28143 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-I 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PLA @base", "from": "system", + "setting_id": "xXJgHAeNf1JdCitr", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Mini 0.4 nozzle.json index a20941edc4d..54ffbd694ca 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PLA @base", "from": "system", + "setting_id": "o2BQL6OKtxDmBkWV", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Plus 0.4 nozzle.json index 701d9436387..04cac6ab7d1 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PLA @base", "from": "system", + "setting_id": "WkZrzDlGvb25OtrF", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA @base.json b/resources/profiles/Cubicon/filament/Cubicon PLA @base.json index e0171ba8498..665ba58d590 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA @base.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA @base", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "ypwdJAu0NlEsWpf4", "filament_id": "P510cfa0", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-I 0.4 nozzle.json index aa8aa25907f..7442cf24909 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-I 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA+ @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PLA+ @base", "from": "system", + "setting_id": "fNR2Bw3e4TGcWhq0", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Mini 0.4 nozzle.json index ed368f52147..76a31d14c1d 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA+ @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PLA+ @base", "from": "system", + "setting_id": "wukhnaCJaOLUUdiU", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Plus 0.4 nozzle.json index 87a63d163b5..2f37996fe30 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA+ @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PLA+ @base", "from": "system", + "setting_id": "JVShu8DKQ3euGHec", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA+ @base.json b/resources/profiles/Cubicon/filament/Cubicon PLA+ @base.json index 6249d26ae44..cb916a9410f 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA+ @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA+ @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PLA+ @base", "inherits": "Cubicon PLA @base", + "setting_id": "ETnuhiOZRh1jxrVk", "filament_id": "P510cfa1", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-I 0.4 nozzle.json index 2542bab343e..10d2a2e6ae6 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-I 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLAi21 @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PLAi21 @base", "from": "system", + "setting_id": "vcLVF3cglagBfVAF", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Mini 0.4 nozzle.json index 10ddfff715a..73404c4729a 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLAi21 @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PLAi21 @base", "from": "system", + "setting_id": "3TbOucKB5TGk8sXG", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Plus 0.4 nozzle.json index 0520061f6c2..0769e1fa3d1 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLAi21 @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PLAi21 @base", "from": "system", + "setting_id": "Vm1oDASHoFUfDrzQ", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @base.json b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @base.json index 12248aab69d..831450deef3 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PLAi21 @base", "inherits": "Cubicon PLA @base", + "setting_id": "mnwC7ijXXV72lBOt", "filament_id": "P510cfa2", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/machine/Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/machine/Cubicon xCeler-I 0.4 nozzle.json index 84753633451..140b31986c1 100644 --- a/resources/profiles/Cubicon/machine/Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/machine/Cubicon xCeler-I 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon xCeler-I 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", + "setting_id": "Num5CMrrTDvWXQVQ", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Cubicon/machine/Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/machine/Cubicon xCeler-Mini 0.4 nozzle.json index 1bb60aa4bb8..451e4716d24 100644 --- a/resources/profiles/Cubicon/machine/Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/machine/Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon xCeler-Mini 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", + "setting_id": "rr7eQd0tw3utAK9f", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Cubicon/machine/Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/machine/Cubicon xCeler-Plus 0.4 nozzle.json index f2daeafb403..483c82be071 100644 --- a/resources/profiles/Cubicon/machine/Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/machine/Cubicon xCeler-Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon xCeler-Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", + "setting_id": "7HzIqD1n0ns79wV1", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-I 0.4 nozzle.json index b7a4a58b163..6ec66414f4e 100644 --- a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "cubicon default @Cubicon xCeler-I 0.4 nozzle", "inherits": "cubicon common @base", + "setting_id": "atkrxehaOoWETk2P", "instantiation": "true", "print_settings_id": "cubicon default @Cubicon xCeler-I 0.4 nozzle", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Mini 0.4 nozzle.json index fc67c0ddd8f..45357dae557 100644 --- a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Mini 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "cubicon default @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "cubicon common @base", + "setting_id": "M1SrvVfJvyiFUKDZ", "instantiation": "true", "print_settings_id": "cubicon default @Cubicon xCeler-Mini 0.4 nozzle", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Plus 0.4 nozzle.json index 8753060f497..3f87a73bd2e 100644 --- a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "cubicon default @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "cubicon common @base", + "setting_id": "SZJtXlK6E6XAKk1Z", "instantiation": "true", "print_settings_id": "cubicon default @Cubicon xCeler-Plus 0.4 nozzle", "compatible_printers": [ diff --git a/resources/profiles/Custom.json b/resources/profiles/Custom.json index 2f9eeefd348..a416f17db07 100644 --- a/resources/profiles/Custom.json +++ b/resources/profiles/Custom.json @@ -1,6 +1,6 @@ { "name": "Custom Printer", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "My configurations", "machine_model_list": [ diff --git a/resources/profiles/Custom/filament/Generic ABS @MyToolChanger.json b/resources/profiles/Custom/filament/Generic ABS @MyToolChanger.json index 20a7e251592..1683513dbd2 100644 --- a/resources/profiles/Custom/filament/Generic ABS @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic ABS @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic ABS @MyToolChanger", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFB99_MTC_0", + "setting_id": "h83PqSYsAi8yZyg0", "instantiation": "true", "filament_cooling_final_speed": [ "3.5" diff --git a/resources/profiles/Custom/filament/Generic ASA @MyToolChanger.json b/resources/profiles/Custom/filament/Generic ASA @MyToolChanger.json index 0831a730a34..5cc46deb7eb 100644 --- a/resources/profiles/Custom/filament/Generic ASA @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic ASA @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic ASA @MyToolChanger", "inherits": "Generic ASA @System", "from": "system", - "setting_id": "GFB98_MTC_0", + "setting_id": "WllFTKxFejz4prhD", "instantiation": "true", "filament_cooling_final_speed": [ "3.5" diff --git a/resources/profiles/Custom/filament/Generic PA @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PA @MyToolChanger.json index 2c39844b1cc..0c8918427d6 100644 --- a/resources/profiles/Custom/filament/Generic PA @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PA @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PA @MyToolChanger", "inherits": "Generic PA @System", "from": "system", - "setting_id": "GFN99_MTC_0", + "setting_id": "Lw6e7YMy0J5Flnjj", "instantiation": "true", "filament_cooling_final_speed": [ "3.5" diff --git a/resources/profiles/Custom/filament/Generic PA-CF @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PA-CF @MyToolChanger.json index 12ba0260bd7..a7d86885efc 100644 --- a/resources/profiles/Custom/filament/Generic PA-CF @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PA-CF @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PA-CF @MyToolChanger", "inherits": "Generic PA-CF @System", "from": "system", - "setting_id": "GFN98_MTC_0", + "setting_id": "0NPQJ9aRrfjAqLeX", "instantiation": "true", "filament_cooling_final_speed": [ "3.5" diff --git a/resources/profiles/Custom/filament/Generic PC @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PC @MyToolChanger.json index c6111c31dc7..d80b197394a 100644 --- a/resources/profiles/Custom/filament/Generic PC @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PC @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PC @MyToolChanger", "inherits": "Generic PC @System", "from": "system", - "setting_id": "GFC99_MTC_0", + "setting_id": "HMOa2jbj19Xjipt5", "filament_id": "GFC99", "instantiation": "true", "filament_cooling_final_speed": [ diff --git a/resources/profiles/Custom/filament/Generic PETG @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PETG @MyToolChanger.json index fcb7b399324..693551c428e 100644 --- a/resources/profiles/Custom/filament/Generic PETG @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PETG @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PETG @MyToolChanger", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFG99_MTC_0", + "setting_id": "4qShNrl9EWAVBfeG", "filament_id": "GFG99", "instantiation": "true", "filament_cooling_final_speed": [ diff --git a/resources/profiles/Custom/filament/Generic PLA @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PLA @MyToolChanger.json index 36b6c953e64..cf1db6e225a 100644 --- a/resources/profiles/Custom/filament/Generic PLA @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PLA @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PLA @MyToolChanger", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFL99_MTC_0", + "setting_id": "WbAYFZdqFwEZnNAX", "filament_id": "GFL99", "instantiation": "true", "filament_cooling_final_speed": [ diff --git a/resources/profiles/Custom/filament/Generic PLA-CF @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PLA-CF @MyToolChanger.json index 77b7d53eb2c..6ae729d6227 100644 --- a/resources/profiles/Custom/filament/Generic PLA-CF @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PLA-CF @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PLA-CF @MyToolChanger", "inherits": "Generic PLA-CF @System", "from": "system", - "setting_id": "GFL98_MTC_0", + "setting_id": "53UFt3Q63NB0ztlP", "filament_id": "GFL98", "instantiation": "true", "filament_cooling_final_speed": [ diff --git a/resources/profiles/Custom/filament/Generic PVA @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PVA @MyToolChanger.json index e0204203117..ccb6d16c73a 100644 --- a/resources/profiles/Custom/filament/Generic PVA @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PVA @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PVA @MyToolChanger", "inherits": "Generic PVA @System", "from": "system", - "setting_id": "GFS99_MTC_0", + "setting_id": "dyOUyXNOKP1VmSal", "filament_id": "GFS99", "instantiation": "true", "filament_cooling_final_speed": [ diff --git a/resources/profiles/Custom/filament/Generic TPU @MyToolChanger.json b/resources/profiles/Custom/filament/Generic TPU @MyToolChanger.json index 60766cfe910..c88ee2da7d1 100644 --- a/resources/profiles/Custom/filament/Generic TPU @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic TPU @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic TPU @MyToolChanger", "inherits": "Generic TPU @System", "from": "system", - "setting_id": "GFU99_MTC_0", + "setting_id": "H45dfn4BGdLAx9nN", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Custom/machine/MyKlipper 0.2 nozzle.json b/resources/profiles/Custom/machine/MyKlipper 0.2 nozzle.json index 7482023bfc4..c7686998c07 100644 --- a/resources/profiles/Custom/machine/MyKlipper 0.2 nozzle.json +++ b/resources/profiles/Custom/machine/MyKlipper 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "MyKlipper 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "FONwo6mjzIUC1Jfw", "instantiation": "true", "printer_model": "Generic Klipper Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyKlipper 0.4 nozzle.json b/resources/profiles/Custom/machine/MyKlipper 0.4 nozzle.json index 69e9278b7b4..6c5bd3fc834 100644 --- a/resources/profiles/Custom/machine/MyKlipper 0.4 nozzle.json +++ b/resources/profiles/Custom/machine/MyKlipper 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MyKlipper 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "h7lWobw9IAl6rIFf", "instantiation": "true", "printer_model": "Generic Klipper Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyKlipper 0.6 nozzle.json b/resources/profiles/Custom/machine/MyKlipper 0.6 nozzle.json index a1ead42f839..35a5ca033fd 100644 --- a/resources/profiles/Custom/machine/MyKlipper 0.6 nozzle.json +++ b/resources/profiles/Custom/machine/MyKlipper 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "MyKlipper 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "ealoRWEBVYdKQwY4", "instantiation": "true", "printer_model": "Generic Klipper Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyKlipper 0.8 nozzle.json b/resources/profiles/Custom/machine/MyKlipper 0.8 nozzle.json index 8535e01ad2d..1dd4e563cf1 100644 --- a/resources/profiles/Custom/machine/MyKlipper 0.8 nozzle.json +++ b/resources/profiles/Custom/machine/MyKlipper 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "MyKlipper 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "ameNjll5Z5Ptmvko", "instantiation": "true", "printer_model": "Generic Klipper Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyMarlin 0.4 nozzle.json b/resources/profiles/Custom/machine/MyMarlin 0.4 nozzle.json index c6e85bfbe46..a8cff74ece2 100644 --- a/resources/profiles/Custom/machine/MyMarlin 0.4 nozzle.json +++ b/resources/profiles/Custom/machine/MyMarlin 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MyMarlin 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "80333z8YjBojDweT", "instantiation": "true", "printer_model": "Generic Marlin Printer", "gcode_flavor": "marlin", diff --git a/resources/profiles/Custom/machine/MyRRF 0.4 nozzle.json b/resources/profiles/Custom/machine/MyRRF 0.4 nozzle.json index 41e31fa6d45..492f6966975 100644 --- a/resources/profiles/Custom/machine/MyRRF 0.4 nozzle.json +++ b/resources/profiles/Custom/machine/MyRRF 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MyRRF 0.4 nozzle", "inherits": "fdm_rrf_common", "from": "system", - "setting_id": "GM003", + "setting_id": "eweNs9Rgfgftu6Nw", "instantiation": "true", "printer_model": "Generic RRF Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyRepetier 0.4 nozzle.json b/resources/profiles/Custom/machine/MyRepetier 0.4 nozzle.json index c75ed0fd71e..0c06ed2dbef 100644 --- a/resources/profiles/Custom/machine/MyRepetier 0.4 nozzle.json +++ b/resources/profiles/Custom/machine/MyRepetier 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MyRepetier 0.4 nozzle", "inherits": "fdm_repetier_common", "from": "system", - "setting_id": "GM001", + "setting_id": "DQo4iCTagLKPE8Kv", "instantiation": "true", "printer_model": "Generic Repetier Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyToolChanger 0.2 nozzle.json b/resources/profiles/Custom/machine/MyToolChanger 0.2 nozzle.json index 0be59d35979..0e7d56e99a2 100644 --- a/resources/profiles/Custom/machine/MyToolChanger 0.2 nozzle.json +++ b/resources/profiles/Custom/machine/MyToolChanger 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "MyToolChanger 0.2 nozzle", "inherits": "fdm_toolchanger_common", "from": "system", - "setting_id": "GM_CUSTOM_001", + "setting_id": "BFnMQPzSH6GHG60z", "instantiation": "true", "printer_model": "Generic ToolChanger Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyToolChanger 0.4 nozzle.json b/resources/profiles/Custom/machine/MyToolChanger 0.4 nozzle.json index a36546519b5..64a50ed44ed 100644 --- a/resources/profiles/Custom/machine/MyToolChanger 0.4 nozzle.json +++ b/resources/profiles/Custom/machine/MyToolChanger 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MyToolChanger 0.4 nozzle", "inherits": "fdm_toolchanger_common", "from": "system", - "setting_id": "GM_CUSTOM_002", + "setting_id": "tJ98aJdTqDwMfyZd", "instantiation": "true", "printer_model": "Generic ToolChanger Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyToolChanger 0.6 nozzle.json b/resources/profiles/Custom/machine/MyToolChanger 0.6 nozzle.json index ccbf8df842f..fc615ac3d97 100644 --- a/resources/profiles/Custom/machine/MyToolChanger 0.6 nozzle.json +++ b/resources/profiles/Custom/machine/MyToolChanger 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "MyToolChanger 0.6 nozzle", "inherits": "fdm_toolchanger_common", "from": "system", - "setting_id": "GM_CUSTOM_003", + "setting_id": "rhZgOdaU0sJu9aYF", "instantiation": "true", "printer_model": "Generic ToolChanger Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyToolChanger 0.8 nozzle.json b/resources/profiles/Custom/machine/MyToolChanger 0.8 nozzle.json index e9619bc815d..c019a13181f 100644 --- a/resources/profiles/Custom/machine/MyToolChanger 0.8 nozzle.json +++ b/resources/profiles/Custom/machine/MyToolChanger 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "MyToolChanger 0.8 nozzle", "inherits": "fdm_toolchanger_common", "from": "system", - "setting_id": "GM_CUSTOM_004", + "setting_id": "2rsBSbB6oAgBhyy0", "instantiation": "true", "printer_model": "Generic ToolChanger Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/process/0.08mm Extra Fine @MyKlipper.json b/resources/profiles/Custom/process/0.08mm Extra Fine @MyKlipper.json index c588c2fa17a..4cebf36eaa0 100644 --- a/resources/profiles/Custom/process/0.08mm Extra Fine @MyKlipper.json +++ b/resources/profiles/Custom/process/0.08mm Extra Fine @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qC4SXEgZNVB9eWNQ", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Custom/process/0.08mm Extra Fine @MyMarlin.json b/resources/profiles/Custom/process/0.08mm Extra Fine @MyMarlin.json index 52d9ecda126..70c78226a5c 100644 --- a/resources/profiles/Custom/process/0.08mm Extra Fine @MyMarlin.json +++ b/resources/profiles/Custom/process/0.08mm Extra Fine @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "F0QIJviBIYDJjJe2", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Custom/process/0.08mm Extra Fine @MyRRF.json b/resources/profiles/Custom/process/0.08mm Extra Fine @MyRRF.json index bebebc0183d..1c5392cae6d 100644 --- a/resources/profiles/Custom/process/0.08mm Extra Fine @MyRRF.json +++ b/resources/profiles/Custom/process/0.08mm Extra Fine @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zhi1tw9y210xSTmh", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Custom/process/0.08mm Extra Fine @MyToolChanger.json b/resources/profiles/Custom/process/0.08mm Extra Fine @MyToolChanger.json index 50ad3e7adb5..17f9df6cac9 100644 --- a/resources/profiles/Custom/process/0.08mm Extra Fine @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.08mm Extra Fine @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Xt1tNqoffQCMWaDF", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Custom/process/0.12mm Fine @MyKlipper.json b/resources/profiles/Custom/process/0.12mm Fine @MyKlipper.json index 3694e58e4eb..e275ffeb1a4 100644 --- a/resources/profiles/Custom/process/0.12mm Fine @MyKlipper.json +++ b/resources/profiles/Custom/process/0.12mm Fine @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "guUxwo1j4TPACM0Z", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.12mm Fine @MyMarlin.json b/resources/profiles/Custom/process/0.12mm Fine @MyMarlin.json index 9a3f89861f2..64916a585a1 100644 --- a/resources/profiles/Custom/process/0.12mm Fine @MyMarlin.json +++ b/resources/profiles/Custom/process/0.12mm Fine @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "p7cD7BCjLQtah9z8", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.12mm Fine @MyRRF.json b/resources/profiles/Custom/process/0.12mm Fine @MyRRF.json index 6a3e18048d2..2d30168abf9 100644 --- a/resources/profiles/Custom/process/0.12mm Fine @MyRRF.json +++ b/resources/profiles/Custom/process/0.12mm Fine @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Zj9uGAyf8yYuHwRQ", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.12mm Fine @MyToolChanger.json b/resources/profiles/Custom/process/0.12mm Fine @MyToolChanger.json index 65a654ae27d..5e3e23f000c 100644 --- a/resources/profiles/Custom/process/0.12mm Fine @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.12mm Fine @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "RjRwftLktZM6uz3u", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.15mm Optimal @MyKlipper.json b/resources/profiles/Custom/process/0.15mm Optimal @MyKlipper.json index 08cdbad871c..9036023f454 100644 --- a/resources/profiles/Custom/process/0.15mm Optimal @MyKlipper.json +++ b/resources/profiles/Custom/process/0.15mm Optimal @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CiHtbxYtXnT5bdRM", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.15mm Optimal @MyMarlin.json b/resources/profiles/Custom/process/0.15mm Optimal @MyMarlin.json index b58b9a06aac..13236b3640d 100644 --- a/resources/profiles/Custom/process/0.15mm Optimal @MyMarlin.json +++ b/resources/profiles/Custom/process/0.15mm Optimal @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gkXHi7QQxtxIy9V9", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.15mm Optimal @MyRRF.json b/resources/profiles/Custom/process/0.15mm Optimal @MyRRF.json index 4435b0d115d..dd2d25490ec 100644 --- a/resources/profiles/Custom/process/0.15mm Optimal @MyRRF.json +++ b/resources/profiles/Custom/process/0.15mm Optimal @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TcZOJuBSFK5kB1H8", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.15mm Optimal @MyToolChanger.json b/resources/profiles/Custom/process/0.15mm Optimal @MyToolChanger.json index 2041229da69..67c34009a84 100644 --- a/resources/profiles/Custom/process/0.15mm Optimal @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.15mm Optimal @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kZG2HcARq8ZFzUk9", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.16mm Optimal @MyKlipper.json b/resources/profiles/Custom/process/0.16mm Optimal @MyKlipper.json index ed3b011d2bc..1a1d9a60b10 100644 --- a/resources/profiles/Custom/process/0.16mm Optimal @MyKlipper.json +++ b/resources/profiles/Custom/process/0.16mm Optimal @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qMjBH8WRooCfhtTP", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.16mm Optimal @MyToolChanger.json b/resources/profiles/Custom/process/0.16mm Optimal @MyToolChanger.json index c03f37e74df..fd035549f6a 100644 --- a/resources/profiles/Custom/process/0.16mm Optimal @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.16mm Optimal @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "99y1EZwxDuKQwzv3", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.20mm Standard @MyKlipper.json b/resources/profiles/Custom/process/0.20mm Standard @MyKlipper.json index 653745ce1fc..bb7c196823b 100644 --- a/resources/profiles/Custom/process/0.20mm Standard @MyKlipper.json +++ b/resources/profiles/Custom/process/0.20mm Standard @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UkxcnbdZ2LeRvO4x", "instantiation": "true", "layer_height": "0.2", "compatible_printers": [ diff --git a/resources/profiles/Custom/process/0.20mm Standard @MyMarlin.json b/resources/profiles/Custom/process/0.20mm Standard @MyMarlin.json index 3b2e02cb21d..9ea731097b0 100644 --- a/resources/profiles/Custom/process/0.20mm Standard @MyMarlin.json +++ b/resources/profiles/Custom/process/0.20mm Standard @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zZztMlYzzLA0KiTz", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Custom/process/0.20mm Standard @MyRRF.json b/resources/profiles/Custom/process/0.20mm Standard @MyRRF.json index 96ae4ad4356..4c17f181347 100644 --- a/resources/profiles/Custom/process/0.20mm Standard @MyRRF.json +++ b/resources/profiles/Custom/process/0.20mm Standard @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UFkBAddrcwXsuoVt", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Custom/process/0.20mm Standard @MyRepetier.json b/resources/profiles/Custom/process/0.20mm Standard @MyRepetier.json index bdffd3b6478..63023f1cb50 100644 --- a/resources/profiles/Custom/process/0.20mm Standard @MyRepetier.json +++ b/resources/profiles/Custom/process/0.20mm Standard @MyRepetier.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MyRepetier", "inherits": "fdm_process_repetier_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ny9kvyQ0UjkVAUiY", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Custom/process/0.20mm Standard @MyToolChanger.json b/resources/profiles/Custom/process/0.20mm Standard @MyToolChanger.json index 4f718764f74..53dc9dc6c71 100644 --- a/resources/profiles/Custom/process/0.20mm Standard @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.20mm Standard @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MHpNmkShui6fTwVu", "instantiation": "true", "layer_height": "0.2", "compatible_printers": [ diff --git a/resources/profiles/Custom/process/0.24mm Draft @MyKlipper.json b/resources/profiles/Custom/process/0.24mm Draft @MyKlipper.json index 3c4585af420..f54829e4618 100644 --- a/resources/profiles/Custom/process/0.24mm Draft @MyKlipper.json +++ b/resources/profiles/Custom/process/0.24mm Draft @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "E5SAhAOy240BOYOB", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/Custom/process/0.24mm Draft @MyMarlin.json b/resources/profiles/Custom/process/0.24mm Draft @MyMarlin.json index 9b78cc75202..2f75b3af696 100644 --- a/resources/profiles/Custom/process/0.24mm Draft @MyMarlin.json +++ b/resources/profiles/Custom/process/0.24mm Draft @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HjdvHJl5dBqwwOiq", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Custom/process/0.24mm Draft @MyRRF.json b/resources/profiles/Custom/process/0.24mm Draft @MyRRF.json index 86e157061e2..4da6be51eeb 100644 --- a/resources/profiles/Custom/process/0.24mm Draft @MyRRF.json +++ b/resources/profiles/Custom/process/0.24mm Draft @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lh4F2302iVSyXP0D", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Custom/process/0.24mm Draft @MyToolChanger.json b/resources/profiles/Custom/process/0.24mm Draft @MyToolChanger.json index e50d54c67df..b16f1bcf0c3 100644 --- a/resources/profiles/Custom/process/0.24mm Draft @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.24mm Draft @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2V93QpRMBE9OU5Ak", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/Custom/process/0.28mm Extra Draft @MyKlipper.json b/resources/profiles/Custom/process/0.28mm Extra Draft @MyKlipper.json index 92dd60529d0..0a9a9c3316a 100644 --- a/resources/profiles/Custom/process/0.28mm Extra Draft @MyKlipper.json +++ b/resources/profiles/Custom/process/0.28mm Extra Draft @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Wxgntm1oFqaS5sSD", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Custom/process/0.28mm Extra Draft @MyMarlin.json b/resources/profiles/Custom/process/0.28mm Extra Draft @MyMarlin.json index 41b509a7f3a..dc59a3bc35a 100644 --- a/resources/profiles/Custom/process/0.28mm Extra Draft @MyMarlin.json +++ b/resources/profiles/Custom/process/0.28mm Extra Draft @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "FPRthCpiEQtZgF7W", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Custom/process/0.28mm Extra Draft @MyRRF.json b/resources/profiles/Custom/process/0.28mm Extra Draft @MyRRF.json index 88ca77622f1..09c9dba77c1 100644 --- a/resources/profiles/Custom/process/0.28mm Extra Draft @MyRRF.json +++ b/resources/profiles/Custom/process/0.28mm Extra Draft @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "KWkOr3YqJ2Jf3UAF", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Custom/process/0.28mm Extra Draft @MyToolChanger.json b/resources/profiles/Custom/process/0.28mm Extra Draft @MyToolChanger.json index f1e573e637d..d069bcc8193 100644 --- a/resources/profiles/Custom/process/0.28mm Extra Draft @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.28mm Extra Draft @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "q6Bc7ar365O7vKe3", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Custom/process/0.32mm Extra Draft @MyKlipper.json b/resources/profiles/Custom/process/0.32mm Extra Draft @MyKlipper.json index 7925b615488..4db0c96be0c 100644 --- a/resources/profiles/Custom/process/0.32mm Extra Draft @MyKlipper.json +++ b/resources/profiles/Custom/process/0.32mm Extra Draft @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "b3MuRrAWKYtKZM79", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Custom/process/0.32mm Extra Draft @MyToolChanger.json b/resources/profiles/Custom/process/0.32mm Extra Draft @MyToolChanger.json index 8b30e15a4db..0dcd2fb7627 100644 --- a/resources/profiles/Custom/process/0.32mm Extra Draft @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.32mm Extra Draft @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "0.32mm Standard @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7cM9iT4GyGhmfwHu", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Custom/process/0.40mm Extra Draft @MyKlipper.json b/resources/profiles/Custom/process/0.40mm Extra Draft @MyKlipper.json index e47f1253c3d..74bce75980e 100644 --- a/resources/profiles/Custom/process/0.40mm Extra Draft @MyKlipper.json +++ b/resources/profiles/Custom/process/0.40mm Extra Draft @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bc0WLUlEcdg9LWE5", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Custom/process/0.40mm Extra Draft @MyToolChanger.json b/resources/profiles/Custom/process/0.40mm Extra Draft @MyToolChanger.json index 23f8c490302..4922fdb7477 100644 --- a/resources/profiles/Custom/process/0.40mm Extra Draft @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.40mm Extra Draft @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BnN85WtRYfMwpdV0", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Custom/process/0.56mm Extra Draft @MyKlipper.json b/resources/profiles/Custom/process/0.56mm Extra Draft @MyKlipper.json index af4e91133a7..f470958a242 100644 --- a/resources/profiles/Custom/process/0.56mm Extra Draft @MyKlipper.json +++ b/resources/profiles/Custom/process/0.56mm Extra Draft @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ivoHEUPxZxSxGmrh", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Custom/process/0.56mm Extra Draft @MyToolChanger.json b/resources/profiles/Custom/process/0.56mm Extra Draft @MyToolChanger.json index d4430b59499..226610bfc2c 100644 --- a/resources/profiles/Custom/process/0.56mm Extra Draft @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.56mm Extra Draft @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Pky5GvEuSlaG1Lvm", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/DeltaMaker.json b/resources/profiles/DeltaMaker.json index 7942285ce02..c583fa9a16a 100755 --- a/resources/profiles/DeltaMaker.json +++ b/resources/profiles/DeltaMaker.json @@ -1,7 +1,7 @@ { "name": "DeltaMaker", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "DeltaMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/DeltaMaker/filament/DeltaMaker Brand PLA.json b/resources/profiles/DeltaMaker/filament/DeltaMaker Brand PLA.json index 72f7456da5b..2d905807fb1 100755 --- a/resources/profiles/DeltaMaker/filament/DeltaMaker Brand PLA.json +++ b/resources/profiles/DeltaMaker/filament/DeltaMaker Brand PLA.json @@ -3,7 +3,7 @@ "name": "DeltaMaker Brand PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "bvZOHe5ejWqBALPQ", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PETG.json b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PETG.json index 43fe54ab89f..32980cb53e0 100755 --- a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PETG.json +++ b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PETG.json @@ -3,7 +3,7 @@ "name": "DeltaMaker Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "qlQo6a93esZv2l9a", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PLA.json b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PLA.json index f168a30feb5..d4b8ab071c2 100755 --- a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PLA.json +++ b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PLA.json @@ -3,7 +3,7 @@ "name": "DeltaMaker Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gfxr3MiE4uI2Xxy7", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic TPU.json b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic TPU.json index b13c7f283b5..e971b6884c0 100755 --- a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic TPU.json +++ b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic TPU.json @@ -3,7 +3,7 @@ "name": "DeltaMaker Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2L1U33wC0LofrMWs", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/DeltaMaker/machine/DeltaMaker 2 0.35 nozzle.json b/resources/profiles/DeltaMaker/machine/DeltaMaker 2 0.35 nozzle.json index 8d5750237e1..f28c54eedc7 100755 --- a/resources/profiles/DeltaMaker/machine/DeltaMaker 2 0.35 nozzle.json +++ b/resources/profiles/DeltaMaker/machine/DeltaMaker 2 0.35 nozzle.json @@ -3,7 +3,7 @@ "name": "DeltaMaker 2 0.35 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "NTiJoA5DUUwU1CZj", "instantiation": "true", "printer_model": "DeltaMaker 2", "default_print_profile": "0.18mm Standard @DeltaMaker", diff --git a/resources/profiles/DeltaMaker/machine/DeltaMaker 2T 0.5 nozzle.json b/resources/profiles/DeltaMaker/machine/DeltaMaker 2T 0.5 nozzle.json index 95852485bfc..4f83ddb32e7 100755 --- a/resources/profiles/DeltaMaker/machine/DeltaMaker 2T 0.5 nozzle.json +++ b/resources/profiles/DeltaMaker/machine/DeltaMaker 2T 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "DeltaMaker 2T 0.5 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM002", + "setting_id": "CeQZogChydf6LWWJ", "instantiation": "true", "printer_model": "DeltaMaker 2T", "default_print_profile": "0.18mm Standard @DeltaMaker", diff --git a/resources/profiles/DeltaMaker/machine/DeltaMaker 2XT 0.5 nozzle.json b/resources/profiles/DeltaMaker/machine/DeltaMaker 2XT 0.5 nozzle.json index ef9adeb1c16..5ce9d45438e 100755 --- a/resources/profiles/DeltaMaker/machine/DeltaMaker 2XT 0.5 nozzle.json +++ b/resources/profiles/DeltaMaker/machine/DeltaMaker 2XT 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "DeltaMaker 2XT 0.5 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "OdZvaBNZMQ92kyMg", "instantiation": "true", "printer_model": "DeltaMaker 2XT", "default_print_profile": "0.25mm Draft @DeltaMaker", diff --git a/resources/profiles/DeltaMaker/process/0.12mm Fine @DeltaMaker.json b/resources/profiles/DeltaMaker/process/0.12mm Fine @DeltaMaker.json index 3fed9adda95..0a91d39e614 100755 --- a/resources/profiles/DeltaMaker/process/0.12mm Fine @DeltaMaker.json +++ b/resources/profiles/DeltaMaker/process/0.12mm Fine @DeltaMaker.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @DeltaMaker", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1PB7NQusFgxcaby7", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/DeltaMaker/process/0.18mm Standard @DeltaMaker.json b/resources/profiles/DeltaMaker/process/0.18mm Standard @DeltaMaker.json index 81af018751f..f103523bea0 100755 --- a/resources/profiles/DeltaMaker/process/0.18mm Standard @DeltaMaker.json +++ b/resources/profiles/DeltaMaker/process/0.18mm Standard @DeltaMaker.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @DeltaMaker", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "li5wp7qybRMu46nM", "instantiation": "true", "layer_height": "0.18", "sparse_infill_density": "15%", diff --git a/resources/profiles/DeltaMaker/process/0.25mm Draft @DeltaMaker.json b/resources/profiles/DeltaMaker/process/0.25mm Draft @DeltaMaker.json index 4664fe2d2bd..a5a64bfedec 100755 --- a/resources/profiles/DeltaMaker/process/0.25mm Draft @DeltaMaker.json +++ b/resources/profiles/DeltaMaker/process/0.25mm Draft @DeltaMaker.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @DeltaMaker", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CPkjzrLXDcdnT5u1", "instantiation": "true", "adaptive_layer_height": "1", "layer_height": "0.25", diff --git a/resources/profiles/Dremel.json b/resources/profiles/Dremel.json index 8988c73e459..c8462f04145 100644 --- a/resources/profiles/Dremel.json +++ b/resources/profiles/Dremel.json @@ -1,6 +1,6 @@ { "name": "Dremel", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Dremel configurations", "machine_model_list": [ diff --git a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D20 all.json b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D20 all.json index d797149e664..7e76e2404b6 100644 --- a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D20 all.json +++ b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D20 all.json @@ -3,7 +3,7 @@ "name": "Dremel Generic PLA @3D20 all", "inherits": "Dremel Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "weKWPiNIe3TmOXRn", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D40 all.json b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D40 all.json index ec044649b45..8074c6f0a37 100644 --- a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D40 all.json +++ b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D40 all.json @@ -3,7 +3,7 @@ "name": "Dremel Generic PLA @3D40 all", "inherits": "Dremel Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "kZAEjhLS29WQeyf1", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D45 all.json b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D45 all.json index 66dda5685d4..fb9c31fe0e4 100644 --- a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D45 all.json +++ b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D45 all.json @@ -3,7 +3,7 @@ "name": "Dremel Generic PLA @3D45 all", "inherits": "Dremel Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "pIlkZjNrXnHJDszp", "instantiation": "true", "slow_down_min_speed": "10", "close_fan_the_first_x_layers": "3", diff --git a/resources/profiles/Dremel/filament/Dremel Generic PLA.json b/resources/profiles/Dremel/filament/Dremel Generic PLA.json index 0c42475d3d3..b5263d20f37 100644 --- a/resources/profiles/Dremel/filament/Dremel Generic PLA.json +++ b/resources/profiles/Dremel/filament/Dremel Generic PLA.json @@ -3,7 +3,7 @@ "name": "Dremel Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "blJERdJqaaRmRdD4", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Dremel/machine/Dremel 3D20 0.4 nozzle.json b/resources/profiles/Dremel/machine/Dremel 3D20 0.4 nozzle.json index 991f1202a59..ea9490971a8 100644 --- a/resources/profiles/Dremel/machine/Dremel 3D20 0.4 nozzle.json +++ b/resources/profiles/Dremel/machine/Dremel 3D20 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Dremel 3D20 0.4 nozzle", "inherits": "fdm_dremel_common", "from": "system", - "setting_id": "GM001", + "setting_id": "7irNPRvRXZYx348l", "instantiation": "true", "printer_model": "Dremel 3D20", "printer_variant": "0.4", diff --git a/resources/profiles/Dremel/machine/Dremel 3D40 0.4 nozzle.json b/resources/profiles/Dremel/machine/Dremel 3D40 0.4 nozzle.json index 96907351d34..d37a7850992 100644 --- a/resources/profiles/Dremel/machine/Dremel 3D40 0.4 nozzle.json +++ b/resources/profiles/Dremel/machine/Dremel 3D40 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Dremel 3D40 0.4 nozzle", "inherits": "fdm_dremel_common", "from": "system", - "setting_id": "GM001", + "setting_id": "w1AWyuB0zfTVidRz", "instantiation": "true", "printer_model": "Dremel 3D40", "printer_variant": "0.4", diff --git a/resources/profiles/Dremel/machine/Dremel 3D45 0.4 nozzle.json b/resources/profiles/Dremel/machine/Dremel 3D45 0.4 nozzle.json index fa0554e1c21..8d6b26f34b4 100644 --- a/resources/profiles/Dremel/machine/Dremel 3D45 0.4 nozzle.json +++ b/resources/profiles/Dremel/machine/Dremel 3D45 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Dremel 3D45 0.4 nozzle", "inherits": "fdm_dremel_common", "from": "system", - "setting_id": "GM001", + "setting_id": "75f7dk1mwCHV6473", "instantiation": "true", "printer_model": "Dremel 3D45", "printer_variant": "0.4", diff --git a/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D40 0.4.json b/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D40 0.4.json index 70d7ac7c68f..6b97a85444c 100644 --- a/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D40 0.4.json +++ b/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D40 0.4.json @@ -3,6 +3,7 @@ "name": ".05mm Super Detail @Dremel 3D40 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "9KpA5yblUW2rVLZY", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D45 0.4.json b/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D45 0.4.json index c258ed66a00..734b6e5c69d 100644 --- a/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D45 0.4.json +++ b/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D45 0.4.json @@ -3,6 +3,7 @@ "name": ".05mm Super Detail @Dremel 3D45 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "wSAun08YCT9u9pOY", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D20 0.4.json b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D20 0.4.json index 0fb604e7ebd..716b2ca2dcd 100644 --- a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D20 0.4.json +++ b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D20 0.4.json @@ -3,6 +3,7 @@ "name": ".10mm Detail @Dremel 3D20 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "n2k8VXfPE45lzxmq", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D40 0.4.json b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D40 0.4.json index 8dc370929f9..6089ca8f5b6 100644 --- a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D40 0.4.json +++ b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D40 0.4.json @@ -3,6 +3,7 @@ "name": ".10mm Detail @Dremel 3D40 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "1dgGvgPtncRPdWVX", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D45 0.4.json b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D45 0.4.json index bc6320aa9ad..ad07216741e 100644 --- a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D45 0.4.json +++ b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D45 0.4.json @@ -3,6 +3,7 @@ "name": ".10mm Detail @Dremel 3D45 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "DXivoqKpf6E0edQV", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D20 0.4.json b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D20 0.4.json index 806f2dc4102..358fef44482 100644 --- a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D20 0.4.json +++ b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D20 0.4.json @@ -3,6 +3,7 @@ "name": ".20mm Standard @Dremel 3D20 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "1EacU2rT7gdsnkP4", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "0.95", diff --git a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D40 0.4.json b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D40 0.4.json index 5e0ca380fd0..4c083240de4 100644 --- a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D40 0.4.json +++ b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D40 0.4.json @@ -3,6 +3,7 @@ "name": ".20mm Standard @Dremel 3D40 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "iraCyWuqWZ9D0Zw1", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D45 0.4.json b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D45 0.4.json index 5b944d03e0f..a974c3097bd 100644 --- a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D45 0.4.json +++ b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D45 0.4.json @@ -3,6 +3,7 @@ "name": ".20mm Standard @Dremel 3D45 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "DU8Yd6C1GF2uIuNF", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D20 0.4.json b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D20 0.4.json index 54db7ee97c1..5d161554538 100644 --- a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D20 0.4.json +++ b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D20 0.4.json @@ -3,6 +3,7 @@ "name": ".30mm Draft @Dremel 3D20 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "iX1Z2gHIGCWuZAJC", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D40 0.4.json b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D40 0.4.json index aadef62ab22..27175afdf2f 100644 --- a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D40 0.4.json +++ b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D40 0.4.json @@ -3,6 +3,7 @@ "name": ".30mm Draft @Dremel 3D40 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "N3x1hdUv74ecskhv", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D45 0.4.json b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D45 0.4.json index 82ca5e96ec9..ca224bf6879 100644 --- a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D45 0.4.json +++ b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D45 0.4.json @@ -3,6 +3,7 @@ "name": ".30mm Draft @Dremel 3D45 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "O6ulsZPXdb1dpOTB", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D40 0.4.json b/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D40 0.4.json index 34a2093bb7b..8db1965a59b 100644 --- a/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D40 0.4.json +++ b/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D40 0.4.json @@ -3,6 +3,7 @@ "name": ".34mm SuperDraft @Dremel 3D40 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "WMm4Yxia1QjZCK3h", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D45 0.4.json b/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D45 0.4.json index c791a08b9ba..d7a6db964ef 100644 --- a/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D45 0.4.json +++ b/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D45 0.4.json @@ -3,6 +3,7 @@ "name": ".34mm SuperDraft @Dremel 3D45 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "verN5otUrqpeDtY4", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Elegoo.json b/resources/profiles/Elegoo.json index 8a6ee72e697..077c264b84c 100644 --- a/resources/profiles/Elegoo.json +++ b/resources/profiles/Elegoo.json @@ -1,6 +1,6 @@ { "name": "Elegoo", - "version": "02.04.00.05", + "version": "02.04.00.06", "force_update": "0", "description": "Elegoo configurations", "machine_model_list": [ diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo ABS @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo ABS @EC.json index f9dc2c1fbf6..ce55301fbad 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo ABS @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo ABS @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo ABS @EC", "inherits": "Elegoo ABS @base", "from": "system", - "setting_id": "EABSEC", + "setting_id": "ZC1InjpTSFKP5rfE", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo ASA @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo ASA @EC.json index 0ce8f444fc9..8b787ceb30f 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo ASA @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo ASA @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @EC", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAEC", + "setting_id": "GTfsmYNl6Sl5FjL7", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PAHT-CF @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PAHT-CF @EC.json index 9f0760d492d..d1e05a1372e 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PAHT-CF @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PAHT-CF @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PAHT-CF @EC", "inherits": "Elegoo PAHT @base", "from": "system", - "setting_id": "EPAHTCFEC", + "setting_id": "ZRd4WPQrh8nC8n7G", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PC @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PC @EC.json index 82ec99e6a07..61aacd5e037 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PC @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PC @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PC @EC", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCEC", + "setting_id": "gZcHlCdoU1Ktlt9T", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PC-FR @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PC-FR @EC.json index 2bf1299fead..8fae5004048 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PC-FR @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PC-FR @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PC-FR @EC", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCFREC", + "setting_id": "DOX4jdBlUuiFx27J", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PETG @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PETG @EC.json index 4c9c7ffadc8..38744af40cb 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PETG @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PETG @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGEC", + "setting_id": "IA51CeVDjDQijUMY", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PETG PRO @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PETG PRO @EC.json index a9bc6b32eaf..e86269bb091 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PETG PRO @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PETG PRO @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROEC", + "setting_id": "ADLcWU2wDYdXUM0F", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PETG Translucent @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PETG Translucent @EC.json index 8c4f9aa94d2..28f8027a7ad 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PETG Translucent @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PETG Translucent @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSEC", + "setting_id": "bkdR8uTPqu0nMTMW", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PETG-CF @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PETG-CF @EC.json index be07c0a6ac6..1875a4b76de 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PETG-CF @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PETG-CF @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFEC", + "setting_id": "bNOqwg4q2TE94jEj", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PETG-GF @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PETG-GF @EC.json index 1237af2f27f..fcfd9e3ed8a 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PETG-GF @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PETG-GF @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFEC", + "setting_id": "jDvyk3UkeiNb2U9m", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA @EC.json index 7bb71e473a6..d711d30b3a1 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAEC", + "setting_id": "UTupxlgJSq0rolXS", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Basic @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Basic @EC.json index 90d947c038b..a69e1b0daa8 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Basic @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Basic @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICEC", + "setting_id": "hO0eeJKhhc9aWSqV", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Galaxy @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Galaxy @EC.json index 0aa51d0cafa..cb692d090ba 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Galaxy @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Galaxy @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYEC", + "setting_id": "F55l4bPdEauXI3Zf", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Marble @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Marble @EC.json index 47174d4fa36..521d677ac9a 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Marble @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Marble @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEEC", + "setting_id": "lZOlnGqn1G7V5NBY", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Matte @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Matte @EC.json index 3ae43990526..ba0cdcff72c 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Matte @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Matte @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMEC", + "setting_id": "GC7p8OUHQheNbsms", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA PRO @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA PRO @EC.json index 0cc360b9943..59b3d04f4b3 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA PRO @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA PRO @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROEC", + "setting_id": "23RCuAK92MPaxyqe", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Silk @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Silk @EC.json index ad549484e3c..1641f497326 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Silk @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Silk @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASEC", + "setting_id": "vSomzlfdeel8Fkkc", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Sparkle @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Sparkle @EC.json index e261cfbd624..cea1875a1e1 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Sparkle @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Sparkle @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEEC", + "setting_id": "XbPbopAAmos9Fhe5", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Wood @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Wood @EC.json index bab8194d05e..329eca77045 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Wood @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Wood @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODEC", + "setting_id": "4cqc0qMp58PbLivG", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA+ @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA+ @EC.json index af2922966d8..4b02ef0ff2b 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA+ @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA+ @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSEC", + "setting_id": "TtRiwCEgVej4q1bD", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PETG @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PETG @EC.json index f900f7b64b0..5651aabd4ec 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PETG @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PETG @EC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGEC", + "setting_id": "BIkMBzPkBJNZtn9I", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PLA+ @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PLA+ @EC.json index 72de3074854..441e1c18444 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PLA+ @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PLA+ @EC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSEC", + "setting_id": "SdBul5AmPj8ZwaKm", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid TPU 95A @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid TPU 95A @EC.json index 18b7416471d..b698d51e370 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid TPU 95A @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid TPU 95A @EC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @EC", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AEC", + "setting_id": "XWoU9g1mRLapDWmY", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo TPU 95A @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo TPU 95A @EC.json index 815b8dbca1f..6e9944b30ce 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo TPU 95A @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo TPU 95A @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @EC", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ETPU95AEC", + "setting_id": "hqmWADQDYWBuniTB", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo ABS @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo ABS @EC2.json index e2c925bbeaa..3dc25c5b534 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo ABS @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo ABS @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo ABS @EC2", "inherits": "Elegoo ABS @base", "from": "system", - "setting_id": "EABSEC2", + "setting_id": "5SZiksUEUcxCOIN1", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo ASA @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo ASA @EC2.json index c63164f2488..4d029f9355c 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo ASA @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo ASA @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @EC2", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAEC2", + "setting_id": "OYEKFuyeKgCsHlYz", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo ASA-CF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo ASA-CF @EC2.json index 227e72a2451..d448a141466 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo ASA-CF @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo ASA-CF @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA-CF @EC2", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASACFEC2", + "setting_id": "12kyjckYS59VKuJr", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PAHT-CF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PAHT-CF @EC2.json index 7d470ef99c6..10d72026983 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PAHT-CF @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PAHT-CF @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PAHT-CF @EC2", "inherits": "Elegoo PAHT @base", "from": "system", - "setting_id": "EPAHTCFEC2", + "setting_id": "miv95d8rXD4CAgjC", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PC @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PC @EC2.json index 0f4964a0563..46fa5ddf387 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PC @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PC @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PC @EC2", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCEC2", + "setting_id": "Ybq7T5IKqXKfhhuc", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PC-FR @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PC-FR @EC2.json index b721d3002cb..e27e4857022 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PC-FR @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PC-FR @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PC-FR @EC2", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCFREC2", + "setting_id": "4y2nFqOY9OLYQT4I", "instantiation": "true", "pressure_advance": [ "0.05" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PET-CF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PET-CF @EC2.json index de365bbaccc..0e737489001 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PET-CF @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PET-CF @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PET-CF @EC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETCFEC2", + "setting_id": "YuxImosRqvxeXky9", "instantiation": "true", "pressure_advance": [ "0.05" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG @EC2.json index 7bbf783d17e..249ea57aceb 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @EC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGEC2", + "setting_id": "FOM7t4PtHtdqRgjm", "instantiation": "true", "pressure_advance": [ "0.05" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG HF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG HF @EC2.json index 846f69ac06f..db3eac6a9b1 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG HF @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG HF @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG HF @EC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGHFEC2", + "setting_id": "JXAbqQk05wQC2ZsV", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG PRO @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG PRO @EC2.json index 5e7381346a1..f443590f794 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG PRO @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG PRO @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @EC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROEC2", + "setting_id": "7eE7wOnwAMmDk3N8", "instantiation": "true", "pressure_advance": [ "0.1" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG Translucent @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG Translucent @EC2.json index 22e446780f7..e5d38ae8043 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG Translucent @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG Translucent @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @EC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSEC2", + "setting_id": "c62Io0F7o3YY9UfY", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-CF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-CF @EC2.json index 28641785c51..521e3f54d64 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-CF @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-CF @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @EC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFEC2", + "setting_id": "H5b1oB4xwcsOGVYG", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-GF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-GF @EC2.json index 4cf15c985ff..0376628dd7d 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-GF @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-GF @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @EC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFEC2", + "setting_id": "UXEBZHN5QuEKg2dX", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA @EC2.json index 1f1e15b5bf5..a4e9d09ba57 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAEC2", + "setting_id": "BvxOuzsi4u4eeHkc", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Basic @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Basic @EC2.json index 35e208d6311..bf2e6de3d68 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Basic @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Basic @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICEC2", + "setting_id": "YBylnOIc1QhV45N0", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Galaxy @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Galaxy @EC2.json index 1d6cb3d4e33..485a267cc41 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Galaxy @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Galaxy @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYEC2", + "setting_id": "BZ67cDxyhlFdrNPf", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Glow @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Glow @EC2.json index 8d9c2f19ca1..d9cd47f31e5 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Glow @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Glow @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Glow @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGLOWEC2", + "setting_id": "X18eV3oo6N3xDJXN", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Marble @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Marble @EC2.json index b23435eb7d4..819bcc8fb73 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Marble @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Marble @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEEC2", + "setting_id": "D4UWZLfsmnwQSQP0", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Matte @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Matte @EC2.json index a29fb061800..5713ef10948 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Matte @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Matte @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMEC2", + "setting_id": "EMVja9n1ZwI2Lq3R", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA PRO @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA PRO @EC2.json index 498ed7d6c64..128866138dc 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA PRO @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA PRO @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROEC2", + "setting_id": "TXUB904pAsT5napV", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Silk @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Silk @EC2.json index 51f6ecb63c0..def1a54169a 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Silk @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Silk @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASEC2", + "setting_id": "9M8QYAJcLTyKLgNL", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Sparkle @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Sparkle @EC2.json index a26d6155a37..17abe488dc7 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Sparkle @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Sparkle @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEEC2", + "setting_id": "l7NSciXWqkFqbTgB", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Translucent2 @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Translucent2 @EC2.json index ce2112606dc..8bd5e92deae 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Translucent2 @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Translucent2 @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Translucent2 @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLATRA2EC2", + "setting_id": "RKBHiiO580ou2vr1", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Wood @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Wood @EC2.json index 8c6189ea9aa..1071c52353f 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Wood @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Wood @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODEC2", + "setting_id": "ym42CllFezpl1XEg", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA+ @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA+ @EC2.json index 0ec4e9ee804..cbf217cae19 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA+ @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA+ @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSEC2", + "setting_id": "vf5ap9MNwVgptsvO", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA-CF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA-CF @EC2.json index a9aaa470a5b..e148759647e 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA-CF @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA-CF @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLACFEC2", + "setting_id": "UpGOamlqBkqj71bx", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PETG @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PETG @EC2.json index ddcd33392b8..7242ba793e7 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PETG @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PETG @EC2.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @EC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGEC2", + "setting_id": "1qDXoSeuwBcAbZmk", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PLA+ @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PLA+ @EC2.json index 497dd0dc924..e3d33b22439 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PLA+ @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PLA+ @EC2.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @EC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSEC2", + "setting_id": "lfHbQa7hrJ7wg4oC", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid TPU 95A @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid TPU 95A @EC2.json index 61df414386c..7195e17e937 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid TPU 95A @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid TPU 95A @EC2.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @EC2", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AEC2", + "setting_id": "siG31sp4DyxsrhAc", "instantiation": "true", "pressure_advance": [ "0.1" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo TPU 95A @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo TPU 95A @EC2.json index 3be442308b1..1389221bce4 100644 --- a/resources/profiles/Elegoo/filament/EC2/Elegoo TPU 95A @EC2.json +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo TPU 95A @EC2.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @EC2", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ETPU95AEC2", + "setting_id": "6LUQGjzmx0y5A6Qn", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo ABS @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo ABS @ECC.json index 919a4fb9dc3..0d3725cb076 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo ABS @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo ABS @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo ABS @ECC", "inherits": "Elegoo ABS @base", "from": "system", - "setting_id": "EABSECC", + "setting_id": "mf4NcnjjiIjNuMA3", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo ASA @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo ASA @ECC.json index a8d8d6c6026..6bc80b3c060 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo ASA @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo ASA @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @ECC", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAECC", + "setting_id": "77YB8eSdq9C9iBp5", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PAHT-CF @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PAHT-CF @ECC.json index 369b51592cd..bf0363b0d75 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PAHT-CF @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PAHT-CF @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PAHT-CF @ECC", "inherits": "Elegoo PAHT @base", "from": "system", - "setting_id": "EPAHTCFECC", + "setting_id": "iDRlRpUzPNVYv0lY", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PC @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PC @ECC.json index feb0cbab66b..0eeb37b0f07 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PC @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PC @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PC @ECC", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCECC", + "setting_id": "z0xZCiFziKFsPc3P", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PC-FR @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PC-FR @ECC.json index fff4c522991..4fc22048cb7 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PC-FR @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PC-FR @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PC-FR @ECC", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCFRSECC", + "setting_id": "nCZkQRo7hh7vwwbL", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG @ECC.json index 200d4ffac07..6732de8de56 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGECC", + "setting_id": "9qDLxo5BPythq9iX", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG PRO @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG PRO @ECC.json index 64700f002f6..49692dd3352 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG PRO @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG PRO @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROECC", + "setting_id": "VfYr5aZoseuXcbN6", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG Translucent @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG Translucent @ECC.json index c9d7b2301ac..de9d234ce4b 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG Translucent @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG Translucent @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSECC", + "setting_id": "X5cTMTTWd0GWWj6d", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-CF @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-CF @ECC.json index 1d046fdcc14..a2f6620a79a 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-CF @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-CF @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFECC", + "setting_id": "WNaFMeStUh8INJGx", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-GF @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-GF @ECC.json index 4d9798fa0e1..68df019a742 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-GF @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-GF @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFECC", + "setting_id": "s5zG5lNveft4RPEX", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA @ECC.json index d8c24383e50..5c088e4da74 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAECC", + "setting_id": "gY5iXMneCLGuZpIB", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Basic @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Basic @ECC.json index 24f95617d1c..2470cead831 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Basic @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Basic @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICECC", + "setting_id": "zCxfCnJcHoGLipVy", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Galaxy @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Galaxy @ECC.json index 985b30cc8a3..5e0e0819c1e 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Galaxy @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Galaxy @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYECC", + "setting_id": "M5uv0mruFXpkbauD", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Marble @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Marble @ECC.json index 57987e18481..d9104d271fe 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Marble @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Marble @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEECC", + "setting_id": "BFEnBt0IBILLmhri", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Matte @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Matte @ECC.json index e6c86c3accb..79e4a2b076a 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Matte @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Matte @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMECC", + "setting_id": "niMCkAjPd2bJdjZs", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA PRO @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA PRO @ECC.json index 7748b9ba68a..bbd35a7c580 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA PRO @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA PRO @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROECC", + "setting_id": "JfYUDBI0wNnLpEsL", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Silk @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Silk @ECC.json index 632e7becebe..7d135cd9fd1 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Silk @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Silk @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASECC", + "setting_id": "n4hPXKakxN4xmQsj", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Sparkle @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Sparkle @ECC.json index 10ce75ed7fb..6143048aa11 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Sparkle @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Sparkle @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEECC", + "setting_id": "kn34IfbyhDKllxwq", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Wood @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Wood @ECC.json index 5b425257c1e..92842d8fbf0 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Wood @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Wood @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODECC", + "setting_id": "kI7ZFyzYkMcrKrM1", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA+ @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA+ @ECC.json index 742e5e9b8e1..06c833d7b21 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA+ @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA+ @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSECC", + "setting_id": "UbOYgGsK00v3gLL8", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA-CF @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA-CF @ECC.json index fcde3033331..4743d13a9f3 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA-CF @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA-CF @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLACFECC", + "setting_id": "rvrpVcpcUAtwXgsn", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PETG @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PETG @ECC.json index 28a5b9054d2..6ea852850da 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PETG @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PETG @ECC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGECC", + "setting_id": "r4F3n71ajBUlmLgN", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PLA+ @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PLA+ @ECC.json index 9d052c69af0..859b66e8ad4 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PLA+ @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PLA+ @ECC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSECC", + "setting_id": "OvdHgrXbSulHkLWz", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid TPU 95A @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid TPU 95A @ECC.json index 721646104a0..6faef1d73a8 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid TPU 95A @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid TPU 95A @ECC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @ECC", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AECC", + "setting_id": "uVpRY8TCq9S6kr8M", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo TPU 95A @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo TPU 95A @ECC.json index 1591f349de0..870f4dc8ac6 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo TPU 95A @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo TPU 95A @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @ECC", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ETPU95AECC", + "setting_id": "cOI05FCm8wrkqtDD", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo ABS @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo ABS @ECC2.json index f1b2d92f849..0b30492cadc 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo ABS @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo ABS @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo ABS @ECC2", "inherits": "Elegoo ABS @base", "from": "system", - "setting_id": "EABSECC2", + "setting_id": "Yrf1rCjVfmeDdegq", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA @ECC2.json index 16bf2c97836..5e42ef4aff6 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @ECC2", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAECC2", + "setting_id": "GlyfzHNVKZtaIj3S", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA-CF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA-CF @ECC2.json index 70e62631ad2..0974b255032 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA-CF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA-CF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA-CF @ECC2", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASACFECC2", + "setting_id": "X7ugJOOrWixpeke8", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PAHT-CF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PAHT-CF @ECC2.json index 01f9a78a39d..5c41f76588d 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PAHT-CF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PAHT-CF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PAHT-CF @ECC2", "inherits": "Elegoo PAHT @base", "from": "system", - "setting_id": "EPAHTCFECC2", + "setting_id": "hmTwVvyCAIZI7rSY", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PC @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PC @ECC2.json index 121ef6cc236..30441191ed0 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PC @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PC @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PC @ECC2", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCECC2", + "setting_id": "9DjHFRqI041QXR50", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PC-FR @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PC-FR @ECC2.json index b33fa92dd8e..5875d26411f 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PC-FR @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PC-FR @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PC-FR @ECC2", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCFRECC2", + "setting_id": "M86WAPT5jr5ge7Ni", "instantiation": "true", "pressure_advance": [ "0.05" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PET-CF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PET-CF @ECC2.json index a93f92a80c7..9519266c2db 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PET-CF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PET-CF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PET-CF @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETCFECC2", + "setting_id": "sIwAf2oRC7VqYjIR", "instantiation": "true", "pressure_advance": [ "0.05" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG @ECC2.json index 86b59e05f29..70576080a52 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGECC2", + "setting_id": "3HGwQZvPPZuLpmi8", "instantiation": "true", "pressure_advance": [ "0.05" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG HF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG HF @ECC2.json index 8b9a2424c7e..27ad64e1b5f 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG HF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG HF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG HF @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGHFECC2", + "setting_id": "EAt1AJX3ZupILYWV", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG PRO @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG PRO @ECC2.json index 870da6bc17c..bb535d32137 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG PRO @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG PRO @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROECC2", + "setting_id": "YjUFi1BuigQdJGfe", "instantiation": "true", "pressure_advance": [ "0.1" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG Translucent @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG Translucent @ECC2.json index f6e2415659b..de86ebaae61 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG Translucent @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG Translucent @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSECC2", + "setting_id": "Nk21n7x4I5xjwNqV", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-CF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-CF @ECC2.json index f20bd21e4a1..1e40c2a3055 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-CF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-CF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFECC2", + "setting_id": "TsJJG9mgzBt5GWPZ", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-GF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-GF @ECC2.json index 2793ff94771..13060e74baf 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-GF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-GF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFECC2", + "setting_id": "Po38QP4RqkGBZTHq", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA @ECC2.json index 736498b463c..8574ef68bca 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAECC2", + "setting_id": "49fzd1JgB0epXI3n", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Basic @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Basic @ECC2.json index 1e76fce7e23..e301741c273 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Basic @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Basic @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICECC2", + "setting_id": "CG6nOQRYTWN0jJNV", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Galaxy @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Galaxy @ECC2.json index cb355299a77..638fef599c6 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Galaxy @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Galaxy @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYECC2", + "setting_id": "jieMxZQRwSJ8lOQK", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Glow @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Glow @ECC2.json index 682525af9c1..7944c67d88e 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Glow @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Glow @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Glow @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGLOWECC2", + "setting_id": "S6c2IXcIWDpViP2T", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Marble @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Marble @ECC2.json index 52ad79f270e..297ac4fcd0d 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Marble @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Marble @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEECC2", + "setting_id": "vBkiE3Uh1LdCiOig", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Matte @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Matte @ECC2.json index 525deb582e1..025d40e19dd 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Matte @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Matte @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMECC2", + "setting_id": "C3IdNUQ5dSe1wQua", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA PRO @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA PRO @ECC2.json index bff9ce802f9..f1b8a7a1d28 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA PRO @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA PRO @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROECC2", + "setting_id": "nIBhL1ZCxYZSMZTO", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Silk @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Silk @ECC2.json index b56b6580236..62efb49b531 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Silk @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Silk @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASECC2", + "setting_id": "R20HD2TcTFmVt8ei", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Sparkle @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Sparkle @ECC2.json index 30aa2989dff..da6927987ed 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Sparkle @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Sparkle @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEECC2", + "setting_id": "RoM3TYRuszinvW6b", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Translucent2 @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Translucent2 @ECC2.json index e36ab37b495..8a81ff7ccfc 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Translucent2 @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Translucent2 @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Translucent2 @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLATRA2ECC2", + "setting_id": "K1pIYbrCCJUBwAOt", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Wood @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Wood @ECC2.json index 7fc70611772..0b794f78a68 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Wood @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Wood @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODECC2", + "setting_id": "7D7QoTRo7U4HGaZB", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA+ @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA+ @ECC2.json index 2c5a5e545ee..7b6e0680612 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA+ @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA+ @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSECC2", + "setting_id": "GCMagCIZUPjPBpuH", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA-CF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA-CF @ECC2.json index 1a2e475550a..a95b21ddba5 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA-CF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA-CF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLACFECC2", + "setting_id": "0pllUBj7uWuhIr0v", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PETG @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PETG @ECC2.json index d6db5dca465..fe19d982917 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PETG @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PETG @ECC2.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGECC2", + "setting_id": "oVp14HbITUsNcgvp", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PLA+ @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PLA+ @ECC2.json index 8305cd43429..c1732210044 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PLA+ @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PLA+ @ECC2.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSECC2", + "setting_id": "qXybozVO1oL7MEud", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid TPU 95A @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid TPU 95A @ECC2.json index b94440f1b0e..ebbdefb767d 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid TPU 95A @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid TPU 95A @ECC2.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @ECC2", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AECC2", + "setting_id": "5osmvljNWBUEc9Kc", "instantiation": "true", "pressure_advance": [ "0.1" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo TPU 95A @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo TPU 95A @ECC2.json index 4325247c924..86eccaff033 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo TPU 95A @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo TPU 95A @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @ECC2", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ETPU95AECC2", + "setting_id": "v0Qj3xMBkUGnxZPi", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ABS @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ABS @0.2 nozzle.json index 30e9e2e6a8c..2492ca8ec58 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ABS @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo ABS @0.2 nozzle", "inherits": "Elegoo ABS @base", "from": "system", - "setting_id": "EABS00020", + "setting_id": "stkzx3iRb8i4yDWL", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ASA @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ASA @0.2 nozzle.json index 44e4e04e3c8..7f739de3a2f 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ASA @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ASA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @0.2 nozzle", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASA00020", + "setting_id": "CU2k82NwHp3JdSiH", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC @0.2 nozzle.json index 61352cbe959..472ccd949e0 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PC @0.2 nozzle", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPC00020", + "setting_id": "1XvweoHPvLXiTYMe", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC-FR @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC-FR @0.2 nozzle.json index fa46890a507..88c968cf23a 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC-FR @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC-FR @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PC-FR @0.2 nozzle", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCFR00020", + "setting_id": "Q6LfquCFYpzmrILa", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG @0.2 nozzle.json index 156463b35eb..7ae01bcf1bc 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @0.2 nozzle", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETG00020", + "setting_id": "Vua3KPuCmm7fbcYB", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG PRO @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG PRO @0.2 nozzle.json index d3494d30809..9978fb863bb 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG PRO @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG PRO @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @0.2 nozzle", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPRO00020", + "setting_id": "TBkoABUqBy51TLtW", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG Translucent @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG Translucent @0.2 nozzle.json index 6890ddb9a98..7b11b3b54e0 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG Translucent @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG Translucent @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @0.2 nozzle", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRAN00020", + "setting_id": "3zgNnsZ5SmrldddZ", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA @0.2 nozzle.json index bed4e50ce79..9bfeb0529c4 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA @0.2 nozzle.json @@ -2,7 +2,7 @@ "type": "filament", "name": "Elegoo PLA @0.2 nozzle", "from": "system", - "setting_id": "EPLA00020", + "setting_id": "g5M60iK3oBpmDv68", "instantiation": "true", "inherits": "Elegoo PLA @base", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Basic @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Basic @0.2 nozzle.json index cfa1d70b64e..c606063a33f 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Basic @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Basic @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASIC00020", + "setting_id": "cBFHhPKahRBGfAg6", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Matte @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Matte @0.2 nozzle.json index 04fb166a671..f5bb2921b32 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Matte @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Matte @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAM00020", + "setting_id": "TyHg4K4ZNiYKgaso", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA PRO @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA PRO @0.2 nozzle.json index 7cda893c0a3..80f9b0cab94 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA PRO @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA PRO @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPRO00020", + "setting_id": "ed7EP0Fx9X6WoP8q", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Silk @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Silk @0.2 nozzle.json index bf907a05c7d..e6a61535b37 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Silk @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Silk @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAS00020", + "setting_id": "9cy4zu57LxlFIrLB", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA+ @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA+ @0.2 nozzle.json index 11989fcb151..7bab03c3c08 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA+ @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA+ @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUS00020", + "setting_id": "IODCNDnNbt1xXMQR", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PETG @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PETG @0.2 nozzle.json index ed9d38cd906..4f9d3ddacd2 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PETG @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PETG @0.2 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @0.2 nozzle", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETG00020", + "setting_id": "Vn71U93sqvxWaq5J", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PLA+ @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PLA+ @0.2 nozzle.json index b031e6a3bb0..f7d3bf2b8b5 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PLA+ @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PLA+ @0.2 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUS00020", + "setting_id": "52q6GSMo16aOU2a0", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo ASA @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo ASA @EN2 Series.json index fbc0cd346e0..bb1b0fc449c 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo ASA @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo ASA @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @EN2 Series", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAEN2", + "setting_id": "EsVhkMWxx6k3L7f9", "instantiation": "true", "filament_max_volumetric_speed": [ "8" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG @EN2 Series.json index de9093ed441..580e6ec8ca4 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGEN2", + "setting_id": "nLsZ6NET1mvnoGGC", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG PRO @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG PRO @EN2 Series.json index 3d9f9868119..2d540432f14 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG PRO @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG PRO @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROEN2", + "setting_id": "47TFK2SdXkanFany", "instantiation": "true", "filament_max_volumetric_speed": [ "8" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG Translucent @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG Translucent @EN2 Series.json index 2dd00796035..ec6735ee454 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG Translucent @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG Translucent @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSEN2", + "setting_id": "PG4cLzHQ2okqwTVi", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-CF @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-CF @EN2 Series.json index eb61024e9d5..f4cb06df03b 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-CF @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-CF @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFEN2", + "setting_id": "xVvTmdiPx4DqsoSt", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-GF @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-GF @EN2 Series.json index 471d0bb72fe..1d4376f6032 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-GF @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-GF @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFEN2", + "setting_id": "Wuj48uGxkjtu1k0E", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA @EN2 Series.json index 1043b0ecca7..991d64b4a86 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAEN2", + "setting_id": "qqTgiLtLxaGimLU9", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Basic @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Basic @EN2 Series.json index ab1a33a57c1..1625d88ade6 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Basic @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Basic @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICEN2", + "setting_id": "rKMXIa1T57ARSSew", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Galaxy @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Galaxy @EN2 Series.json index 1f42e7c028c..969338f3fb7 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Galaxy @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Galaxy @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYEN2", + "setting_id": "dK5fXHKyvXbajhfU", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Marble @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Marble @EN2 Series.json index a2f3e55a16e..49de0c172a3 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Marble @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Marble @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEEN2", + "setting_id": "vcJBgxGVh5Rl3dRy", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Matte @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Matte @EN2 Series.json index 799e8181e4c..b526d88f8a7 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Matte @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Matte @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMEN2", + "setting_id": "pFzHY2WtgjYBAq1c", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA PRO @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA PRO @EN2 Series.json index 9e9e95e770f..bbca38423af 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA PRO @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA PRO @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROEN2", + "setting_id": "AP6zWYwNv7aXdT4e", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Silk @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Silk @EN2 Series.json index f7319a958d1..b75a9105f70 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Silk @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Silk @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASEN2", + "setting_id": "AquzfXzcf6CxPLmL", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Sparkle @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Sparkle @EN2 Series.json index 7fa37edb940..a63d22f72b8 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Sparkle @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Sparkle @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEEN2", + "setting_id": "sYpjo9kbuDSM5YXe", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Wood @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Wood @EN2 Series.json index 4c9153155a6..1f52f7a951d 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Wood @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Wood @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODEN2", + "setting_id": "FCCgNMxR3m3CtWBL", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA+ @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA+ @EN2 Series.json index e3f5a23d483..aa2afe2789f 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA+ @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA+ @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSEN2", + "setting_id": "qn1N6b1JCgut6S69", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA-CF @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA-CF @EN2 Series.json index 902ef1c5d65..51be7c9afc6 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA-CF @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA-CF @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLACFEN2", + "setting_id": "vmxHMRDkf1EpLGx1", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PETG @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PETG @EN2 Series.json index 41d095cf509..66e35e0448e 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PETG @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PETG @EN2 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGEN2", + "setting_id": "7Nqa8yKgcpoRnMhS", "instantiation": "true", "filament_max_volumetric_speed": [ "10" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PLA+ @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PLA+ @EN2 Series.json index 382ce0d8d5f..16f84c14802 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PLA+ @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PLA+ @EN2 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSEN2", + "setting_id": "GRiM2kKnyW0xiFoS", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid TPU 95A @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid TPU 95A @EN2 Series.json index fd4d6e96522..f7fd8203198 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid TPU 95A @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid TPU 95A @EN2 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @EN2 Series", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AEN2", + "setting_id": "NcE57l7rlZXMQqqO", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo ASA @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo ASA @EN3 Series.json index 5de869a6589..2a34a9dff9f 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo ASA @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo ASA @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @EN3 Series", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAEN3", + "setting_id": "SDHq0vtdwuAPJtjN", "instantiation": "true", "filament_max_volumetric_speed": [ "8" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG @EN3 Series.json index 781b808133a..0dff0ccce00 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGEN3", + "setting_id": "ij2hYApjrIsKHJyr", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG PRO @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG PRO @EN3 Series.json index c498f1e5987..d7b7d77e881 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG PRO @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG PRO @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROEN3", + "setting_id": "hcpl3lUmYmocda9K", "instantiation": "true", "filament_max_volumetric_speed": [ "8" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG Translucent @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG Translucent @EN3 Series.json index 971d53656eb..a5df1863a26 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG Translucent @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG Translucent @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSEN3", + "setting_id": "vvE6QSdUAwZyExFq", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-CF @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-CF @EN3 Series.json index f98b403cdbb..85b4e262ce5 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-CF @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-CF @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFEN3", + "setting_id": "w31T0qj9YkyNYfXR", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-GF @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-GF @EN3 Series.json index ac76ce31470..a0c6dffa1e2 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-GF @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-GF @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFEN3", + "setting_id": "Ss1cK4Mg4Qsmq60H", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA @EN3 Series.json index 18c3eaf3ec1..d2b79862c19 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAEN3", + "setting_id": "taDnu9cpJUbXdHoQ", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Basic @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Basic @EN3 Series.json index 143f339938f..d322e76d4af 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Basic @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Basic @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICEN3", + "setting_id": "HuzVgg6RrpAtYYEv", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Galaxy @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Galaxy @EN3 Series.json index fbc88fdbf42..70a9903ae67 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Galaxy @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Galaxy @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYEN3", + "setting_id": "BpZZWJcuFxWOCCnw", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Marble @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Marble @EN3 Series.json index 62a101c2682..b6e4d20992c 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Marble @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Marble @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEEN3", + "setting_id": "BxsWsE3wgE9wgBmm", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Matte @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Matte @EN3 Series.json index b67e97045de..8360ac8d5c4 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Matte @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Matte @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMEN3", + "setting_id": "L3da64GFIKUFdDJA", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA PRO @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA PRO @EN3 Series.json index 499675593ea..114e2640472 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA PRO @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA PRO @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROEN3", + "setting_id": "V7HUl0gBvGKwKD1A", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Silk @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Silk @EN3 Series.json index eee7f8f0961..d7fa7b836b8 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Silk @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Silk @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASEN3", + "setting_id": "ik0YrrrI6oUpXz79", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Sparkle @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Sparkle @EN3 Series.json index 1e1cdb862d8..b40ed87cf62 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Sparkle @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Sparkle @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEEN3", + "setting_id": "5NjKDHvQ2r1kxHGU", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Wood @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Wood @EN3 Series.json index 9726bfddafd..3d3ac38460d 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Wood @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Wood @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODEN3", + "setting_id": "aieihLgO1a0ZdWfJ", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA+ @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA+ @EN3 Series.json index d0b49cf32c8..00844dd1e8b 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA+ @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA+ @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSEN3", + "setting_id": "LqnrFp0vDbiCMJ8I", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA-CF @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA-CF @EN3 Series.json index d363ea70388..ab7ccd77308 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA-CF @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA-CF @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLACFEN3", + "setting_id": "1NWIyM71opgpoto1", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PETG @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PETG @EN3 Series.json index 485e9099300..30ca32476f7 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PETG @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PETG @EN3 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGEN3", + "setting_id": "WrjA1jFlRkBjm8sV", "instantiation": "true", "filament_max_volumetric_speed": [ "10" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PLA+ @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PLA+ @EN3 Series.json index 0f85ec1c3ee..a8755142d53 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PLA+ @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PLA+ @EN3 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSEN3", + "setting_id": "HLIz2ghBgZEcM67x", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid TPU 95A @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid TPU 95A @EN3 Series.json index 8d6a32d069d..0a9d3251b03 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid TPU 95A @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid TPU 95A @EN3 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @EN3 Series", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AEN3", + "setting_id": "q51os4xSncl4kA7h", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo TPU 95A @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo TPU 95A @EN3 Series.json index 6167f883898..864845cb2f1 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo TPU 95A @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo TPU 95A @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @EN3 Series", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ETPU95AEN3", + "setting_id": "4W6ZheJxNPUPxe1s", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo ASA @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo ASA @EN4 Series.json index 957e1ba7877..abea99e5f17 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo ASA @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo ASA @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @EN4 Series", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAEN4", + "setting_id": "a1NS4HIOx4RdcEcd", "instantiation": "true", "nozzle_temperature": [ "270" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG @EN4 Series.json index e604194970e..c972638218d 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGEN4", + "setting_id": "F2QHmHHESauqsO4I", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG PRO @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG PRO @EN4 Series.json index 397889ae25b..3f514f290c5 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG PRO @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG PRO @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROEN4", + "setting_id": "9vWaWFD7kELXCz9k", "instantiation": "true", "compatible_printers": [ "Elegoo Neptune 4 0.4 nozzle", diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG Translucent @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG Translucent @EN4 Series.json index 02eb8b44891..9d4befe58d7 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG Translucent @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG Translucent @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSEN4", + "setting_id": "MGNtc9J7whLEQzfo", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-CF @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-CF @EN4 Series.json index fb99debce7f..6b6d93b07e5 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-CF @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-CF @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFEN4", + "setting_id": "OqmWX74QvP3luz8T", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-GF @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-GF @EN4 Series.json index aa58c3fa8f7..9c60c025423 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-GF @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-GF @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFEN4", + "setting_id": "l9VHRBqMe9jvI5x6", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA @EN4 Series.json index 7534fbb94ce..e33665afb81 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAEN4", + "setting_id": "qZaGbJyYQ8uh1oFU", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Basic @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Basic @EN4 Series.json index 4567b161ad3..a35c8b06f35 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Basic @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Basic @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICEN4", + "setting_id": "djQpscbgnpi9yeDU", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Galaxy @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Galaxy @EN4 Series.json index 69484ece9c6..3b8b23e8d2b 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Galaxy @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Galaxy @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYEN4", + "setting_id": "rDOS8SneslZCJyiY", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Marble @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Marble @EN4 Series.json index d344d74cde6..6aaaa873119 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Marble @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Marble @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEEN4", + "setting_id": "EXITbaYE2JGd9m6w", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Matte @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Matte @EN4 Series.json index cf5145f8bac..b05ed89beb9 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Matte @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Matte @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMEN4", + "setting_id": "PKKBmF1QUn3byAbe", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA PRO @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA PRO @EN4 Series.json index bdf43eced65..d993878b350 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA PRO @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA PRO @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROEN4", + "setting_id": "912jZphbXGIftHOj", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Silk @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Silk @EN4 Series.json index 45d08957df5..0f01fc1e0e2 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Silk @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Silk @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASEN4", + "setting_id": "3Gwsgkj54YfChaTX", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Sparkle @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Sparkle @EN4 Series.json index 4e53eb86081..50750bf2cbf 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Sparkle @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Sparkle @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEEN4", + "setting_id": "fpSoENagRf6Xkgtr", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Wood @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Wood @EN4 Series.json index 9c604c79e5a..3e84f6da3f3 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Wood @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Wood @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODEN4", + "setting_id": "9HTUZ0mmSCp2asTR", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA+ @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA+ @EN4 Series.json index 2c666907927..569f2e4a73b 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA+ @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA+ @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSEN4", + "setting_id": "aFHpETdqnjrmKoh2", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA-CF @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA-CF @EN4 Series.json index f352877bd35..174db0000f3 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA-CF @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA-CF @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLACFEN4", + "setting_id": "tRWzBsYXsnpNVsQ4", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PETG @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PETG @EN4 Series.json index 3c58bc9f219..5355c6c52f5 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PETG @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PETG @EN4 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGEN4", + "setting_id": "fvbwrYR63t9NnL8m", "instantiation": "true", "fan_max_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PLA+ @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PLA+ @EN4 Series.json index b12b80cd453..024aa42f17f 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PLA+ @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PLA+ @EN4 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSEN4", + "setting_id": "Eu5Ao6aTdlnV5o7e", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid TPU 95A @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid TPU 95A @EN4 Series.json index 663b8fd0904..bcf333c3196 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid TPU 95A @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid TPU 95A @EN4 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @EN4 Series", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AEN4", + "setting_id": "0FWDHJF7V9rGXugP", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo TPU 95A @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo TPU 95A @EN4 Series.json index c141a0a8260..392812ff9a7 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo TPU 95A @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo TPU 95A @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @EN4 Series", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ETPU95AEN4", + "setting_id": "6pp381J3ahRYYtFE", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo ASA @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo ASA @Elegoo Giga.json index 3573c791700..fca1b001a8e 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo ASA @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo ASA @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @Elegoo Giga", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAEOSG00", + "setting_id": "YEKtGrB8gsvKz8XQ", "instantiation": "true", "filament_max_volumetric_speed": [ "30" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG @Elegoo Giga.json index 51b98600e9e..fa023243567 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @Elegoo Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGEOSG00", + "setting_id": "7XyTDotf1zFmCPTV", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG PRO @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG PRO @Elegoo Giga.json index cf29643e77e..e5a75475c32 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG PRO @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG PRO @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @Elegoo Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROEOSG00", + "setting_id": "cO87yMETWbUTIweN", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG Translucent @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG Translucent @Elegoo Giga.json index 6270895584f..61c21f7d5ff 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG Translucent @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG Translucent @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @Elegoo Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSEOSG00", + "setting_id": "fkE2LCMu63t1NQtI", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-CF @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-CF @Elegoo Giga.json index a7abae476e2..8f90166c6b2 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-CF @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-CF @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @Elegoo Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFEOSG00", + "setting_id": "uGF6puqnX1jW2pmn", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-GF @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-GF @Elegoo Giga.json index acea7ef222e..0d280b37cb1 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-GF @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-GF @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @Elegoo Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFEOSG00", + "setting_id": "S4ZpKZDyr5g5HMPi", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA @Elegoo Giga.json index a8349531469..32d6f6a1eb0 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAEOSG00", + "setting_id": "DzHDGa5SJa8wdZkD", "instantiation": "true", "filament_max_volumetric_speed": [ "30" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Basic @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Basic @Elegoo Giga.json index dd33bb73cb8..d49474bcfec 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Basic @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Basic @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICEOSG00", + "setting_id": "vdtyGUjloveBjsGV", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Galaxy @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Galaxy @Elegoo Giga.json index 0355d60abfc..c9ba6949abb 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Galaxy @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Galaxy @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYEOSG00", + "setting_id": "Nq1YaFeJ6Osr7OZ9", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Marble @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Marble @Elegoo Giga.json index 3e65b89ee27..435e05d0ab0 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Marble @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Marble @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEEOSG00", + "setting_id": "6mfjc7t9ntuG1ZKW", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Matte @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Matte @Elegoo Giga.json index aa47d8b1f82..9ab372abee3 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Matte @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Matte @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMEOSG00", + "setting_id": "mHbvYB78eds96SH8", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Sparkle @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Sparkle @Elegoo Giga.json index a05cdbfc97d..9b11bc2cae1 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Sparkle @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Sparkle @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEEOSG00", + "setting_id": "pgsOuYMxtcm3Fkar", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Wood @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Wood @Elegoo Giga.json index ebb837679c8..9dd74672fc2 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Wood @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Wood @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODEOSG00", + "setting_id": "BI2euv7xwM9F2hKC", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PETG @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PETG @Elegoo Giga.json index 45f0a1531fd..b91444664e1 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PETG @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PETG @Elegoo Giga.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @Elegoo Giga;Elegoo Rapid PETG @EOS Giga;Elegoo RAPID PETG @EOS Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGEOSG00", + "setting_id": "4ut2mjKopnW6tfxj", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PLA+ @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PLA+ @Elegoo Giga.json index ead9e3e26e7..da6b0baf352 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PLA+ @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PLA+ @Elegoo Giga.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @Elegoo Giga;Elegoo Rapid PLA+ @EOS Giga;Elegoo RAPID PLA+ @EOS Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAEOSG00", + "setting_id": "9I2DPoLgiCzn1S3i", "instantiation": "true", "filament_max_volumetric_speed": [ "30" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid TPU 95A @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid TPU 95A @Elegoo Giga.json index 62b45b495d5..f634875fd55 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid TPU 95A @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid TPU 95A @Elegoo Giga.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @Elegoo Giga;Elegoo Rapid TPU 95A @EOS Giga;Elegoo RAPID TPU 95A @EOS Giga", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AEOSG00", + "setting_id": "i0PeAUTlls9DGtRK", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo Centauri.json index 15394203330..b76858c450c 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Elegoo Centauri", "inherits": "Generic ABS @base", "from": "system", - "setting_id": "GABS00", + "setting_id": "xrKluVQuISBlBUu1", "instantiation": "true", "compatible_printers": [ "Elegoo Centauri 0.4 nozzle", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo.json index 5ca4dbc7d55..ff56f113f12 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "RWcQPhlCtjoh9xec", "name": "Generic ABS @Elegoo", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic ABS-CF @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic ABS-CF @Elegoo Centauri.json index 00baf4dd4a7..2ebff4843ed 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic ABS-CF @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic ABS-CF @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic ABS-CF @Elegoo Centauri", "inherits": "Generic ABS @base", "from": "system", - "setting_id": "GABSCF00", + "setting_id": "fRiriEvlcxDDO5tc", "instantiation": "true", "nozzle_temperature": [ "260" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic ASA @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic ASA @Elegoo.json index 6aea31620fa..eed4e746d9d 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic ASA @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic ASA @Elegoo.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "U5sKORLsVPcldRY9", "name": "Generic ASA @Elegoo", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic ASA-CF @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic ASA-CF @Elegoo Centauri.json index 9dd8d483d39..1fe27918697 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic ASA-CF @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic ASA-CF @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic ASA-CF @Elegoo Centauri", "inherits": "Generic ASA @base", "from": "system", - "setting_id": "GASACF00", + "setting_id": "S5kHIMcORjlPRnVs", "instantiation": "true", "filament_type": [ "ASA-CF" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PA @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PA @Elegoo.json index 285c7f4f3ce..06b8649f984 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PA @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PA @Elegoo.json @@ -3,7 +3,7 @@ "name": "Generic PA @Elegoo", "inherits": "Generic PA @base", "from": "system", - "setting_id": "GPA00", + "setting_id": "Fgy6uWnAWGPzt8Kn", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PA6-CF @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PA6-CF @Elegoo.json index d85cfeb65bd..46b8157cf42 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PA6-CF @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PA6-CF @Elegoo.json @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @Elegoo", "inherits": "Generic PA @base", "from": "system", - "setting_id": "GPA6CF00", + "setting_id": "TPgpyakWZ7NjVnj5", "instantiation": "true", "fan_min_speed": [ "10" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PC @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PC @Elegoo.json index 0ec151c97ff..359d9bf5b40 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PC @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PC @Elegoo.json @@ -3,7 +3,7 @@ "name": "Generic PC @Elegoo", "inherits": "Generic PC @base", "from": "system", - "setting_id": "GPC00", + "setting_id": "fByRyAZlMcqYvbOD", "instantiation": "true", "fan_cooling_layer_time": [ "35" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PC-CF @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PC-CF @Elegoo.json index 5778e9a5731..da160366dd1 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PC-CF @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PC-CF @Elegoo.json @@ -3,7 +3,7 @@ "name": "Generic PC-CF @Elegoo", "inherits": "Generic PC @base", "from": "system", - "setting_id": "GPCCF00", + "setting_id": "KMhdBJbiUeXxKgPS", "instantiation": "true", "filament_type": [ "PC-CF" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PET @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic PET @Elegoo Centauri.json index b119f96e133..3686abe5db8 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PET @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PET @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic PET @Elegoo Centauri", "inherits": "Generic PET @base", "from": "system", - "setting_id": "GPET00", + "setting_id": "Nn0ISgWlD53VIDtl", "instantiation": "true", "fan_cooling_layer_time": [ "8" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PET-CF @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic PET-CF @Elegoo Centauri.json index 4f8870e2595..4e9aa92be9b 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PET-CF @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PET-CF @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic PET-CF @Elegoo Centauri", "inherits": "Generic PET @base", "from": "system", - "setting_id": "GPETCF00", + "setting_id": "Q6wiKjigmzkcMxFz", "instantiation": "true", "filament_type": [ "PET-CF" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PETG @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PETG @Elegoo.json index 5fdd3b1e661..005d5b305ce 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PETG @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PETG @Elegoo.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "MJMg6nee4l28n2mK", "name": "Generic PETG @Elegoo", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json index 0943c9a4cb8..5287c675c4d 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "pKzSR8XeyyUDbrNW", "name": "Generic PETG PRO @Elegoo", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PETG-CF @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic PETG-CF @Elegoo Centauri.json index 6bd37edb40b..5e5e84e3dd4 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PETG-CF @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PETG-CF @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @Elegoo Centauri", "inherits": "Generic PETG @base", "from": "system", - "setting_id": "GPETGCF00", + "setting_id": "bWUrg1tIttzhMYlr", "instantiation": "true", "filament_type": [ "PETG-CF" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo Centauri.json index 6fd7df7a4c2..91941a09903 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Elegoo Centauri", "inherits": "Generic PLA @base", "from": "system", - "setting_id": "GPLA00", + "setting_id": "WDTVrLnXWUixyMcl", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo.json index ca3e23847af..d70a73e10e3 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "PaFKjG9jocZSHl76", "name": "Generic PLA @Elegoo", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PLA Matte @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PLA Matte @Elegoo.json index 6292e28bc51..db84f78382f 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PLA Matte @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PLA Matte @Elegoo.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "dH2Yf92iqsOj5XYo", "name": "Generic PLA Matte @Elegoo", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.2 nozzle.json index 2182159ca6e..395a1370ccb 100644 --- a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 0.2 nozzle", "inherits": "Elegoo Centauri 0.4 nozzle", "from": "system", - "setting_id": "EC02", + "setting_id": "XoxhdPS9GunkuReP", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json index 5dd0f6691c8..04ff476ec7c 100644 --- a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 0.4 nozzle", "inherits": "fdm_elegoo_3dp_001_common", "from": "system", - "setting_id": "EC04", + "setting_id": "Tzf5yPxAneRY9c7W", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.6 nozzle.json index 4ecb953e0c4..494c91346b4 100644 --- a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 0.6 nozzle", "inherits": "Elegoo Centauri 0.4 nozzle", "from": "system", - "setting_id": "EC06", + "setting_id": "jTSxLQlbwCsrFlqv", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.8 nozzle.json index f5273015c89..d107e2e1ef3 100644 --- a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 0.8 nozzle", "inherits": "Elegoo Centauri 0.4 nozzle", "from": "system", - "setting_id": "EC08", + "setting_id": "CAp2D99kAoNTTHAg", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.2 nozzle.json index e9200e91e70..8d3f8c8713b 100644 --- a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 2 0.2 nozzle", "inherits": "Elegoo Centauri 2 0.4 nozzle", "from": "system", - "setting_id": "EC202", + "setting_id": "m8Qdj0hA47eDYqRW", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.4 nozzle.json index 8f6d6238e5e..daace6439f7 100644 --- a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 2 0.4 nozzle", "inherits": "fdm_elegoo_3dp_001_common", "from": "system", - "setting_id": "EC204", + "setting_id": "oMZnP0H4FRc9GCSJ", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.6 nozzle.json index 759ba6398e8..d40967eda42 100644 --- a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 2 0.6 nozzle", "inherits": "Elegoo Centauri 2 0.4 nozzle", "from": "system", - "setting_id": "EC206", + "setting_id": "JjSXSI3aQLdsqvFO", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.8 nozzle.json index 25cba3ff612..e0a4c202684 100644 --- a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 2 0.8 nozzle", "inherits": "Elegoo Centauri 2 0.4 nozzle", "from": "system", - "setting_id": "EC208", + "setting_id": "KLhNXQpky6IUfmWz", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.2 nozzle.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.2 nozzle.json index 3cef4a53ff1..81b4f8df3e5 100644 --- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 0.2 nozzle", "inherits": "Elegoo Centauri Carbon 0.4 nozzle", "from": "system", - "setting_id": "ECC02", + "setting_id": "snOU0RMJW8uNmbap", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json index 5e3de2b1e69..91d674ca8ad 100644 --- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 0.4 nozzle", "inherits": "fdm_elegoo_3dp_001_common", "from": "system", - "setting_id": "ECC04", + "setting_id": "LyL8izVzYFaXHlPb", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.6 nozzle.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.6 nozzle.json index 3346bcba4dc..0e611ffd9d0 100644 --- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 0.6 nozzle", "inherits": "Elegoo Centauri Carbon 0.4 nozzle", "from": "system", - "setting_id": "ECC06", + "setting_id": "PuL9y6ue61mrGpzi", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.8 nozzle.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.8 nozzle.json index 2530afcc148..8f352bc08b1 100644 --- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 0.8 nozzle", "inherits": "Elegoo Centauri Carbon 0.4 nozzle", "from": "system", - "setting_id": "ECC08", + "setting_id": "lCZzm0T7xxIG25jo", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.2 nozzle.json b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.2 nozzle.json index 70c43efc021..1ad25e4fc21 100644 --- a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 2 0.2 nozzle", "inherits": "Elegoo Centauri Carbon 2 0.4 nozzle", "from": "system", - "setting_id": "ECC202", + "setting_id": "V2r3qWSf5W6ql5A9", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.4 nozzle.json b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.4 nozzle.json index 7b7c1619ea9..943dccb7dc2 100644 --- a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 2 0.4 nozzle", "inherits": "fdm_elegoo_3dp_001_common", "from": "system", - "setting_id": "ECC204", + "setting_id": "hjSig28o75Oxgd7J", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.6 nozzle.json b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.6 nozzle.json index 728579a1531..04ed973c5e0 100644 --- a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 2 0.6 nozzle", "inherits": "Elegoo Centauri Carbon 2 0.4 nozzle", "from": "system", - "setting_id": "ECC206", + "setting_id": "JshHPoQUPY5rrW4i", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.8 nozzle.json b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.8 nozzle.json index ae5db15153e..5694b1e59ba 100644 --- a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 2 0.8 nozzle", "inherits": "Elegoo Centauri Carbon 2 0.4 nozzle", "from": "system", - "setting_id": "ECC208", + "setting_id": "PFAN6GUXHbdiurYP", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.4 nozzle.json index 0cc544c1b3a..09536322ddc 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN104", + "setting_id": "zECkpVCtequEr3jC", "name": "Elegoo Neptune 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.6 nozzle.json index 871822ac527..739d2268537 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 0.6 nozzle", "inherits": "Elegoo Neptune 0.4 nozzle", "from": "system", - "setting_id": "EN106", + "setting_id": "dJSZaxrjMdr8NZmM", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.8 nozzle.json index 05e4e9480a0..379ffa1e966 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 0.8 nozzle", "inherits": "Elegoo Neptune 0.4 nozzle", "from": "system", - "setting_id": "EN108", + "setting_id": "ItXtnm9IlN7x2L4v", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.4 nozzle.json index 21f1e4eacd7..9f2c7283565 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN204", + "setting_id": "WButFYamVx0MBjUr", "name": "Elegoo Neptune 2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.6 nozzle.json index 289702899a9..d426517ea77 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2 0.6 nozzle", "inherits": "Elegoo Neptune 2 0.4 nozzle", "from": "system", - "setting_id": "EN206", + "setting_id": "cqs9rtbVF84El6mQ", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.8 nozzle.json index 115eee62336..812f5fa3849 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2 0.8 nozzle", "inherits": "Elegoo Neptune 2 0.4 nozzle", "from": "system", - "setting_id": "EN208", + "setting_id": "3UufhNki3YqAAGdK", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.4 nozzle.json index 52cbbe6ad9f..ae78964a9a4 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN2D04", + "setting_id": "9KnJva7m7E5M1quB", "name": "Elegoo Neptune 2D 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.6 nozzle.json index 80464a84852..ecec5896f86 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2D 0.6 nozzle", "inherits": "Elegoo Neptune 2D 0.4 nozzle", "from": "system", - "setting_id": "EN2D06", + "setting_id": "V8TJL5hhtqh5jxTD", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.8 nozzle.json index 60649c1baac..77de0297b64 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2D 0.8 nozzle", "inherits": "Elegoo Neptune 2D 0.4 nozzle", "from": "system", - "setting_id": "EN2D08", + "setting_id": "zBdxUOQ9Z0VSHf27", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.4 nozzle.json index 78e407fbc6f..e6ee656aadf 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN2S04", + "setting_id": "a8iTteroepkgXrLV", "name": "Elegoo Neptune 2S 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.6 nozzle.json index 41a15f684f7..ea066fd812c 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2S 0.6 nozzle", "inherits": "Elegoo Neptune 2S 0.4 nozzle", "from": "system", - "setting_id": "EN2S06", + "setting_id": "2jqqltrFF1c691PH", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.8 nozzle.json index cb408ddafb0..42719e4a0b0 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2S 0.8 nozzle", "inherits": "Elegoo Neptune 2S 0.4 nozzle", "from": "system", - "setting_id": "EN2S08", + "setting_id": "FAOkOzZYSPd5wvb4", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.4 nozzle.json index 660b05104cc..8766784dc62 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN304", + "setting_id": "rdKmVhTTrup3yqgA", "name": "Elegoo Neptune 3 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.6 nozzle.json index a2ed0f97a69..03fa96eb914 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 0.6 nozzle", "inherits": "Elegoo Neptune 3 0.4 nozzle", "from": "system", - "setting_id": "EN306", + "setting_id": "1DAAZUN7vSF4psKv", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.8 nozzle.json index 86894a65637..ad8d9157fce 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 0.8 nozzle", "inherits": "Elegoo Neptune 3 0.4 nozzle", "from": "system", - "setting_id": "EN308", + "setting_id": "VXYl3hwOhUqY7Qp2", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.4 nozzle.json index 7b07b18a3fd..6596abf85a4 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "ENX04", + "setting_id": "krz8Xh3MatGnm8pm", "name": "Elegoo Neptune X 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.6 nozzle.json index 2a73103c660..92237f66b94 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune X 0.6 nozzle", "inherits": "Elegoo Neptune X 0.4 nozzle", "from": "system", - "setting_id": "ENX06", + "setting_id": "tOSS0yXNuCbCwg3H", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.8 nozzle.json index 5f21d5af227..535f8a6ca79 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune X 0.8 nozzle", "inherits": "Elegoo Neptune X 0.4 nozzle", "from": "system", - "setting_id": "ENX08", + "setting_id": "zRvTUy0LSkhGeN0z", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.2 nozzle.json index 8c9c238d1ab..7b8d3fec8c8 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Max 0.2 nozzle", "inherits": "Elegoo Neptune 3 Max 0.4 nozzle", "from": "system", - "setting_id": "EN3Max02", + "setting_id": "G5NQq9PxbLuKm7Qq", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.4 nozzle.json index af7fb0a2f75..9aebe16dd21 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN3MAX04", + "setting_id": "8CM5vaCDh096ZzUs", "name": "Elegoo Neptune 3 Max 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.6 nozzle.json index f4e2f260139..5c678a5a015 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Max 0.6 nozzle", "inherits": "Elegoo Neptune 3 Max 0.4 nozzle", "from": "system", - "setting_id": "EN3Max06", + "setting_id": "gyXEi22nfynYutnt", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.8 nozzle.json index e70dc91e888..be84af288e6 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Max 0.8 nozzle", "inherits": "Elegoo Neptune 3 Max 0.4 nozzle", "from": "system", - "setting_id": "EN3Max08", + "setting_id": "iHe18x08x7EvXgTu", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 1.0 nozzle.json index 4003e686329..96d06852d7a 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Max 1.0 nozzle", "inherits": "Elegoo Neptune 3 Max 0.4 nozzle", "from": "system", - "setting_id": "EN3Max10", + "setting_id": "Ep5u0wG4Lcu1G1Uu", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.2 nozzle.json index 153ec5735cf..68fe5e80aa7 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Plus 0.2 nozzle", "inherits": "Elegoo Neptune 3 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN3Plus02", + "setting_id": "cCqmgZLewIRDq5Wk", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.4 nozzle.json index bc1a298d620..c53f7a7d7a7 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN3PLUS04", + "setting_id": "FylvH6NMzPbR9Bz6", "name": "Elegoo Neptune 3 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.6 nozzle.json index ef8d74398e0..5a5c4fe9eab 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Plus 0.6 nozzle", "inherits": "Elegoo Neptune 3 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN3Plus06", + "setting_id": "mIi6IBXu83TvmdFq", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.8 nozzle.json index 4485f563470..02546cd9b62 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Plus 0.8 nozzle", "inherits": "Elegoo Neptune 3 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN3Plus08", + "setting_id": "kWVh2kfVC5UwtWBp", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 1.0 nozzle.json index 34181afdd53..0bb4b3a9321 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Plus 1.0 nozzle", "inherits": "Elegoo Neptune 3 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN3Plus10", + "setting_id": "rgRZr00YVbeOIibg", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.2 nozzle.json index b1609d288d7..c23239d57c4 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Pro 0.2 nozzle", "inherits": "Elegoo Neptune 3 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN3Pro02", + "setting_id": "73sWSdtYxp1nWtet", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.4 nozzle.json index 3b40ba184f5..82798b02856 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN3PRO04", + "setting_id": "9vUFjjVwWAggcbwk", "name": "Elegoo Neptune 3 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.6 nozzle.json index 271bbfa58a5..855da0e62c0 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Pro 0.6 nozzle", "inherits": "Elegoo Neptune 3 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN3Pro06", + "setting_id": "dySDdgA29fbSGyAh", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.8 nozzle.json index 833bebd5136..e803cebd622 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Pro 0.8 nozzle", "inherits": "Elegoo Neptune 3 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN3Pro08", + "setting_id": "GOTa31fZoQO5DBD1", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 1.0 nozzle.json index d236bd37f29..48233a9297c 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Pro 1.0 nozzle", "inherits": "Elegoo Neptune 3 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN3Pro10", + "setting_id": "mfgMcZmlBBG3VCGQ", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.2 nozzle.json index 6fbeb9bc7ca..32ec7171635 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 0.2 nozzle", "inherits": "Elegoo Neptune 4 0.4 nozzle", "from": "system", - "setting_id": "EN402", + "setting_id": "YGH30n1CBw3of81j", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.4 nozzle.json index 20bd16ec6f0..fb3ca2d389e 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Elegoo Neptune 4 0.4 nozzle", "from": "system", - "setting_id": "EN404", + "setting_id": "69QdWuRQwAZk9rFu", "instantiation": "true", "inherits": "fdm_elegoo_3dp_001_common", "host_type": "elegoolink", diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.6 nozzle.json index eea51da2b50..6195ecf2324 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 0.6 nozzle", "inherits": "Elegoo Neptune 4 0.4 nozzle", "from": "system", - "setting_id": "EN406", + "setting_id": "hAlEcYQJUiRdXvP3", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.8 nozzle.json index 6e95538dacc..52483240b3b 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 0.8 nozzle", "inherits": "Elegoo Neptune 4 0.4 nozzle", "from": "system", - "setting_id": "EN408", + "setting_id": "2lAqJ4y4QPkkG3Eq", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 1.0 nozzle.json index 945fa4de2cd..1a8eb2d65d9 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 1.0 nozzle", "inherits": "Elegoo Neptune 4 0.4 nozzle", "from": "system", - "setting_id": "EN410", + "setting_id": "4HgOQhJrRHmdoUQC", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.2 nozzle.json index 4cbff15b308..5b863d5773b 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Max 0.2 nozzle", "inherits": "Elegoo Neptune 4 Max 0.4 nozzle", "from": "system", - "setting_id": "EN4MAX02", + "setting_id": "cnSthrwdZaeijtbD", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.4 nozzle.json index 1c90f02a937..08c9690cdaa 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Elegoo Neptune 4 Max 0.4 nozzle", "from": "system", - "setting_id": "EN4MAX04", + "setting_id": "Ie1QF4p1mjA7QqZf", "instantiation": "true", "inherits": "Elegoo Neptune 4 0.4 nozzle", "host_type": "elegoolink", diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.6 nozzle.json index 3c7584cefc0..0b117150b17 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Max 0.6 nozzle", "inherits": "Elegoo Neptune 4 Max 0.4 nozzle", "from": "system", - "setting_id": "EN4MAX06", + "setting_id": "DXxpsdZ4r73cfNT7", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.8 nozzle.json index bd60a815ddd..ca4c4dc0924 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Max 0.8 nozzle", "inherits": "Elegoo Neptune 4 Max 0.4 nozzle", "from": "system", - "setting_id": "EN4MAX08", + "setting_id": "licXMWyXGDavpuvu", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 1.0 nozzle.json index d279ef05d0d..a2127bebb90 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Max 1.0 nozzle", "inherits": "Elegoo Neptune 4 Max 0.4 nozzle", "from": "system", - "setting_id": "EN4MAX10", + "setting_id": "Ch4AZDWe7gKdw9hT", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.2 nozzle.json index 012bbb778cc..e0c66e51667 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Plus 0.2 nozzle", "inherits": "Elegoo Neptune 4 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN4PLUS02", + "setting_id": "i5vcoYRF6cqkYBg9", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.4 nozzle.json index c5380ef2b26..d6686b8bba0 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Elegoo Neptune 4 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN4PLUS04", + "setting_id": "Rc54LjtIhvBWRS2Y", "instantiation": "true", "inherits": "Elegoo Neptune 4 0.4 nozzle", "host_type": "elegoolink", diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.6 nozzle.json index a2b5a6d14c7..d038519e2e4 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Plus 0.6 nozzle", "inherits": "Elegoo Neptune 4 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN4PLUS06", + "setting_id": "nCRrAqumiiZpu5Re", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.8 nozzle.json index 772b78ad211..e4cbdaf7901 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Plus 0.8 nozzle", "inherits": "Elegoo Neptune 4 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN4PLUS08", + "setting_id": "CM0ZVy6UJRObNbMV", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 1.0 nozzle.json index f6e0797203a..d323f1b2941 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Plus 1.0 nozzle", "inherits": "Elegoo Neptune 4 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN4PLUS10", + "setting_id": "S8qunSr5mu2KwyHN", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.2 nozzle.json index ee782385977..ff7bd8fdf9a 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Pro 0.2 nozzle", "inherits": "Elegoo Neptune 4 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN4PRO02", + "setting_id": "tjxZec78rbpYkEM2", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.4 nozzle.json index ad047c80032..97b3ad8fea1 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Elegoo Neptune 4 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN4PRO04", + "setting_id": "H1wMUu4EMaiQzxeD", "instantiation": "true", "inherits": "Elegoo Neptune 4 0.4 nozzle", "host_type": "elegoolink", diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.6 nozzle.json index e84b383dacb..940da1c6a39 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Pro 0.6 nozzle", "inherits": "Elegoo Neptune 4 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN4PRO06", + "setting_id": "f9xvw4oHKtdZq7oq", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.8 nozzle.json index 9ee76903bb9..cdeebf75c36 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Pro 0.8 nozzle", "inherits": "Elegoo Neptune 4 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN4PRO08", + "setting_id": "nd5TLZa3xnDu1s4W", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 1.0 nozzle.json index 24dc8e0dadc..af2b183360f 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Pro 1.0 nozzle", "inherits": "Elegoo Neptune 4 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN4PRO10", + "setting_id": "eK8gxFLjDsdD2xzW", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.4 nozzle.json index eca11e5cc3d..c736700d38b 100644 --- a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo OrangeStorm Giga 0.4 nozzle", "inherits": "fdm_elegoo_3dp_001_common", "from": "system", - "setting_id": "EOSG04", + "setting_id": "PCZpqnHSGs2twFx9", "instantiation": "true", "host_type": "elegoolink", "printer_model": "Elegoo OrangeStorm Giga", diff --git a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.6 nozzle.json index 9947dc3027f..db9ac3f4ed2 100644 --- a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo OrangeStorm Giga 0.6 nozzle", "inherits": "Elegoo OrangeStorm Giga 0.4 nozzle", "from": "system", - "setting_id": "EOSG06", + "setting_id": "RuNyL7RmDS58vurf", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.8 nozzle.json index 606387e0cb3..6aff03dcbc8 100644 --- a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo OrangeStorm Giga 0.8 nozzle", "inherits": "Elegoo OrangeStorm Giga 0.4 nozzle", "from": "system", - "setting_id": "EOSG08", + "setting_id": "pdXtGNJKHmtMAO1x", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 1.0 nozzle.json index 078533436c4..02e35834f53 100644 --- a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo OrangeStorm Giga 1.0 nozzle", "inherits": "Elegoo OrangeStorm Giga 0.4 nozzle", "from": "system", - "setting_id": "EOSG10", + "setting_id": "YXzwDjQ5qWHTHCWH", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/process/EC/0.08mm Optimal @Elegoo C 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC/0.08mm Optimal @Elegoo C 0.2 nozzle.json index b166051e802..2312d6f0e67 100644 --- a/resources/profiles/Elegoo/process/EC/0.08mm Optimal @Elegoo C 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.08mm Optimal @Elegoo C 0.2 nozzle.json @@ -5,5 +5,6 @@ "layer_height": "0.08", "name": "0.08mm Optimal @Elegoo C 0.2 nozzle", "from": "system", + "setting_id": "YPAU0R4VfHdwXGMK", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.10mm Standard @Elegoo C 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC/0.10mm Standard @Elegoo C 0.2 nozzle.json index 190f105fa67..ab885cc0a76 100644 --- a/resources/profiles/Elegoo/process/EC/0.10mm Standard @Elegoo C 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.10mm Standard @Elegoo C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo C 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEC02010", + "setting_id": "t17reSCtAWQXkJAR", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "EC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/EC/0.12mm Draft @Elegoo C 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC/0.12mm Draft @Elegoo C 0.2 nozzle.json index 1c57d7e0e9e..8a775fd9d61 100644 --- a/resources/profiles/Elegoo/process/EC/0.12mm Draft @Elegoo C 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.12mm Draft @Elegoo C 0.2 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.12", "name": "0.12mm Draft @Elegoo C 0.2 nozzle", "from": "system", + "setting_id": "2syIUL3VOd1cnbjD", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.12mm Fine @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.12mm Fine @Elegoo C 0.4 nozzle.json index f2a4bcd0441..a94c0e7b2e5 100644 --- a/resources/profiles/Elegoo/process/EC/0.12mm Fine @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.12mm Fine @Elegoo C 0.4 nozzle.json @@ -5,5 +5,6 @@ "name": "0.12mm Fine @Elegoo C 0.4 nozzle", "from": "system", "wall_loops": "3", + "setting_id": "0S47zshoJbgOUinj", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.14mm Extra Draft @Elegoo C 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC/0.14mm Extra Draft @Elegoo C 0.2 nozzle.json index 814a1abc54d..d676fb31b1b 100644 --- a/resources/profiles/Elegoo/process/EC/0.14mm Extra Draft @Elegoo C 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.14mm Extra Draft @Elegoo C 0.2 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.14", "name": "0.14mm Extra Draft @Elegoo C 0.2 nozzle", "from": "system", + "setting_id": "6ibckorXgT6NdqHu", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.16mm Extra Fine @Elegoo C 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC/0.16mm Extra Fine @Elegoo C 0.8 nozzle.json index cb703dd456b..4cc9f531bb3 100644 --- a/resources/profiles/Elegoo/process/EC/0.16mm Extra Fine @Elegoo C 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.16mm Extra Fine @Elegoo C 0.8 nozzle.json @@ -5,5 +5,6 @@ "layer_height": "0.16", "name": "0.16mm Extra Fine @Elegoo C 0.8 nozzle", "from": "system", + "setting_id": "93O7HpujQ35rwBWc", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.16mm Optimal @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.16mm Optimal @Elegoo C 0.4 nozzle.json index 1e24d1acb68..4bce55dde70 100644 --- a/resources/profiles/Elegoo/process/EC/0.16mm Optimal @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.16mm Optimal @Elegoo C 0.4 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.16", "name": "0.16mm Optimal @Elegoo C 0.4 nozzle", "from": "system", + "setting_id": "KW2VknXy8J5A7ot5", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.18mm Fine @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.18mm Fine @Elegoo C 0.6 nozzle.json index 14057140386..212ac989de4 100644 --- a/resources/profiles/Elegoo/process/EC/0.18mm Fine @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.18mm Fine @Elegoo C 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.18", "name": "0.18mm Fine @Elegoo C 0.6 nozzle", "from": "system", + "setting_id": "Z2Qn4avdLVCcBmcZ", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.20mm Standard @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.20mm Standard @Elegoo C 0.4 nozzle.json index a96282125a7..de80f56dabb 100644 --- a/resources/profiles/Elegoo/process/EC/0.20mm Standard @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.20mm Standard @Elegoo C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Elegoo C 0.4 nozzle", "inherits": "fdm_process_elegoo_04020", "from": "system", - "setting_id": "PEC04020", + "setting_id": "GbYgIqQbql8QF0lX", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json index 7eca24de8e1..33702fa81df 100644 --- a/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json @@ -11,5 +11,6 @@ "sparse_infill_density": "20%", "top_shell_layers": "6", "wall_loops": "6", + "setting_id": "ICxi69TCESAQTBVb", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.24mm Draft @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.24mm Draft @Elegoo C 0.4 nozzle.json index 1d8ca7f8136..fa0edcba376 100644 --- a/resources/profiles/Elegoo/process/EC/0.24mm Draft @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.24mm Draft @Elegoo C 0.4 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.24", "name": "0.24mm Draft @Elegoo C 0.4 nozzle", "from": "system", + "setting_id": "eoyZK9tkjdL1ATi9", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.24mm Fine @Elegoo C 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC/0.24mm Fine @Elegoo C 0.8 nozzle.json index a80aef9772b..16dde5137eb 100644 --- a/resources/profiles/Elegoo/process/EC/0.24mm Fine @Elegoo C 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.24mm Fine @Elegoo C 0.8 nozzle.json @@ -5,5 +5,6 @@ "layer_height": "0.24", "name": "0.24mm Fine @Elegoo C 0.8 nozzle", "from": "system", + "setting_id": "HyulASCV51SI9Dgo", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.24mm Optimal @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.24mm Optimal @Elegoo C 0.6 nozzle.json index a414086f260..3e12c4cc8fd 100644 --- a/resources/profiles/Elegoo/process/EC/0.24mm Optimal @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.24mm Optimal @Elegoo C 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.24", "name": "0.24mm Optimal @Elegoo C 0.6 nozzle", "from": "system", + "setting_id": "2H4qamD9XBTs46M7", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.28mm Extra Draft @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.28mm Extra Draft @Elegoo C 0.4 nozzle.json index ae38860fcf5..a996b51d67a 100644 --- a/resources/profiles/Elegoo/process/EC/0.28mm Extra Draft @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.28mm Extra Draft @Elegoo C 0.4 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.28", "name": "0.28mm Extra Draft @Elegoo C 0.4 nozzle", "from": "system", + "setting_id": "R2evn20zXKqcB4Ro", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.30mm Standard @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.30mm Standard @Elegoo C 0.6 nozzle.json index 9b593203fa6..801f39e8c31 100644 --- a/resources/profiles/Elegoo/process/EC/0.30mm Standard @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.30mm Standard @Elegoo C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo C 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEC06030", + "setting_id": "055o82el12RWVvDx", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "EC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/EC/0.30mm Strength @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.30mm Strength @Elegoo C 0.6 nozzle.json index d2038b2e53f..d0d20b4fc7f 100644 --- a/resources/profiles/Elegoo/process/EC/0.30mm Strength @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.30mm Strength @Elegoo C 0.6 nozzle.json @@ -10,5 +10,6 @@ "sparse_infill_density": "15%", "top_surface_speed": "120", "wall_loops": "4", + "setting_id": "GtT1qn9vSWDdqBmm", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.32mm Optimal @Elegoo C 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC/0.32mm Optimal @Elegoo C 0.8 nozzle.json index 7a3450af56a..c98b6810e2a 100644 --- a/resources/profiles/Elegoo/process/EC/0.32mm Optimal @Elegoo C 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.32mm Optimal @Elegoo C 0.8 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.32", "name": "0.32mm Optimal @Elegoo C 0.8 nozzle", "from": "system", + "setting_id": "HDjwnNiVaWHvhyTX", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.36mm Draft @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.36mm Draft @Elegoo C 0.6 nozzle.json index d7bd66449f6..255e8ee255a 100644 --- a/resources/profiles/Elegoo/process/EC/0.36mm Draft @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.36mm Draft @Elegoo C 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.36", "name": "0.36mm Draft @Elegoo C 0.6 nozzle", "from": "system", + "setting_id": "AviieBSwRir1KzZr", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.40mm Standard @Elegoo C 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC/0.40mm Standard @Elegoo C 0.8 nozzle.json index b8fc2c36637..010b3f50ada 100644 --- a/resources/profiles/Elegoo/process/EC/0.40mm Standard @Elegoo C 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.40mm Standard @Elegoo C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo C 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEC08040", + "setting_id": "l2HZgbqMPub2XDa8", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "EC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/EC/0.42mm Extra Draft @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.42mm Extra Draft @Elegoo C 0.6 nozzle.json index e1110643c63..c146f09d588 100644 --- a/resources/profiles/Elegoo/process/EC/0.42mm Extra Draft @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.42mm Extra Draft @Elegoo C 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.42", "name": "0.42mm Extra Draft @Elegoo C 0.6 nozzle", "from": "system", + "setting_id": "ex5zv2heDmy6ZcbP", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.48mm Draft @Elegoo C 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC/0.48mm Draft @Elegoo C 0.8 nozzle.json index b4bc64ce9ce..8aea27b6ddd 100644 --- a/resources/profiles/Elegoo/process/EC/0.48mm Draft @Elegoo C 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.48mm Draft @Elegoo C 0.8 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.48", "name": "0.48mm Draft @Elegoo C 0.8 nozzle", "from": "system", + "setting_id": "ZFRRBIC9Z4OzSW7b", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.08mm Optimal @Elegoo C2 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.08mm Optimal @Elegoo C2 0.2 nozzle.json index 60b0ced3690..fb31e5b085d 100644 --- a/resources/profiles/Elegoo/process/EC2/0.08mm Optimal @Elegoo C2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.08mm Optimal @Elegoo C2 0.2 nozzle.json @@ -5,5 +5,6 @@ "inherits": "0.10mm Standard @Elegoo C2 0.2 nozzle", "layer_height": "0.08", "name": "0.08mm Optimal @Elegoo C2 0.2 nozzle", + "setting_id": "w51mhOmSGgIFKlYV", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.10mm Standard @Elegoo C2 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.10mm Standard @Elegoo C2 0.2 nozzle.json index 78cdf987002..d8227871b05 100644 --- a/resources/profiles/Elegoo/process/EC2/0.10mm Standard @Elegoo C2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.10mm Standard @Elegoo C2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo C2 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEC202010", + "setting_id": "KnVvhU4fKcdEbmdU", "instantiation": "true", "filename_format": "EC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "min_width_top_surface": "50%", diff --git a/resources/profiles/Elegoo/process/EC2/0.12mm Draft @Elegoo C2 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.12mm Draft @Elegoo C2 0.2 nozzle.json index cae436a40f5..2591f133fa7 100644 --- a/resources/profiles/Elegoo/process/EC2/0.12mm Draft @Elegoo C2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.12mm Draft @Elegoo C2 0.2 nozzle.json @@ -4,5 +4,6 @@ "inherits": "0.10mm Standard @Elegoo C2 0.2 nozzle", "layer_height": "0.12", "name": "0.12mm Draft @Elegoo C2 0.2 nozzle", + "setting_id": "MwbMs6dE4PKJjWEv", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.12mm Fine @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.12mm Fine @Elegoo C2 0.4 nozzle.json index a41d1ad4486..1e38bdedef4 100644 --- a/resources/profiles/Elegoo/process/EC2/0.12mm Fine @Elegoo C2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.12mm Fine @Elegoo C2 0.4 nozzle.json @@ -8,5 +8,6 @@ "support_bottom_z_distance": "0.2", "support_top_z_distance": "0.2", "top_solid_infill_flow_ratio": "1.09", + "setting_id": "NbPHZPuFyAdAwYxw", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.14mm Extra Draft @Elegoo C2 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.14mm Extra Draft @Elegoo C2 0.2 nozzle.json index f5a1ab77b5b..578cc189a1b 100644 --- a/resources/profiles/Elegoo/process/EC2/0.14mm Extra Draft @Elegoo C2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.14mm Extra Draft @Elegoo C2 0.2 nozzle.json @@ -4,5 +4,6 @@ "inherits": "0.10mm Standard @Elegoo C2 0.2 nozzle", "layer_height": "0.14", "name": "0.14mm Extra Draft @Elegoo C2 0.2 nozzle", + "setting_id": "WZYQH8ejJLFr3JKT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.16mm Extra Fine @Elegoo C2 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.16mm Extra Fine @Elegoo C2 0.8 nozzle.json index d98ebd5a56f..ee21a677adf 100644 --- a/resources/profiles/Elegoo/process/EC2/0.16mm Extra Fine @Elegoo C2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.16mm Extra Fine @Elegoo C2 0.8 nozzle.json @@ -5,5 +5,6 @@ "initial_layer_print_height": "0.3", "layer_height": "0.16", "name": "0.16mm Extra Fine @Elegoo C2 0.8 nozzle", + "setting_id": "8PjDabUQtqZkOYxb", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.16mm Optimal @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.16mm Optimal @Elegoo C2 0.4 nozzle.json index bbbf7acaf08..cbf804ad9c9 100644 --- a/resources/profiles/Elegoo/process/EC2/0.16mm Optimal @Elegoo C2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.16mm Optimal @Elegoo C2 0.4 nozzle.json @@ -4,5 +4,6 @@ "inherits": "0.20mm Standard @Elegoo C2 0.4 nozzle", "layer_height": "0.16", "name": "0.16mm Optimal @Elegoo C2 0.4 nozzle", + "setting_id": "cyxRTNBvYul3eWPq", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.18mm Fine @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.18mm Fine @Elegoo C2 0.6 nozzle.json index fdf882b519e..607c77fc1ae 100644 --- a/resources/profiles/Elegoo/process/EC2/0.18mm Fine @Elegoo C2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.18mm Fine @Elegoo C2 0.6 nozzle.json @@ -4,5 +4,6 @@ "inherits": "0.30mm Standard @Elegoo C2 0.6 nozzle", "layer_height": "0.18", "name": "0.18mm Fine @Elegoo C2 0.6 nozzle", + "setting_id": "CpTAuCMAczdOUFQv", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.20mm Standard @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.20mm Standard @Elegoo C2 0.4 nozzle.json index d9b5cfc96ac..d6edd968cc5 100644 --- a/resources/profiles/Elegoo/process/EC2/0.20mm Standard @Elegoo C2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.20mm Standard @Elegoo C2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Elegoo C2 0.4 nozzle", "inherits": "fdm_process_elegoo_04020", "from": "system", - "setting_id": "PEC204020", + "setting_id": "o5VRrzeZKCg339d5", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Elegoo/process/EC2/0.20mm Strength @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.20mm Strength @Elegoo C2 0.4 nozzle.json index dd8d59a711d..8a87b379c70 100644 --- a/resources/profiles/Elegoo/process/EC2/0.20mm Strength @Elegoo C2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.20mm Strength @Elegoo C2 0.4 nozzle.json @@ -12,5 +12,6 @@ "top_shell_layers": "6", "wall_loops": "5", "top_solid_infill_flow_ratio": "1.09", + "setting_id": "qE1gwHDiHsBUar05", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.24mm Draft @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.24mm Draft @Elegoo C2 0.4 nozzle.json index d3a6a058f35..3477713edc6 100644 --- a/resources/profiles/Elegoo/process/EC2/0.24mm Draft @Elegoo C2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.24mm Draft @Elegoo C2 0.4 nozzle.json @@ -4,5 +4,6 @@ "inherits": "0.20mm Standard @Elegoo C2 0.4 nozzle", "layer_height": "0.24", "name": "0.24mm Draft @Elegoo C2 0.4 nozzle", + "setting_id": "m8IwC70UUDsvEgDx", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.24mm Fine @Elegoo C2 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.24mm Fine @Elegoo C2 0.8 nozzle.json index 03b29b866b0..8a3d3f1baa8 100644 --- a/resources/profiles/Elegoo/process/EC2/0.24mm Fine @Elegoo C2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.24mm Fine @Elegoo C2 0.8 nozzle.json @@ -5,5 +5,6 @@ "initial_layer_print_height": "0.3", "layer_height": "0.24", "name": "0.24mm Fine @Elegoo C2 0.8 nozzle", + "setting_id": "aGRzp98JewtyCnJ5", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.24mm Optimal @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.24mm Optimal @Elegoo C2 0.6 nozzle.json index 28182911ba3..f8a86f303d7 100644 --- a/resources/profiles/Elegoo/process/EC2/0.24mm Optimal @Elegoo C2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.24mm Optimal @Elegoo C2 0.6 nozzle.json @@ -4,5 +4,6 @@ "inherits": "0.30mm Standard @Elegoo C2 0.6 nozzle", "layer_height": "0.24", "name": "0.24mm Optimal @Elegoo C2 0.6 nozzle", + "setting_id": "mg6YKeDhdAmVUnCp", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.28mm Extra Draft @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.28mm Extra Draft @Elegoo C2 0.4 nozzle.json index ea9a4e3b6d4..d763b38514e 100644 --- a/resources/profiles/Elegoo/process/EC2/0.28mm Extra Draft @Elegoo C2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.28mm Extra Draft @Elegoo C2 0.4 nozzle.json @@ -4,5 +4,6 @@ "inherits": "0.20mm Standard @Elegoo C2 0.4 nozzle", "layer_height": "0.28", "name": "0.28mm Extra Draft @Elegoo C2 0.4 nozzle", + "setting_id": "zLhSKg0WGU0C5hfV", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.30mm Standard @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.30mm Standard @Elegoo C2 0.6 nozzle.json index 50d47f331e9..a8a955903ea 100644 --- a/resources/profiles/Elegoo/process/EC2/0.30mm Standard @Elegoo C2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.30mm Standard @Elegoo C2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo C2 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEC206030", + "setting_id": "0TPOSfRKT0N1sYSc", "instantiation": "true", "filename_format": "EC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "min_width_top_surface": "50%", diff --git a/resources/profiles/Elegoo/process/EC2/0.30mm Strength @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.30mm Strength @Elegoo C2 0.6 nozzle.json index 1dc00d5bacb..52ff71723c7 100644 --- a/resources/profiles/Elegoo/process/EC2/0.30mm Strength @Elegoo C2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.30mm Strength @Elegoo C2 0.6 nozzle.json @@ -10,5 +10,6 @@ "sparse_infill_density": "15%", "top_surface_speed": "120", "wall_loops": "4", + "setting_id": "6Pdk7vUo7sxZ1H3r", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.32mm Optimal @Elegoo C2 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.32mm Optimal @Elegoo C2 0.8 nozzle.json index 640d0868822..46caf9ca4c3 100644 --- a/resources/profiles/Elegoo/process/EC2/0.32mm Optimal @Elegoo C2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.32mm Optimal @Elegoo C2 0.8 nozzle.json @@ -4,5 +4,6 @@ "inherits": "0.40mm Standard @Elegoo C2 0.8 nozzle", "layer_height": "0.32", "name": "0.32mm Optimal @Elegoo C2 0.8 nozzle", + "setting_id": "CctfduTuGLmoXTaG", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.36mm Draft @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.36mm Draft @Elegoo C2 0.6 nozzle.json index c7527ddb091..a4844613507 100644 --- a/resources/profiles/Elegoo/process/EC2/0.36mm Draft @Elegoo C2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.36mm Draft @Elegoo C2 0.6 nozzle.json @@ -4,5 +4,6 @@ "inherits": "0.30mm Standard @Elegoo C2 0.6 nozzle", "layer_height": "0.36", "name": "0.36mm Draft @Elegoo C2 0.6 nozzle", + "setting_id": "MEasFZeORQm7BzsT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.40mm Standard @Elegoo C2 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.40mm Standard @Elegoo C2 0.8 nozzle.json index 4a3f2c64dd8..de4387ebc42 100644 --- a/resources/profiles/Elegoo/process/EC2/0.40mm Standard @Elegoo C2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.40mm Standard @Elegoo C2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo C2 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEC208040", + "setting_id": "RSWkUTweJKRHUtBF", "instantiation": "true", "filename_format": "EC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "min_width_top_surface": "50%", diff --git a/resources/profiles/Elegoo/process/EC2/0.42mm Extra Draft @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.42mm Extra Draft @Elegoo C2 0.6 nozzle.json index 0cded0d217e..7ab59fecd26 100644 --- a/resources/profiles/Elegoo/process/EC2/0.42mm Extra Draft @Elegoo C2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.42mm Extra Draft @Elegoo C2 0.6 nozzle.json @@ -4,5 +4,6 @@ "inherits": "0.30mm Standard @Elegoo C2 0.6 nozzle", "layer_height": "0.42", "name": "0.42mm Extra Draft @Elegoo C2 0.6 nozzle", + "setting_id": "TbMqvWBwE7Hf6VdK", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.48mm Draft @Elegoo C2 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.48mm Draft @Elegoo C2 0.8 nozzle.json index 9ad99d4a3f7..17e29044469 100644 --- a/resources/profiles/Elegoo/process/EC2/0.48mm Draft @Elegoo C2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC2/0.48mm Draft @Elegoo C2 0.8 nozzle.json @@ -4,5 +4,6 @@ "inherits": "0.40mm Standard @Elegoo C2 0.8 nozzle", "layer_height": "0.48", "name": "0.48mm Draft @Elegoo C2 0.8 nozzle", + "setting_id": "8BBCLnwOPdqLlIIo", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.08mm Optimal @Elegoo CC 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.08mm Optimal @Elegoo CC 0.2 nozzle.json index 7d7156704bb..5673d993766 100644 --- a/resources/profiles/Elegoo/process/ECC/0.08mm Optimal @Elegoo CC 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.08mm Optimal @Elegoo CC 0.2 nozzle.json @@ -5,5 +5,6 @@ "layer_height": "0.08", "name": "0.08mm Optimal @Elegoo CC 0.2 nozzle", "from": "system", + "setting_id": "99XQJJWd9FHtXPEa", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.10mm Standard @Elegoo CC 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.10mm Standard @Elegoo CC 0.2 nozzle.json index 11ec27a7062..427c38f18b8 100644 --- a/resources/profiles/Elegoo/process/ECC/0.10mm Standard @Elegoo CC 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.10mm Standard @Elegoo CC 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo CC 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PECC02010", + "setting_id": "0ZFrD2yN2iKDfHMd", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "ECC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/ECC/0.12mm Draft @Elegoo CC 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.12mm Draft @Elegoo CC 0.2 nozzle.json index 998e6651856..4a21f48f653 100644 --- a/resources/profiles/Elegoo/process/ECC/0.12mm Draft @Elegoo CC 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.12mm Draft @Elegoo CC 0.2 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.12", "name": "0.12mm Draft @Elegoo CC 0.2 nozzle", "from": "system", + "setting_id": "LwyvYtJYTwvDlW5Z", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.12mm Fine @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.12mm Fine @Elegoo CC 0.4 nozzle.json index 1943e0cc9d1..66ca86dafad 100644 --- a/resources/profiles/Elegoo/process/ECC/0.12mm Fine @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.12mm Fine @Elegoo CC 0.4 nozzle.json @@ -5,5 +5,6 @@ "name": "0.12mm Fine @Elegoo CC 0.4 nozzle", "from": "system", "wall_loops": "3", + "setting_id": "340MqJEmv7j7xiOz", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.14mm Extra Draft @Elegoo CC 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.14mm Extra Draft @Elegoo CC 0.2 nozzle.json index 15d98f4e92c..f30ff023ab4 100644 --- a/resources/profiles/Elegoo/process/ECC/0.14mm Extra Draft @Elegoo CC 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.14mm Extra Draft @Elegoo CC 0.2 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.14", "name": "0.14mm Extra Draft @Elegoo CC 0.2 nozzle", "from": "system", + "setting_id": "Z5WZBJIWjzOpucn2", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.16mm Extra Fine @Elegoo CC 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.16mm Extra Fine @Elegoo CC 0.8 nozzle.json index 764bd47ae4c..6ea50dcd4d0 100644 --- a/resources/profiles/Elegoo/process/ECC/0.16mm Extra Fine @Elegoo CC 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.16mm Extra Fine @Elegoo CC 0.8 nozzle.json @@ -5,5 +5,6 @@ "layer_height": "0.16", "name": "0.16mm Extra Fine @Elegoo CC 0.8 nozzle", "from": "system", + "setting_id": "1pAr6ZTtBBXzHoUw", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.16mm Optimal @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.16mm Optimal @Elegoo CC 0.4 nozzle.json index 9b42314fbe1..20391d67ebd 100644 --- a/resources/profiles/Elegoo/process/ECC/0.16mm Optimal @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.16mm Optimal @Elegoo CC 0.4 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.16", "name": "0.16mm Optimal @Elegoo CC 0.4 nozzle", "from": "system", + "setting_id": "drsSvJoMY02R1hyF", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.18mm Fine @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.18mm Fine @Elegoo CC 0.6 nozzle.json index 8590fc78ddf..547b84689fc 100644 --- a/resources/profiles/Elegoo/process/ECC/0.18mm Fine @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.18mm Fine @Elegoo CC 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.18", "name": "0.18mm Fine @Elegoo CC 0.6 nozzle", "from": "system", + "setting_id": "bmv0UtvbzVHeOF4Q", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.20mm Standard @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.20mm Standard @Elegoo CC 0.4 nozzle.json index 9824d302fa6..cd262975c11 100644 --- a/resources/profiles/Elegoo/process/ECC/0.20mm Standard @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.20mm Standard @Elegoo CC 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Elegoo CC 0.4 nozzle", "inherits": "fdm_process_elegoo_04020", "from": "system", - "setting_id": "PECC04020", + "setting_id": "1cOVzUJxmCe20N5r", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json index 65d41c4e66c..c91e5af39df 100644 --- a/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json @@ -11,5 +11,6 @@ "sparse_infill_density": "20%", "top_shell_layers": "6", "wall_loops": "6", + "setting_id": "1OQrGLkl8fwRTEDT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.24mm Draft @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.24mm Draft @Elegoo CC 0.4 nozzle.json index 7be0da6faf4..e59c6de6b4c 100644 --- a/resources/profiles/Elegoo/process/ECC/0.24mm Draft @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.24mm Draft @Elegoo CC 0.4 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.24", "name": "0.24mm Draft @Elegoo CC 0.4 nozzle", "from": "system", + "setting_id": "PMeZoCKetIP9VQZM", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.24mm Fine @Elegoo CC 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.24mm Fine @Elegoo CC 0.8 nozzle.json index c2b6fd8ba0e..bacdbd0ca9a 100644 --- a/resources/profiles/Elegoo/process/ECC/0.24mm Fine @Elegoo CC 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.24mm Fine @Elegoo CC 0.8 nozzle.json @@ -5,5 +5,6 @@ "layer_height": "0.24", "name": "0.24mm Fine @Elegoo CC 0.8 nozzle", "from": "system", + "setting_id": "6sqS6WmJX9aYJymC", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.24mm Optimal @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.24mm Optimal @Elegoo CC 0.6 nozzle.json index 15fa1d2ff87..7e25c9177f7 100644 --- a/resources/profiles/Elegoo/process/ECC/0.24mm Optimal @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.24mm Optimal @Elegoo CC 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.24", "name": "0.24mm Optimal @Elegoo CC 0.6 nozzle", "from": "system", + "setting_id": "hIJP5FSSmLy6bMcK", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.28mm Extra Draft @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.28mm Extra Draft @Elegoo CC 0.4 nozzle.json index de68cb2f4da..1b03db5ce91 100644 --- a/resources/profiles/Elegoo/process/ECC/0.28mm Extra Draft @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.28mm Extra Draft @Elegoo CC 0.4 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.28", "name": "0.28mm Extra Draft @Elegoo CC 0.4 nozzle", "from": "system", + "setting_id": "6A6cE25ThuCqP7wi", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.30mm Standard @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.30mm Standard @Elegoo CC 0.6 nozzle.json index 49892afec7c..f3ad2f98aa2 100644 --- a/resources/profiles/Elegoo/process/ECC/0.30mm Standard @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.30mm Standard @Elegoo CC 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo CC 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PECC06030", + "setting_id": "87QQPl1ld2oF2Spt", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "ECC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/ECC/0.30mm Strength @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.30mm Strength @Elegoo CC 0.6 nozzle.json index 1f0a0fd403e..33d040c9845 100644 --- a/resources/profiles/Elegoo/process/ECC/0.30mm Strength @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.30mm Strength @Elegoo CC 0.6 nozzle.json @@ -10,5 +10,6 @@ "sparse_infill_density": "15%", "top_surface_speed": "120", "wall_loops": "4", + "setting_id": "b3rbevf3CUh8I05M", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.32mm Optimal @Elegoo CC 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.32mm Optimal @Elegoo CC 0.8 nozzle.json index b67ba901450..654a49c1c5e 100644 --- a/resources/profiles/Elegoo/process/ECC/0.32mm Optimal @Elegoo CC 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.32mm Optimal @Elegoo CC 0.8 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.32", "name": "0.32mm Optimal @Elegoo CC 0.8 nozzle", "from": "system", + "setting_id": "Kez7FhiJRPdChlgg", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.36mm Draft @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.36mm Draft @Elegoo CC 0.6 nozzle.json index 69dfcf490c3..eaed462a3ea 100644 --- a/resources/profiles/Elegoo/process/ECC/0.36mm Draft @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.36mm Draft @Elegoo CC 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.36", "name": "0.36mm Draft @Elegoo CC 0.6 nozzle", "from": "system", + "setting_id": "pigdfIs4DLj6QswL", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.40mm Standard @Elegoo CC 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.40mm Standard @Elegoo CC 0.8 nozzle.json index d6197b0696a..e78a7c9338d 100644 --- a/resources/profiles/Elegoo/process/ECC/0.40mm Standard @Elegoo CC 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.40mm Standard @Elegoo CC 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo CC 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PECC08040", + "setting_id": "sBpv5SSB4LkMosJG", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "ECC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/ECC/0.42mm Extra Draft @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.42mm Extra Draft @Elegoo CC 0.6 nozzle.json index d54e793dbca..c1fd90decf9 100644 --- a/resources/profiles/Elegoo/process/ECC/0.42mm Extra Draft @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.42mm Extra Draft @Elegoo CC 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.42", "name": "0.42mm Extra Draft @Elegoo CC 0.6 nozzle", "from": "system", + "setting_id": "griDT2q7IdUWT7hr", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.48mm Draft @Elegoo CC 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.48mm Draft @Elegoo CC 0.8 nozzle.json index 2fda573a201..775f5158376 100644 --- a/resources/profiles/Elegoo/process/ECC/0.48mm Draft @Elegoo CC 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.48mm Draft @Elegoo CC 0.8 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.48", "name": "0.48mm Draft @Elegoo CC 0.8 nozzle", "from": "system", + "setting_id": "tpCT2ow532mcwKcd", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.08mm Optimal @Elegoo CC2 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.08mm Optimal @Elegoo CC2 0.2 nozzle.json index 54fba6e34c1..82dc23f427a 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.08mm Optimal @Elegoo CC2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.08mm Optimal @Elegoo CC2 0.2 nozzle.json @@ -5,5 +5,6 @@ "layer_height": "0.08", "name": "0.08mm Optimal @Elegoo CC2 0.2 nozzle", "from": "system", + "setting_id": "uD5gceL1thOzkzGo", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.10mm Standard @Elegoo CC2 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.10mm Standard @Elegoo CC2 0.2 nozzle.json index ee0bd09959b..39569ca6506 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.10mm Standard @Elegoo CC2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.10mm Standard @Elegoo CC2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo CC2 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PECC202010", + "setting_id": "ozpRBEQqSZU7bZ1E", "instantiation": "true", "filename_format": "ECC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "min_width_top_surface": "50%", diff --git a/resources/profiles/Elegoo/process/ECC2/0.12mm Draft @Elegoo CC2 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.12mm Draft @Elegoo CC2 0.2 nozzle.json index bceec06988b..e570db58fce 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.12mm Draft @Elegoo CC2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.12mm Draft @Elegoo CC2 0.2 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.12", "name": "0.12mm Draft @Elegoo CC2 0.2 nozzle", "from": "system", + "setting_id": "cGFwf6ddNwMmqs9h", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.12mm Fine @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.12mm Fine @Elegoo CC2 0.4 nozzle.json index 23694d38cab..85705f0aa97 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.12mm Fine @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.12mm Fine @Elegoo CC2 0.4 nozzle.json @@ -8,5 +8,6 @@ "support_bottom_z_distance": "0.2", "support_top_z_distance": "0.2", "top_solid_infill_flow_ratio": "1.09", + "setting_id": "lRhdk46FwTwzcCYh", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.14mm Extra Draft @Elegoo CC2 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.14mm Extra Draft @Elegoo CC2 0.2 nozzle.json index 74cd23cdd15..69934b5680b 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.14mm Extra Draft @Elegoo CC2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.14mm Extra Draft @Elegoo CC2 0.2 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.14", "name": "0.14mm Extra Draft @Elegoo CC2 0.2 nozzle", "from": "system", + "setting_id": "falXCyvjKInAQBuU", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.16mm Extra Fine @Elegoo CC2 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.16mm Extra Fine @Elegoo CC2 0.8 nozzle.json index 8ea89a571f3..e5de49c2fc4 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.16mm Extra Fine @Elegoo CC2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.16mm Extra Fine @Elegoo CC2 0.8 nozzle.json @@ -5,5 +5,6 @@ "layer_height": "0.16", "name": "0.16mm Extra Fine @Elegoo CC2 0.8 nozzle", "from": "system", + "setting_id": "fkdUtfBU1HkWIIvT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.16mm Optimal @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.16mm Optimal @Elegoo CC2 0.4 nozzle.json index 5a8da79a6a0..82cebc57600 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.16mm Optimal @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.16mm Optimal @Elegoo CC2 0.4 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.16", "name": "0.16mm Optimal @Elegoo CC2 0.4 nozzle", "from": "system", + "setting_id": "et3r9GAefxCq9TSq", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.18mm Fine @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.18mm Fine @Elegoo CC2 0.6 nozzle.json index d51e48781a8..a8c83adc07c 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.18mm Fine @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.18mm Fine @Elegoo CC2 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.18", "name": "0.18mm Fine @Elegoo CC2 0.6 nozzle", "from": "system", + "setting_id": "zpijb8su3jIgrND9", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.20mm Standard @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.20mm Standard @Elegoo CC2 0.4 nozzle.json index 98bd16d30b9..ffa75691677 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.20mm Standard @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.20mm Standard @Elegoo CC2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Elegoo CC2 0.4 nozzle", "inherits": "fdm_process_elegoo_04020", "from": "system", - "setting_id": "PECC204020", + "setting_id": "pjHwBoHNTMAhLSbk", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Elegoo/process/ECC2/0.20mm Strength @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.20mm Strength @Elegoo CC2 0.4 nozzle.json index 8b7e1566ad5..d3374f99e05 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.20mm Strength @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.20mm Strength @Elegoo CC2 0.4 nozzle.json @@ -12,5 +12,6 @@ "top_shell_layers": "6", "wall_loops": "5", "top_solid_infill_flow_ratio": "1.09", + "setting_id": "jTiebnbHJERoOZ2Y", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.24mm Draft @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.24mm Draft @Elegoo CC2 0.4 nozzle.json index 13e957b4ae3..cb28d46e8d2 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.24mm Draft @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.24mm Draft @Elegoo CC2 0.4 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.24", "name": "0.24mm Draft @Elegoo CC2 0.4 nozzle", "from": "system", + "setting_id": "dw8ZgRee5mUlNdon", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.24mm Fine @Elegoo CC2 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.24mm Fine @Elegoo CC2 0.8 nozzle.json index 0c7b4da604a..1df6cf54a0e 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.24mm Fine @Elegoo CC2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.24mm Fine @Elegoo CC2 0.8 nozzle.json @@ -5,5 +5,6 @@ "layer_height": "0.24", "name": "0.24mm Fine @Elegoo CC2 0.8 nozzle", "from": "system", + "setting_id": "TrKMkazV6my94O8Q", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.24mm Optimal @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.24mm Optimal @Elegoo CC2 0.6 nozzle.json index 3a70741f2eb..e559bf36ca4 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.24mm Optimal @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.24mm Optimal @Elegoo CC2 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.24", "name": "0.24mm Optimal @Elegoo CC2 0.6 nozzle", "from": "system", + "setting_id": "VfcmVzpWGuafr5C8", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.28mm Extra Draft @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.28mm Extra Draft @Elegoo CC2 0.4 nozzle.json index 71e7f89f60f..f7259db276c 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.28mm Extra Draft @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.28mm Extra Draft @Elegoo CC2 0.4 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.28", "name": "0.28mm Extra Draft @Elegoo CC2 0.4 nozzle", "from": "system", + "setting_id": "iOd2EdXRnWMT6VZM", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.30mm Standard @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.30mm Standard @Elegoo CC2 0.6 nozzle.json index e5084f94d00..b61967211c1 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.30mm Standard @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.30mm Standard @Elegoo CC2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo CC2 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PECC206030", + "setting_id": "SgrmUzs20VxvAXM5", "instantiation": "true", "filename_format": "ECC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "min_width_top_surface": "50%", diff --git a/resources/profiles/Elegoo/process/ECC2/0.30mm Strength @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.30mm Strength @Elegoo CC2 0.6 nozzle.json index 72156732f55..7b67d63e18c 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.30mm Strength @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.30mm Strength @Elegoo CC2 0.6 nozzle.json @@ -10,5 +10,6 @@ "sparse_infill_density": "15%", "top_surface_speed": "120", "wall_loops": "4", + "setting_id": "qvgkuo9AInajHCez", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.32mm Optimal @Elegoo CC2 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.32mm Optimal @Elegoo CC2 0.8 nozzle.json index 16669f718f5..e84edc7edfa 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.32mm Optimal @Elegoo CC2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.32mm Optimal @Elegoo CC2 0.8 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.32", "name": "0.32mm Optimal @Elegoo CC2 0.8 nozzle", "from": "system", + "setting_id": "3l5lU1sBxbMAzV6x", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.36mm Draft @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.36mm Draft @Elegoo CC2 0.6 nozzle.json index 64f3b358aa6..41479b76b1a 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.36mm Draft @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.36mm Draft @Elegoo CC2 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.36", "name": "0.36mm Draft @Elegoo CC2 0.6 nozzle", "from": "system", + "setting_id": "S1MtBrEo884gfhm3", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.40mm Standard @Elegoo CC2 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.40mm Standard @Elegoo CC2 0.8 nozzle.json index 031bad98870..661c14a550d 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.40mm Standard @Elegoo CC2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.40mm Standard @Elegoo CC2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo CC2 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PECC208040", + "setting_id": "iN8bJaXB5zflWLxd", "instantiation": "true", "filename_format": "ECC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "min_width_top_surface": "50%", diff --git a/resources/profiles/Elegoo/process/ECC2/0.42mm Extra Draft @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.42mm Extra Draft @Elegoo CC2 0.6 nozzle.json index f0de5750b3b..debbe6ef13f 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.42mm Extra Draft @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.42mm Extra Draft @Elegoo CC2 0.6 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.42", "name": "0.42mm Extra Draft @Elegoo CC2 0.6 nozzle", "from": "system", + "setting_id": "Du73E9Zw3cOyKZYb", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.48mm Draft @Elegoo CC2 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.48mm Draft @Elegoo CC2 0.8 nozzle.json index 9719c6e6729..08006c453f0 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.48mm Draft @Elegoo CC2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.48mm Draft @Elegoo CC2 0.8 nozzle.json @@ -4,5 +4,6 @@ "layer_height": "0.48", "name": "0.48mm Draft @Elegoo CC2 0.8 nozzle", "from": "system", + "setting_id": "K7hJQ2Kzyu7kgmCx", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.12mm Fine @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.12mm Fine @Elegoo Neptune 0.4 nozzle.json index 634a7ca7adb..cd7a6f60ae1 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.12mm Fine @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.12mm Fine @Elegoo Neptune 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN204020", + "setting_id": "x7ZbjKUNtGbCsJWr", "from": "system", "inherits": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "name": "0.12mm Fine @Elegoo Neptune 0.4 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.16mm Optimal @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.16mm Optimal @Elegoo Neptune 0.4 nozzle.json index 13b13df710c..c6165063062 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.16mm Optimal @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.16mm Optimal @Elegoo Neptune 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN204020", + "setting_id": "dmdjW1ZxuWAXgArQ", "from": "system", "inherits": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "name": "0.16mm Optimal @Elegoo Neptune 0.4 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Standard @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Standard @Elegoo Neptune 0.4 nozzle.json index ee5b79d5eab..fce4e6ea2a2 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Standard @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Standard @Elegoo Neptune 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN204020", + "setting_id": "ivuelLxit3DxpCQf", "name": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Strength @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Strength @Elegoo Neptune 0.4 nozzle.json index 5f5f22e4f4c..e7c2cc64600 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Strength @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Strength @Elegoo Neptune 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN204020S", + "setting_id": "7o8beRTTV9kahf6c", "from": "system", "inherits": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "name": "0.20mm Strength @Elegoo Neptune 0.4 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Draft @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Draft @Elegoo Neptune 0.4 nozzle.json index 0a161324f76..939d9d3e0d3 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Draft @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Draft @Elegoo Neptune 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN204024", + "setting_id": "AQnZ1c7zUfkqHzUV", "from": "system", "inherits": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "name": "0.24mm Draft @Elegoo Neptune 0.4 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Fine @Elegoo Neptune 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Fine @Elegoo Neptune 0.8 nozzle.json index f74ad58c5ed..5ecf1d65970 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Fine @Elegoo Neptune 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Fine @Elegoo Neptune 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN208024", + "setting_id": "58PjDN7iOw2uuKCa", "from": "system", "name": "0.24mm Fine @Elegoo Neptune 0.8 nozzle", "inherits": "0.40mm Standard @Elegoo Neptune 0.8 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Optimal @Elegoo Neptune 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Optimal @Elegoo Neptune 0.6 nozzle.json index 66e5fd56cdf..4564e2836a4 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Optimal @Elegoo Neptune 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Optimal @Elegoo Neptune 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN206024", + "setting_id": "9TcC7ocHTTV5fO6u", "from": "system", "name": "0.24mm Optimal @Elegoo Neptune 0.6 nozzle", "inherits": "0.30mm Standard @Elegoo Neptune 0.6 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle.json index ba57c58a2a1..dc1f40365c6 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN204028", + "setting_id": "gZWSfkY2eEsk2BOj", "from": "system", "inherits": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.30mm Standard @Elegoo Neptune 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.30mm Standard @Elegoo Neptune 0.6 nozzle.json index a2839ad5577..16374edb761 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.30mm Standard @Elegoo Neptune 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.30mm Standard @Elegoo Neptune 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo Neptune 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN206030", + "setting_id": "G6dUEbP5KTftvQo9", "instantiation": "true", "filename_format": "{nozzle_diameter[0]}{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.32mm Optimal @Elegoo Neptune 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.32mm Optimal @Elegoo Neptune 0.8 nozzle.json index 00f7c188c9c..21508d6fcb7 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.32mm Optimal @Elegoo Neptune 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.32mm Optimal @Elegoo Neptune 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN208032", + "setting_id": "pubCZO4TSk26n9tN", "from": "system", "name": "0.32mm Optimal @Elegoo Neptune 0.8 nozzle", "inherits": "0.40mm Standard @Elegoo Neptune 0.8 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.36mm Draft @Elegoo Neptune 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.36mm Draft @Elegoo Neptune 0.6 nozzle.json index 7e34487561c..2c70c48f96c 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.36mm Draft @Elegoo Neptune 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.36mm Draft @Elegoo Neptune 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN206036", + "setting_id": "3uIERa8zvsPoVkk8", "from": "system", "name": "0.36mm Draft @Elegoo Neptune 0.6 nozzle", "inherits": "0.30mm Standard @Elegoo Neptune 0.6 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.40mm Standard @Elegoo Neptune 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.40mm Standard @Elegoo Neptune 0.8 nozzle.json index ca53203fbca..1889c3eb98a 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.40mm Standard @Elegoo Neptune 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.40mm Standard @Elegoo Neptune 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo Neptune 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN208040", + "setting_id": "OKge4BbgbchBlene", "instantiation": "true", "filename_format": "{nozzle_diameter[0]}{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle.json index bb17afbe119..d0deeae0cda 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN206042", + "setting_id": "xvfDVb6XEH8USrny", "from": "system", "name": "0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle", "inherits": "0.30mm Standard @Elegoo Neptune 0.6 nozzle", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Max 0.2 nozzle.json index 70667cfad82..c7551fea081 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Max 0.2 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.10mm Standard @Elegoo N3Max 0.2 nozzle", "layer_height": "0.08", - "settings_id": "PEN3Max02008", + "setting_id": "XEXWDtkuVN27Z0Ae", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Plus 0.2 nozzle.json index 3980245b37f..751845d1a73 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Plus 0.2 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.10mm Standard @Elegoo N3Plus 0.2 nozzle", "layer_height": "0.08", - "settings_id": "PEN3Plus02008", + "setting_id": "oRNlKaMaOZS6N4pT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Pro 0.2 nozzle.json index 11d0d4b480e..98dc95f83c7 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Pro 0.2 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.10mm Standard @Elegoo N3Pro 0.2 nozzle", "layer_height": "0.08", - "settings_id": "PEN3Pro02008", + "setting_id": "4d4rm5pkuVEpvKUA", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Max 0.2 nozzle.json index 3bc639009ce..2d7fab0c0e1 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N3Max 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN3Max02010", + "setting_id": "2Wskk71VCs9JiZyJ", "instantiation": "true", "filename_format": "EN3Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Plus 0.2 nozzle.json index 8acf8caf106..cafdb29a605 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Plus 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N3Plus 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN3Plus02010", + "setting_id": "ee55grIk19GJ6uR8", "instantiation": "true", "filename_format": "EN3Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Pro 0.2 nozzle.json index 4e5feb1dcb5..78c84996b20 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N3Pro 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN3Pro02010", + "setting_id": "VTvUwhwFLrsd34JB", "instantiation": "true", "filename_format": "EN3Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Max 0.2 nozzle.json index fc39c5e4a16..593b54ea295 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft @Elegoo N3Max 0.2 nozzle", "from": "system", "inherits": "0.10mm Standard @Elegoo N3Max 0.2 nozzle", + "setting_id": "0tL8rTEK1rEksfWu", "instantiation": "true", - "layer_height": "0.12", - "settings_id": "PEN3Max02012" + "layer_height": "0.12" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Plus 0.2 nozzle.json index 40cffba5cbe..ac73a53ff09 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Plus 0.2 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.10mm Standard @Elegoo N3Plus 0.2 nozzle", "layer_height": "0.12", - "instantiation": "true", - "settings_id": "PEN3Plus02012" + "setting_id": "4H7asjR6qAfYD1zA", + "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Pro 0.2 nozzle.json index eef4d17d1a7..93e00531627 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Pro 0.2 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.10mm Standard @Elegoo N3Pro 0.2 nozzle", "layer_height": "0.12", - "instantiation": "true", - "settings_id": "PEN3Pro02012" + "setting_id": "B5TzYBAO9JaSXfj8", + "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Max 0.4 nozzle.json index 9db14bf8252..df15921fc8c 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Max 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", "name": "0.12mm Fine @Elegoo N3Max 0.4 nozzle", "layer_height": "0.12", + "setting_id": "EvN6TYCeyMKxI6Re", "instantiation": "true", "wall_loops": "3", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune3Max;0.12mm Fine @Elegoo Neptune3Max" diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Plus 0.4 nozzle.json index 3278d30cdd9..3ea7659416a 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Plus 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", "name": "0.12mm Fine @Elegoo N3Plus 0.4 nozzle", "layer_height": "0.12", + "setting_id": "7BlZuuOXdqTj6cV6", "instantiation": "true", "wall_loops": "3", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune3Plus;0.12mm Fine @Elegoo Neptune3Plus" diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Pro 0.4 nozzle.json index 1bd640c23f3..e4e8b010405 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Pro 0.4 nozzle.json @@ -5,6 +5,7 @@ "name": "0.12mm Fine @Elegoo N3Pro 0.4 nozzle", "layer_height": "0.12", "wall_loops": "3", + "setting_id": "sxbVyUoQQwvDwEgm", "instantiation": "true", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune3;0.08mm Extra Fine @Elegoo Neptune3Pro;0.12mm Fine @Elegoo Neptune3;0.12mm Fine @Elegoo Neptune3Pro" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Max 0.4 nozzle.json index ff8039ad182..e6f3e04bc78 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Max 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", "name": "0.16mm Optimal @Elegoo N3Max 0.4 nozzle", "layer_height": "0.16", + "setting_id": "TCM0SNa96VA5Dx2H", "instantiation": "true", "renamed_from": "0.16mm Optimal @Elegoo Neptune3Max" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Plus 0.4 nozzle.json index f50d46cb7ba..bdcacf92c7d 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Plus 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", "name": "0.16mm Optimal @Elegoo N3Plus 0.4 nozzle", "layer_height": "0.16", + "setting_id": "WZhze0PkeqiyOdrj", "instantiation": "true", "renamed_from": "0.16mm Optimal @Elegoo Neptune3Plus" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Pro 0.4 nozzle.json index 671d0b990ad..823a13b1bef 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Pro 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", "name": "0.16mm Optimal @Elegoo N3Pro 0.4 nozzle", "layer_height": "0.16", + "setting_id": "xSjvTTFHSiKGi5vc", "instantiation": "true", "renamed_from": "0.16mm Optimal @Elegoo Neptune3;0.16mm Optimal @Elegoo Neptune3Pro" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Max 0.4 nozzle.json index c6110a312ba..badc9335beb 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Max 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN3Max04020", + "setting_id": "YVbjgCkFSIfI9zDy", "name": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Plus 0.4 nozzle.json index 9d92db7eb66..beb35d4ae75 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN3Plus04020", + "setting_id": "t2QdKzmUAoGrZTl2", "name": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Pro 0.4 nozzle.json index 0140bc50705..68635c0424a 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN3Pro04020", + "setting_id": "Z6E0SkSXvbyrgCwI", "name": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Max 0.4 nozzle.json index c06e6f39e9e..5e666a782f2 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Max 0.4 nozzle.json @@ -6,5 +6,6 @@ "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", "wall_loops": "6", + "setting_id": "F9cFxKIj5tmaKw0q", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Plus 0.4 nozzle.json index d5ca4b56962..b5b6ce375aa 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Plus 0.4 nozzle.json @@ -6,5 +6,6 @@ "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", "wall_loops": "6", + "setting_id": "dUTKuxKR2EutaNmT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Pro 0.4 nozzle.json index 036f332b6c2..a369fa15e41 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Pro 0.4 nozzle.json @@ -6,5 +6,6 @@ "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", "wall_loops": "6", + "setting_id": "8A1LaTaH5mFRXIRT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Max 0.4 nozzle.json index a7159453dd5..81bbeed8226 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Max 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", "name": "0.24mm Draft @Elegoo N3Max 0.4 nozzle", "layer_height": "0.24", + "setting_id": "4cjFrdHJQUTXPlhY", "instantiation": "true", "renamed_from": "0.24mm Draft @Elegoo Neptune3Max" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Plus 0.4 nozzle.json index e68d9d4fe6c..647186a2966 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Plus 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", "name": "0.24mm Draft @Elegoo N3Plus 0.4 nozzle", "layer_height": "0.24", + "setting_id": "YVe8MEaJXZUeE3h4", "instantiation": "true", "renamed_from": "0.24mm Draft @Elegoo Neptune3Plus" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Pro 0.4 nozzle.json index 3b689d5a5d4..84bfc064112 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Pro 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", "name": "0.24mm Draft @Elegoo N3Pro 0.4 nozzle", "layer_height": "0.24", + "setting_id": "D8EjvZ18sgk2kVfO", "instantiation": "true", "renamed_from": "0.24mm Draft @Elegoo Neptune3;0.24mm Draft @Elegoo Neptune3Pro" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Max 0.8 nozzle.json index 3e403a1ad64..9f1fb265ca7 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Max 0.8 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.40mm Standard @Elegoo N3Max 0.8 nozzle", "layer_height": "0.24", - "settings_id": "PEN3Max08024", + "setting_id": "AIFj2Nkig3Xe3f80", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Plus 0.8 nozzle.json index 64ba56f9c49..05753f96210 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Plus 0.8 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.40mm Standard @Elegoo N3Plus 0.8 nozzle", "layer_height": "0.24", - "settings_id": "PEN3Plus08024", + "setting_id": "Fo9SwcT3g26U1cJO", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Pro 0.8 nozzle.json index 81bd062ad62..2c43b42df2c 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine @Elegoo N3Pro 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N3Pro 0.8 nozzle", + "setting_id": "QEh6pEz7MS4x51QA", "instantiation": "true", - "layer_height": "0.24", - "settings_id": "PEN3Pro08024" + "layer_height": "0.24" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Max 0.6 nozzle.json index 967ce8bf367..9284fa65e49 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Max 0.6 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo N3Max 0.6 nozzle", "layer_height": "0.24", - "settings_id": "PEN3Max06024", + "setting_id": "sRz0TXDOEWnLxXh5", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Plus 0.6 nozzle.json index 2cc9a636ff8..dbf6f015057 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Plus 0.6 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo N3Plus 0.6 nozzle", "layer_height": "0.24", - "settings_id": "PEN3Plus06024", + "setting_id": "T7cpTs4IIK8zix8P", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Pro 0.6 nozzle.json index 194290617ca..a0fbc1a58b5 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Pro 0.6 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo N3Pro 0.6 nozzle", "layer_height": "0.24", - "settings_id": "PEN3Pro06024", + "setting_id": "T2QWt3peRdwFJFXE", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle.json index 2cf52c13db4..5feef5dfe9b 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle", "layer_height": "0.28", + "setting_id": "nJX8mCa1nrWxYsEd", "instantiation": "true", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune3Max" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle.json index 448507395d0..45b060a7484 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle", "layer_height": "0.28", + "setting_id": "7ZbuPzdEsBEeZlOC", "instantiation": "true", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune3Plus" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle.json index e2ba2ad12b9..fbfcb2f8c42 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle", "layer_height": "0.28", + "setting_id": "pcBUWmShCb8ii1Ro", "instantiation": "true", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune3;0.28mm Extra Draft @Elegoo Neptune3Pro" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Max 1.0 nozzle.json index e6ce9bc1cb9..524e5017722 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Max 1.0 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo N3Max 1.0 nozzle", "layer_height": "0.3", - "settings_id": "PEN3Max10030", + "setting_id": "HMDmYxoPgPEF3o2k", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Plus 1.0 nozzle.json index 2109c864f09..88ad4e385a1 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Plus 1.0 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo N3Plus 1.0 nozzle", "layer_height": "0.3", - "settings_id": "PEN3Plus10030", + "setting_id": "nnGIKTAThcIjqiNY", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Pro 1.0 nozzle.json index 95d3c0377bc..d33a7620be4 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Pro 1.0 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo N3Pro 1.0 nozzle", "layer_height": "0.3", - "settings_id": "PEN3Pro10030", + "setting_id": "PGLk0C6CFjdJgUD2", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Max 0.6 nozzle.json index c2db84bf684..466b789efa2 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N3Max 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN3Max06030", + "setting_id": "z1O6E4twbLkjJYv2", "instantiation": "true", "filename_format": "EN3Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "gap_infill_speed": "30", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Plus 0.6 nozzle.json index efc781e54b1..8917096b8cf 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N3Plus 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN3Plus06030", + "setting_id": "RQWF0SuJbkGyjytK", "instantiation": "true", "filename_format": "EN3Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Pro 0.6 nozzle.json index 8ad5630d5f8..097889e5a9e 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N3Pro 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN3Pro06030", + "setting_id": "u2AAcGYVL3ni7bTp", "instantiation": "true", "filename_format": "EN3Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Max 0.8 nozzle.json index d075cf55be0..540bafd1205 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Max 0.8 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.40mm Standard @Elegoo N3Max 0.8 nozzle", "layer_height": "0.32", - "settings_id": "PEN3Max08032", + "setting_id": "EuI4NCtPdnDgCwod", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Plus 0.8 nozzle.json index 0457d06ef23..de458909435 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Plus 0.8 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.40mm Standard @Elegoo N3Plus 0.8 nozzle", "layer_height": "0.32", - "settings_id": "PEN3Plus08032", + "setting_id": "cWbafri96E6xdetF", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Pro 0.8 nozzle.json index 703784d74a1..2b0823c3fb7 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Pro 0.8 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.40mm Standard @Elegoo N3Pro 0.8 nozzle", "layer_height": "0.32", - "settings_id": "PEN3Pro08032", + "setting_id": "JyNhgxXpE3QGd22F", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Max 0.6 nozzle.json index 067139083c0..3a5b561cb75 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Max 0.6 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo N3Max 0.6 nozzle", "layer_height": "0.36", - "settings_id": "PEN3Max06036", + "setting_id": "lyUQ9qqdlT3xOjLa", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Plus 0.6 nozzle.json index 320589fde72..ab050a47a53 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Plus 0.6 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo N3Plus 0.6 nozzle", "layer_height": "0.36", - "settings_id": "PEN3Plus06036", + "setting_id": "9fgmDydMRIQt1EMc", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Pro 0.6 nozzle.json index 9c52844f21a..4d306b8c9c1 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Pro 0.6 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo N3Pro 0.6 nozzle", "layer_height": "0.36", - "settings_id": "PEN3Pro06036", + "setting_id": "y577AyAVfQm2t7MC", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Max 1.0 nozzle.json index 44830a8f548..b385b6032bd 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Max 1.0 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo N3Max 1.0 nozzle", "layer_height": "0.4", - "settings_id": "PEN3Max10040", + "setting_id": "SVth0sMD2ndZBpxW", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Plus 1.0 nozzle.json index f3c48ae6cbf..86716529155 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Plus 1.0 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo N3Plus 1.0 nozzle", "layer_height": "0.4", - "settings_id": "PEN3Plus10040", + "setting_id": "Bg9wsz7gRUfhdsxO", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Pro 1.0 nozzle.json index ee475675137..24b31b6c1a6 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Pro 1.0 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo N3Pro 1.0 nozzle", "layer_height": "0.4", - "settings_id": "PEN3Pro10040", + "setting_id": "TTj088WcmPAL0J2v", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Max 0.8 nozzle.json index c2004e9d83c..4edd44ef462 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N3Max 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN3Max08040", + "setting_id": "QSzRaMgy7S9sJG2F", "instantiation": "true", "filename_format": "EN3Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "gap_infill_speed": "30", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Plus 0.8 nozzle.json index 9b919d09a6f..b77c7c93852 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N3Plus 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN3Plus08040", + "setting_id": "UV4kQ6560POkQRvi", "instantiation": "true", "filename_format": "EN3Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Pro 0.8 nozzle.json index 3d91eaa5d7b..bb1c6f23fbd 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N3Pro 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN3Pro08040", + "setting_id": "gj5ZiVs0wSyLTN5a", "instantiation": "true", "filename_format": "EN3Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle.json index 16a1e6b5a84..64e16d42070 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo N3Max 0.6 nozzle", "layer_height": "0.42", - "settings_id": "PEN3Max06042", + "setting_id": "q8wRFEbNbhFiR68s", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle.json index 6c9760b78d9..001039fd99f 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo N3Plus 0.6 nozzle", "layer_height": "0.42", - "settings_id": "PEN3Plus06042", + "setting_id": "S3XpelIawW7YF0tp", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle.json index af1a8c7dcd8..72aa6be9079 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo N3Pro 0.6 nozzle", "layer_height": "0.42", - "settings_id": "PEN3Pro06042", + "setting_id": "fZmtvPZ1k15dep6l", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Max 0.8 nozzle.json index c6690acf245..fc26633f8a2 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Max 0.8 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.40mm Standard @Elegoo N3Max 0.8 nozzle", "layer_height": "0.48", - "settings_id": "PEN3Max08048", + "setting_id": "xpdQ4VMjMsYWaLNA", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Plus 0.8 nozzle.json index a369a57ea62..f7286e3bb5d 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Plus 0.8 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.40mm Standard @Elegoo N3Plus 0.8 nozzle", "layer_height": "0.48", - "settings_id": "PEN3Plus08048", + "setting_id": "5H03Otf81sLLUkRT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Pro 0.8 nozzle.json index 30548cbc2b9..cb5da8f8daf 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Pro 0.8 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.40mm Standard @Elegoo N3Pro 0.8 nozzle", "layer_height": "0.48", - "settings_id": "PEN3Pro08048", + "setting_id": "kC1SOTD5KAkOvmkd", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Max 1.0 nozzle.json index 922578180e5..4c2aaf69f19 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Max 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N3Max 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN3Max10050", + "setting_id": "ebSwXa3yYyDzIDrI", "instantiation": "true", "filename_format": "EN3Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "gap_infill_speed": "30", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Plus 1.0 nozzle.json index f5fd1c19278..066fe6a839c 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Plus 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N3Plus 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN3Plus10050", + "setting_id": "rUKQaYnp5ihWK96M", "instantiation": "true", "filename_format": "EN3Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Pro 1.0 nozzle.json index 7e296aa7243..bfbec06ffe9 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Pro 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N3Pro 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN3Pro10050", + "setting_id": "Mkmgg4jTFaGvBJRe", "instantiation": "true", "filename_format": "EN3Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Max 1.0 nozzle.json index 72e7397945d..4334cd2fb82 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Max 1.0 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo N3Max 1.0 nozzle", "layer_height": "0.6", - "settings_id": "PEN3Max10060", + "setting_id": "VDAPQAbVmGJlCEUB", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Plus 1.0 nozzle.json index 23ed0f8d6e0..54172dcdbe5 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Plus 1.0 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo N3Plus 1.0 nozzle", "layer_height": "0.6", - "settings_id": "PEN3Plus10060", + "setting_id": "M67oOpMsXtZzCcLQ", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Pro 1.0 nozzle.json index b57bbd3d0da..26d78b0da3b 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Pro 1.0 nozzle.json @@ -4,6 +4,6 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo N3Pro 1.0 nozzle", "layer_height": "0.6", - "settings_id": "PEN3Pro10060", + "setting_id": "FTb0W3wG9mNPkONL", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4 0.2 nozzle.json index 0dad112da22..bb30a9622af 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4 0.2 nozzle.json @@ -3,8 +3,8 @@ "name": "0.08mm Optimal @Elegoo N4 0.2 nozzle", "from": "system", "inherits": "0.10mm Standard @Elegoo N4 0.2 nozzle", + "setting_id": "mPn1wANI8OeyLWGt", "instantiation": "true", "layer_height": "0.08", - "settings_id": "PEN402008", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 (0.2 nozzle);0.16mm Optimal @Elegoo Neptune4 (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Max 0.2 nozzle.json index ba80afe856a..93bcefb6150 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Max 0.2 nozzle.json @@ -3,8 +3,8 @@ "name": "0.08mm Optimal @Elegoo N4Max 0.2 nozzle", "from": "system", "inherits": "0.10mm Standard @Elegoo N4Max 0.2 nozzle", + "setting_id": "n72kCNTZ1ILUzaiJ", "instantiation": "true", "layer_height": "0.08", - "settings_id": "PEN4Max02008", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Max (0.2 nozzle);0.16mm Optimal @Elegoo Neptune4Max (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Plus 0.2 nozzle.json index b9691e4cea3..5f663fb35cb 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Plus 0.2 nozzle.json @@ -3,8 +3,8 @@ "name": "0.08mm Optimal @Elegoo N4Plus 0.2 nozzle", "from": "system", "inherits": "0.10mm Standard @Elegoo N4Plus 0.2 nozzle", + "setting_id": "apACoiYg6U3Z0xwK", "instantiation": "true", "layer_height": "0.08", - "settings_id": "PEN4Plus02008", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 Plus (0.2 nozzle);0.16mm Optimal @Elegoo Neptune4 Plus (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Pro 0.2 nozzle.json index 9eb3db5c3e4..ae08228f0f2 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Pro 0.2 nozzle.json @@ -3,8 +3,8 @@ "name": "0.08mm Optimal @Elegoo N4Pro 0.2 nozzle", "from": "system", "inherits": "0.10mm Standard @Elegoo N4Pro 0.2 nozzle", + "setting_id": "tY0jBQmvK2chT34r", "instantiation": "true", "layer_height": "0.08", - "settings_id": "PEN4Pro02008", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Pro (0.2 nozzle);0.16mm Optimal @Elegoo Neptune4Pro (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4 0.2 nozzle.json index 723b1211a23..fc4663a2fd5 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N4 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN402010", + "setting_id": "j8LrMhjmrrWEcnSl", "instantiation": "true", "filename_format": "EN4_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Max 0.2 nozzle.json index 34c1eee4c52..793f6945149 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N4Max 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN4Max02010", + "setting_id": "zFHnOUd2WXdPG1d0", "instantiation": "true", "filename_format": "EN4Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Plus 0.2 nozzle.json index 49a0a1799b0..4064775c341 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Plus 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N4Plus 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN4Plus02010", + "setting_id": "RpheR4sGaJlp7yJp", "instantiation": "true", "filename_format": "EN4Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Pro 0.2 nozzle.json index d0bc1739748..6f611b6f100 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N4Pro 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN4Pro02010", + "setting_id": "EH1TvdVsdTCuvv2c", "instantiation": "true", "filename_format": "EN4Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4 0.2 nozzle.json index 49dfb998241..fea092f942b 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4 0.2 nozzle.json @@ -3,8 +3,8 @@ "name": "0.12mm Draft @Elegoo N4 0.2 nozzle", "from": "system", "inherits": "0.10mm Standard @Elegoo N4 0.2 nozzle", + "setting_id": "Vis3rzOs4NILDE6C", "instantiation": "true", "layer_height": "0.12", - "settings_id": "PEN402012", "renamed_from": "0.12mm Fine @Elegoo Neptune4 (0.2 nozzle);0.24mm Draft @Elegoo Neptune4 (0.2 nozzle);0.28mm Extra Draft @Elegoo Neptune4 (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Max 0.2 nozzle.json index 0aa53952be5..318662d214a 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Max 0.2 nozzle.json @@ -3,8 +3,8 @@ "name": "0.12mm Draft @Elegoo N4Max 0.2 nozzle", "from": "system", "inherits": "0.10mm Standard @Elegoo N4Max 0.2 nozzle", + "setting_id": "BdbN0fjzy0GtRZty", "instantiation": "true", "layer_height": "0.12", - "settings_id": "PEN4Max02012", "renamed_from": "0.12mm Fine @Elegoo Neptune4Max (0.2 nozzle);0.24mm Draft @Elegoo Neptune4Max (0.2 nozzle);0.28mm Extra Draft @Elegoo Neptune4Max (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Plus 0.2 nozzle.json index b055131c4bb..5e6c3b13b0c 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Plus 0.2 nozzle.json @@ -3,8 +3,8 @@ "name": "0.12mm Draft @Elegoo N4Plus 0.2 nozzle", "from": "system", "inherits": "0.10mm Standard @Elegoo N4Plus 0.2 nozzle", + "setting_id": "zPlAvLncVwzD1wCI", "instantiation": "true", "layer_height": "0.12", - "settings_id": "PEN4Plus02012", "renamed_from": "0.12mm Fine @Elegoo Neptune4 Plus (0.2 nozzle);0.24mm Draft @Elegoo Neptune4 Plus (0.2 nozzle);0.28mm Extra Draft @Elegoo Neptune4 Plus (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Pro 0.2 nozzle.json index ff69030c05a..62ceae2703b 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Pro 0.2 nozzle.json @@ -3,8 +3,8 @@ "name": "0.12mm Draft @Elegoo N4Pro 0.2 nozzle", "from": "system", "inherits": "0.10mm Standard @Elegoo N4Pro 0.2 nozzle", + "setting_id": "UpIR8nVGr9eXImwd", "instantiation": "true", "layer_height": "0.12", - "settings_id": "PEN4Pro02012", "renamed_from": "0.12mm Fine @Elegoo Neptune4Pro (0.2 nozzle);0.24mm Draft @Elegoo Neptune4Pro (0.2 nozzle);0.28mm Extra Draft @Elegoo Neptune4Pro (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4 0.4 nozzle.json index e6ef37d76e5..4c4e045ce5d 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4 0.4 nozzle", + "setting_id": "RQ9dC2A0MkeEXleJ", "instantiation": "true", "name": "0.12mm Fine @Elegoo N4 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Max 0.4 nozzle.json index 42c0e4cd717..afd2451e061 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Max 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", + "setting_id": "YJTSqtPEGZDih9XE", "instantiation": "true", "name": "0.12mm Fine @Elegoo N4Max 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Plus 0.4 nozzle.json index 3a8068a8461..f69751563e1 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", + "setting_id": "9BipQyur4imL8jml", "instantiation": "true", "name": "0.12mm Fine @Elegoo N4Plus 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Pro 0.4 nozzle.json index bd4a6687b2c..500ba47b846 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Pro 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", + "setting_id": "iN9aVhyxLhUdhDdG", "instantiation": "true", "name": "0.12mm Fine @Elegoo N4Pro 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4 0.4 nozzle.json index 0fa0a4162f3..819552c6121 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4 0.4 nozzle", + "setting_id": "Cbq6b2Enl5dz7R61", "instantiation": "true", "name": "0.16mm Optimal @Elegoo N4 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Max 0.4 nozzle.json index 68f877196a0..05ad8379a9e 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Max 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", + "setting_id": "StpHJelrwAxTFcwx", "instantiation": "true", "name": "0.16mm Optimal @Elegoo N4Max 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Plus 0.4 nozzle.json index 78b4c853b88..b7e0e6bcb05 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", + "setting_id": "rldSbNbKZcfEVZqR", "instantiation": "true", "name": "0.16mm Optimal @Elegoo N4Plus 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Pro 0.4 nozzle.json index 59c8aabf23e..fe95ed6e044 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Pro 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", + "setting_id": "SNO9sWlpg5QylF2U", "instantiation": "true", "name": "0.16mm Optimal @Elegoo N4Pro 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4 0.4 nozzle.json index 7fa5fc41d1d..8904a2de162 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN404020", + "setting_id": "KX7Cn4tNCSa1BMpF", "name": "0.20mm Standard @Elegoo N4 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Max 0.4 nozzle.json index 5c10b66ed17..418d9824c03 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Max 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN4Max04020", + "setting_id": "6llMZka0sgQ4w50C", "name": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Plus 0.4 nozzle.json index 65048a36e72..316a5d8dec1 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN4Plus04020", + "setting_id": "EWip2jSpsehCzgdG", "name": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Pro 0.4 nozzle.json index f08d2190df9..d9d74a5fb08 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN4Pro04020", + "setting_id": "ev7Dl6VzLoldRKK3", "name": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4 0.4 nozzle.json index e8147b9fef8..7b3f4c2e64a 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N4 0.4 nozzle", "name": "0.20mm Strength @Elegoo N4 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", + "setting_id": "WBaSzHgrqKENej4G", "instantiation": "true", "reduce_crossing_wall": "1", "wall_loops": "6" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Max 0.4 nozzle.json index d6bb5068e64..54ad422763a 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Max 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", "name": "0.20mm Strength @Elegoo N4Max 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", + "setting_id": "HaK3rpieMESKs6PY", "instantiation": "true", "reduce_crossing_wall": "1", "wall_loops": "6" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Plus 0.4 nozzle.json index b29d23fbb48..831205c4d78 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Plus 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", "name": "0.20mm Strength @Elegoo N4Plus 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", + "setting_id": "ad0UueKfT6sGUn0I", "instantiation": "true", "reduce_crossing_wall": "1", "wall_loops": "6" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Pro 0.4 nozzle.json index 24f0f371061..0d475532a44 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Pro 0.4 nozzle.json @@ -4,6 +4,7 @@ "inherits": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", "name": "0.20mm Strength @Elegoo N4Pro 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", + "setting_id": "LrBDOuD4h741FItb", "instantiation": "true", "reduce_crossing_wall": "1", "wall_loops": "6" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4 0.4 nozzle.json index 787ca201610..e0a2eaabd99 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4 0.4 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.20mm Standard @Elegoo N4 0.4 nozzle", "name": "0.24mm Draft @Elegoo N4 0.4 nozzle", + "setting_id": "3bX9fmM7GOKwsWLc", "instantiation": "true", "layer_height": "0.24", "renamed_from": "0.24mm Draft @Elegoo Neptune4 (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Max 0.4 nozzle.json index 8b537d83838..7035c986c80 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Max 0.4 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", "name": "0.24mm Draft @Elegoo N4Max 0.4 nozzle", + "setting_id": "I5pPHYUqGEV4faQe", "instantiation": "true", "layer_height": "0.24", "renamed_from": "0.24mm Draft @Elegoo Neptune4Max (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Plus 0.4 nozzle.json index 4a004c308c8..aec452e1b04 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", "name": "0.24mm Draft @Elegoo N4Plus 0.4 nozzle", + "setting_id": "TUwtXktoDMUFiUjH", "instantiation": "true", "layer_height": "0.24", "renamed_from": "0.24mm Draft @Elegoo Neptune4 Plus (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Pro 0.4 nozzle.json index e24a9858dac..20acd0a27c2 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", "name": "0.24mm Draft @Elegoo N4Pro 0.4 nozzle", + "setting_id": "JSPwiPfUUfrEmRLx", "instantiation": "true", "layer_height": "0.24", "renamed_from": "0.24mm Draft @Elegoo Neptune4Pro (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4 0.8 nozzle.json index 2a2972b28b6..d093eeaf65d 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "0.24mm Fine @Elegoo N4 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N4 0.8 nozzle", + "setting_id": "HUtKrGQKYKgX2DSp", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN408024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 (0.8 nozzle);0.12mm Fine @Elegoo Neptune4 (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Max 0.8 nozzle.json index f494ee90a34..493fd9ff9ad 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Max 0.8 nozzle.json @@ -2,9 +2,9 @@ "type": "process", "name": "0.24mm Fine @Elegoo N4Max 0.8 nozzle", "from": "system", + "setting_id": "8eKtU9RlWvWk8MfS", "instantiation": "true", "inherits": "0.40mm Standard @Elegoo N4Max 0.8 nozzle", "layer_height": "0.24", - "settings_id": "PEN4Max08024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Max (0.8 nozzle);0.12mm Fine @Elegoo Neptune4Max (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Plus 0.8 nozzle.json index 6eac2ae6354..6bdaeb44c2f 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Plus 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "0.24mm Fine @Elegoo N4Plus 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N4Plus 0.8 nozzle", + "setting_id": "hRKqKq27wVaeLAPG", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN4Plus08024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 Plus (0.8 nozzle);0.12mm Fine @Elegoo Neptune4 Plus (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Pro 0.8 nozzle.json index fddbbcd9b0c..2449ed7c4be 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Pro 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "0.24mm Fine @Elegoo N4Pro 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N4Pro 0.8 nozzle", + "setting_id": "OcNAeI4a7QtbFJ6W", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN4Pro08024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Pro (0.8 nozzle);0.12mm Fine @Elegoo Neptune4Pro (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4 0.6 nozzle.json index 43e630ac95f..ff72b55af43 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.24mm Optimal @Elegoo N4 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4 0.6 nozzle", + "setting_id": "EX3MNVdWZSogtuND", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN406024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 (0.6 nozzle);0.12mm Fine @Elegoo Neptune4 (0.6 nozzle);0.16mm Optimal @Elegoo Neptune4 (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Max 0.6 nozzle.json index 67d13d05da8..e54636a0b68 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Max 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.24mm Optimal @Elegoo N4Max 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4Max 0.6 nozzle", + "setting_id": "KvtJF6N8LWqwgBJu", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN4Max06024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Max (0.6 nozzle);0.12mm Fine @Elegoo Neptune4Max (0.6 nozzle);0.16mm Optimal @Elegoo Neptune4Max (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Plus 0.6 nozzle.json index 9065bbeec62..fcbc9a90662 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Plus 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.24mm Optimal @Elegoo N4Plus 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4Plus 0.6 nozzle", + "setting_id": "vVYW2JeI230MxnFV", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN4Plus06024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 Plus (0.6 nozzle);0.12mm Fine @Elegoo Neptune4 Plus (0.6 nozzle);0.16mm Optimal @Elegoo Neptune4 Plus (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Pro 0.6 nozzle.json index bf4b1c93857..9f225d96f5d 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Pro 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.24mm Optimal @Elegoo N4Pro 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4Pro 0.6 nozzle", + "setting_id": "3mpKq49ZsvU2jr1J", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN4Pro06024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Pro (0.6 nozzle);0.12mm Fine @Elegoo Neptune4Pro (0.6 nozzle);0.16mm Optimal @Elegoo Neptune4Pro (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4 0.4 nozzle.json index 263d39c4f87..3495255fee0 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4 0.4 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.20mm Standard @Elegoo N4 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N4 0.4 nozzle", + "setting_id": "d1EZu3O7DCEtvUo9", "instantiation": "true", "layer_height": "0.28", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4 (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle.json index 0c396cbbdd0..316c9f93767 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle", + "setting_id": "uBXPR8bbDu4tnfZ7", "instantiation": "true", "layer_height": "0.28", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4Max (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle.json index 23b0fd385ff..195d30d1258 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle", + "setting_id": "McXTTMnfUYmOZHcI", "instantiation": "true", "layer_height": "0.28", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4 Plus (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle.json index f7abdbd14e0..98e5594b4c2 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle", + "setting_id": "qIl89vLzpnjOmZMG", "instantiation": "true", "layer_height": "0.28", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4Pro (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4 1.0 nozzle.json index e221ca366c5..f159ca8b8e3 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Fine @Elegoo N4 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4 1.0 nozzle", + "setting_id": "LSxHoq8lDbiY0WwD", "instantiation": "true", - "layer_height": "0.3", - "settings_id": "PEN410030" + "layer_height": "0.3" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Max 1.0 nozzle.json index d132f266110..4dda55dcb90 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Max 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Fine @Elegoo N4Max 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4Max 1.0 nozzle", + "setting_id": "Usm5LQIdEG5qte0Z", "instantiation": "true", - "layer_height": "0.3", - "settings_id": "PEN4Max10030" + "layer_height": "0.3" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Plus 1.0 nozzle.json index 731762393ed..57db88d6c09 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Plus 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Fine @Elegoo N4Plus 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4Plus 1.0 nozzle", + "setting_id": "sSKLKqIlQsgkvBoj", "instantiation": "true", - "layer_height": "0.3", - "settings_id": "PEN4Plus10030" + "layer_height": "0.3" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Pro 1.0 nozzle.json index 370e8cdc0a4..3b9ca2ba344 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Pro 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Fine @Elegoo N4Pro 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4Pro 1.0 nozzle", + "setting_id": "Fs44Eg0QxZTwNB4i", "instantiation": "true", - "layer_height": "0.3", - "settings_id": "PEN4Pro10030" + "layer_height": "0.3" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4 0.6 nozzle.json index a4e6bd5921e..4b0d1d7041e 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N4 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN406030", + "setting_id": "X0otPkxfrqhtmKyX", "instantiation": "true", "filename_format": "EN4_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Max 0.6 nozzle.json index 1e2ca7c8898..9f10ee23f41 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N4Max 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN4Max06030", + "setting_id": "Vy5RnlR6iFs2Uo4Z", "instantiation": "true", "filename_format": "EN4Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Plus 0.6 nozzle.json index e40635dcdf8..653de53108c 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N4Plus 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN4Plus06030", + "setting_id": "VtWElYWASazfYCCd", "instantiation": "true", "filename_format": "EN4Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Pro 0.6 nozzle.json index f97ea71506c..603c81acb4c 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N4Pro 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN4Pro06030", + "setting_id": "rNfnCbVknDzyGq7a", "instantiation": "true", "filename_format": "EN4Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4 0.8 nozzle.json index 080c90307f8..444ca610ff7 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "0.32mm Optimal @Elegoo N4 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N4 0.8 nozzle", + "setting_id": "qzrXP9bCuf6aoqg6", "instantiation": "true", "layer_height": "0.32", - "settings_id": "PEN408032", "renamed_from": "0.16mm Optimal @Elegoo Neptune4 (0.8 nozzle);0.28mm Extra Draft @Elegoo Neptune4 (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Max 0.8 nozzle.json index 56d4e2cb626..b27212d71a7 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Max 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "0.32mm Optimal @Elegoo N4Max 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N4Max 0.8 nozzle", + "setting_id": "G3FnBHsN3NV7ZfTR", "instantiation": "true", "layer_height": "0.32", - "settings_id": "PEN4Max08032", "renamed_from": "0.16mm Optimal @Elegoo Neptune4Max (0.8 nozzle);0.28mm Extra Draft @Elegoo Neptune4Max (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Plus 0.8 nozzle.json index fafb43e2159..ab89009c716 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Plus 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "0.32mm Optimal @Elegoo N4Plus 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N4Plus 0.8 nozzle", + "setting_id": "xbAlLK2WW32kCp3z", "instantiation": "true", "layer_height": "0.32", - "settings_id": "PEN4Plus08032", "renamed_from": "0.16mm Optimal @Elegoo Neptune4 Plus (0.8 nozzle);0.28mm Extra Draft @Elegoo Neptune4 Plus (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Pro 0.8 nozzle.json index ba5ddd7a6e6..2dd5be1fbf1 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Pro 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "0.32mm Optimal @Elegoo N4Pro 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N4Pro 0.8 nozzle", + "setting_id": "KOk0kTX3EelPCG3R", "instantiation": "true", "layer_height": "0.32", - "settings_id": "PEN4Pro08032", "renamed_from": "0.16mm Optimal @Elegoo Neptune4Pro (0.8 nozzle);0.28mm Extra Draft @Elegoo Neptune4Pro (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4 0.6 nozzle.json index b9c17d21184..827c319064b 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.36mm Draft @Elegoo N4 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4 0.6 nozzle", + "setting_id": "RPUd5w4RMBgxhvgu", "instantiation": "true", "layer_height": "0.36", - "settings_id": "PEN406036", "renamed_from": "0.24mm Draft @Elegoo Neptune4 (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Max 0.6 nozzle.json index e62dd8d1ddf..1facc52b31e 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Max 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.36mm Draft @Elegoo N4Max 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4Max 0.6 nozzle", + "setting_id": "C9QhIRg3uvqiceM9", "instantiation": "true", "layer_height": "0.36", - "settings_id": "PEN4Max06036", "renamed_from": "0.24mm Draft @Elegoo Neptune4Max (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Plus 0.6 nozzle.json index 0277e372aa0..6e05f6655f2 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Plus 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.36mm Draft @Elegoo N4Plus 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4Plus 0.6 nozzle", + "setting_id": "6LT83N9zzhnyndd1", "instantiation": "true", "layer_height": "0.36", - "settings_id": "PEN4Plus06036", "renamed_from": "0.24mm Draft @Elegoo Neptune4 Plus (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Pro 0.6 nozzle.json index f2acef1bb6c..73802507795 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Pro 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.36mm Draft @Elegoo N4Pro 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4Pro 0.6 nozzle", + "setting_id": "uV8fOfHicJZXuBrG", "instantiation": "true", "layer_height": "0.36", - "settings_id": "PEN4Pro06036", "renamed_from": "0.24mm Draft @Elegoo Neptune4Pro (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4 1.0 nozzle.json index cbf5debacd0..e1c9dc2ebf9 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Optimal @Elegoo N4 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4 1.0 nozzle", + "setting_id": "knCmCemB0pCsXI9H", "instantiation": "true", - "layer_height": "0.4", - "settings_id": "PEN410040" + "layer_height": "0.4" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Max 1.0 nozzle.json index cc763bdd166..2db783f9c12 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Max 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Optimal @Elegoo N4Max 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4Max 1.0 nozzle", + "setting_id": "O0MSBh9OeaZDP7ow", "instantiation": "true", - "layer_height": "0.4", - "settings_id": "PEN4Max10040" + "layer_height": "0.4" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Plus 1.0 nozzle.json index 3345107a2d0..f5abebabbb9 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Plus 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Optimal @Elegoo N4Plus 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4Plus 1.0 nozzle", + "setting_id": "rxq0eIQKDme3F1Es", "instantiation": "true", - "layer_height": "0.4", - "settings_id": "PEN4Plus10040" + "layer_height": "0.4" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Pro 1.0 nozzle.json index b63cef06bb7..56bc5cd0968 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Pro 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Optimal @Elegoo N4Pro 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4Pro 1.0 nozzle", + "setting_id": "tc7tn1h9Sf3B0D0X", "instantiation": "true", - "layer_height": "0.4", - "settings_id": "PEN4Pro10040" + "layer_height": "0.4" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4 0.8 nozzle.json index 15058a29b21..a07bccbda11 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N4 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN408040", + "setting_id": "VnE7I5kpYjaWE9TQ", "instantiation": "true", "filename_format": "EN4_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Max 0.8 nozzle.json index 908bb3b1909..c3fd42ae086 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N4Max 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN4Max08040", + "setting_id": "tgLcMBDWsMF48oRZ", "instantiation": "true", "filename_format": "EN4Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Plus 0.8 nozzle.json index f30cbf4af40..768d30d0a18 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N4Plus 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN4Plus08040", + "setting_id": "9o2i5h6e4I7l7QOg", "instantiation": "true", "filename_format": "EN4Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Pro 0.8 nozzle.json index 97438369549..5cd78291fcd 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N4Pro 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN4Pro08040", + "setting_id": "xFnwaHCJymLM4Bgb", "instantiation": "true", "filename_format": "EN4Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4 0.6 nozzle.json index cd924751879..1c43c12f8b6 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.42mm Extra Draft @Elegoo N4 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4 0.6 nozzle", + "setting_id": "XlLhnDcy7S6BcaFE", "instantiation": "true", "layer_height": "0.42", - "settings_id": "PEN406042", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4 (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle.json index 0e8365f94c9..f6d276ebb68 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4Max 0.6 nozzle", + "setting_id": "oPxKL0bgR2gX0Ijh", "instantiation": "true", "layer_height": "0.42", - "settings_id": "PEN4Max06042", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4Max (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle.json index 22ee9c97954..7def2341c6b 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4Plus 0.6 nozzle", + "setting_id": "qY9HPvv16AZMQj4O", "instantiation": "true", "layer_height": "0.42", - "settings_id": "PEN4Plus06042", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4 Plus (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle.json index 8fe9419f0e8..d060f493844 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle", "from": "system", "inherits": "0.30mm Standard @Elegoo N4Pro 0.6 nozzle", + "setting_id": "o1GuCAN5AF2cjFRZ", "instantiation": "true", "layer_height": "0.42", - "settings_id": "PEN4Pro06042", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4Pro (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4 0.8 nozzle.json index 385fe759f15..41feffa3088 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "0.48mm Draft @Elegoo N4 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N4 0.8 nozzle", + "setting_id": "SBUBC3tTWEsoUDwB", "instantiation": "true", "layer_height": "0.48", - "settings_id": "PEN408048", "renamed_from": "0.24mm Draft @Elegoo Neptune4 (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Max 0.8 nozzle.json index c7bcd3c2842..e0a4de6b6aa 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Max 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "0.48mm Draft @Elegoo N4Max 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N4Max 0.8 nozzle", + "setting_id": "O8HQgyqJNT6oHFL1", "instantiation": "true", "layer_height": "0.48", - "settings_id": "PEN4Max08048", "renamed_from": "0.24mm Draft @Elegoo Neptune4Max (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Plus 0.8 nozzle.json index 53ddf131287..f6f5655f0df 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Plus 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "0.48mm Draft @Elegoo N4Plus 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N4Plus 0.8 nozzle", + "setting_id": "DSXwIJeZIaTQNJdD", "instantiation": "true", "layer_height": "0.48", - "settings_id": "PEN4Plus08048", "renamed_from": "0.24mm Draft @Elegoo Neptune4 Plus (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Pro 0.8 nozzle.json index 49b0fdbd153..796fc782127 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Pro 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "0.48mm Draft @Elegoo N4Pro 0.8 nozzle", "from": "system", "inherits": "0.40mm Standard @Elegoo N4Pro 0.8 nozzle", + "setting_id": "GYMUhWOFDMRwYdxY", "instantiation": "true", "layer_height": "0.48", - "settings_id": "PEN4Pro08048", "renamed_from": "0.24mm Draft @Elegoo Neptune4Pro (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4 1.0 nozzle.json index 8ad0f87da41..a7e938e0a52 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N4 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN410050", + "setting_id": "MyxucuufiUoOU1AA", "instantiation": "true", "filename_format": "EN4_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Max 1.0 nozzle.json index 6bbb25a0225..07066692df1 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Max 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N4Max 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN4Max10050", + "setting_id": "RtAKEu724PzIrcIX", "instantiation": "true", "filename_format": "EN4Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Plus 1.0 nozzle.json index e9250cf0c18..69399efa198 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Plus 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N4Plus 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN4Plus10050", + "setting_id": "c3e2AbM7fabaQdjJ", "instantiation": "true", "filename_format": "EN4Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Pro 1.0 nozzle.json index d2b0a1489c5..851e22f4d1d 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Pro 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N4Pro 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN4Pro10050", + "setting_id": "X2ojMhn72WwOJFeP", "instantiation": "true", "filename_format": "EN4Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4 1.0 nozzle.json index 03b79112562..6da75b45b45 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.60mm Draft @Elegoo N4 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4 1.0 nozzle", + "setting_id": "Y8DwHQxs3j9DEU2v", "instantiation": "true", - "layer_height": "0.6", - "settings_id": "PEN410060" + "layer_height": "0.6" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Max 1.0 nozzle.json index 862b6dd423e..c7139995037 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Max 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.60mm Draft @Elegoo N4Max 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4Max 1.0 nozzle", + "setting_id": "QoV7xebXnXFxPc1G", "instantiation": "true", - "layer_height": "0.6", - "settings_id": "PEN4Max10060" + "layer_height": "0.6" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Plus 1.0 nozzle.json index bf4c5349372..78e01e07657 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Plus 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.60mm Draft @Elegoo N4Plus 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4Plus 1.0 nozzle", + "setting_id": "f5rYjm5HnjXGeRv9", "instantiation": "true", - "layer_height": "0.6", - "settings_id": "PEN4Plus10060" + "layer_height": "0.6" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Pro 1.0 nozzle.json index 86dae97144d..e935f52c723 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Pro 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.60mm Draft @Elegoo N4Pro 1.0 nozzle", "from": "system", "inherits": "0.50mm Standard @Elegoo N4Pro 1.0 nozzle", + "setting_id": "pjsuqOu6iU4ZDjfL", "instantiation": "true", - "layer_height": "0.6", - "settings_id": "PEN4Pro10060" + "layer_height": "0.6" } diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.16mm Optimal @Elegoo Giga 0.4 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.16mm Optimal @Elegoo Giga 0.4 nozzle.json index f77728a43e2..965365edd64 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.16mm Optimal @Elegoo Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.16mm Optimal @Elegoo Giga 0.4 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.20mm Standard @Elegoo Giga 0.4 nozzle", "layer_height": "0.16", + "setting_id": "XLb4AmNTfuDRMWQl", "instantiation": "true", "renamed_from": "0.16mm Optimal @EOS Giga 0.4 nozzle", "name": "0.16mm Optimal @Elegoo Giga 0.4 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.18mm Fine @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.18mm Fine @Elegoo Giga 0.6 nozzle.json index 20a05848380..f82182d302c 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.18mm Fine @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.18mm Fine @Elegoo Giga 0.6 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo Giga 0.6 nozzle", "layer_height": "0.18", + "setting_id": "xxVHp48sijSkmOCr", "instantiation": "true", "renamed_from": "0.18mm Fine @EOS Giga 0.6 nozzle", "name": "0.18mm Fine @Elegoo Giga 0.6 nozzle", diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Standard @Elegoo Giga 0.4 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Standard @Elegoo Giga 0.4 nozzle.json index 8f8dbf9ca9e..1dc016e6845 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Standard @Elegoo Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Standard @Elegoo Giga 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Elegoo Giga 0.4 nozzle", "inherits": "fdm_process_elegoo_04020", "from": "system", - "setting_id": "PEOSG04020", + "setting_id": "GIglVjgVd5bAy2nW", "instantiation": "true", "renamed_from": "0.20mm Standard @EOS Giga 0.4 nozzle", "default_acceleration": "3000", diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Strength @Elegoo Giga 0.4 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Strength @Elegoo Giga 0.4 nozzle.json index 3e21ae0bf9d..432e7b60d24 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Strength @Elegoo Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Strength @Elegoo Giga 0.4 nozzle.json @@ -5,6 +5,7 @@ "name": "0.20mm Strength @Elegoo Giga 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", + "setting_id": "JsDp89yLYQpZ8a9z", "instantiation": "true", "renamed_from": "0.20mm Strength @EOS Giga 0.4 nozzle", "wall_loops": "6" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Draft @Elegoo Giga 0.4 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Draft @Elegoo Giga 0.4 nozzle.json index c766575fd89..c7df41ccdec 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Draft @Elegoo Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Draft @Elegoo Giga 0.4 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.20mm Standard @Elegoo Giga 0.4 nozzle", "layer_height": "0.24", + "setting_id": "V1FtH3wGlPhP8SlR", "instantiation": "true", "renamed_from": "0.24mm Draft @EOS Giga 0.4 nozzle", "name": "0.24mm Draft @Elegoo Giga 0.4 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Fine @Elegoo Giga 0.8 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Fine @Elegoo Giga 0.8 nozzle.json index 9a94701a2f7..3c61774ab95 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Fine @Elegoo Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Fine @Elegoo Giga 0.8 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.40mm Standard @Elegoo Giga 0.8 nozzle", "layer_height": "0.24", + "setting_id": "v4n8azbYxr3XfTC1", "instantiation": "true", "renamed_from": "0.24mm Fine @EOS Giga 0.8 nozzle", "name": "0.24mm Fine @Elegoo Giga 0.8 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Optimal @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Optimal @Elegoo Giga 0.6 nozzle.json index 31598ff17f6..5c9783aca0a 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Optimal @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Optimal @Elegoo Giga 0.6 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo Giga 0.6 nozzle", "layer_height": "0.24", + "setting_id": "ZvTBY1VByXi0woy8", "instantiation": "true", "renamed_from": "0.24mm Optimal @EOS Giga 0.6 nozzle", "name": "0.24mm Optimal @Elegoo Giga 0.6 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.28mm Extra Draft @Elegoo Giga 0.4 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.28mm Extra Draft @Elegoo Giga 0.4 nozzle.json index a866d58ae39..cfb1f6173bc 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.28mm Extra Draft @Elegoo Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.28mm Extra Draft @Elegoo Giga 0.4 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.20mm Standard @Elegoo Giga 0.4 nozzle", "layer_height": "0.28", + "setting_id": "fJFavkWAsAtwN4W2", "instantiation": "true", "renamed_from": "0.28mm Extra Draft @EOS Giga 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo Giga 0.4 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Fine @Elegoo Giga 1.0 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Fine @Elegoo Giga 1.0 nozzle.json index 4dee1ec787c..0d57c5f7565 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Fine @Elegoo Giga 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Fine @Elegoo Giga 1.0 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo Giga 1.0 nozzle", "layer_height": "0.3", + "setting_id": "fmE4BaIielLYEpAm", "instantiation": "true", "renamed_from": "0.30mm Fine @EOS Giga 1.0 nozzle", "name": "0.30mm Fine @Elegoo Giga 1.0 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Standard @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Standard @Elegoo Giga 0.6 nozzle.json index 5ee13152a91..e6a04bb40ab 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Standard @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Standard @Elegoo Giga 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo Giga 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEOSG06030", + "setting_id": "mMP6cZhv9TYjYlEh", "instantiation": "true", "renamed_from": "0.30mm Standard @EOS Giga 0.6 nozzle", "default_acceleration": "3000", diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Strength @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Strength @Elegoo Giga 0.6 nozzle.json index fb9a1dca35c..ce791916ca8 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Strength @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Strength @Elegoo Giga 0.6 nozzle.json @@ -5,6 +5,7 @@ "name": "0.30mm Strength @Elegoo Giga 0.6 nozzle", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", + "setting_id": "Vwty88kyYO8bPt9l", "instantiation": "true", "renamed_from": "0.30mm Strength @EOS Giga 0.6 nozzle", "wall_loops": "5" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.32mm Optimal @Elegoo Giga 0.8 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.32mm Optimal @Elegoo Giga 0.8 nozzle.json index d5cc26571e1..c859de87a75 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.32mm Optimal @Elegoo Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.32mm Optimal @Elegoo Giga 0.8 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.40mm Standard @Elegoo Giga 0.8 nozzle", "layer_height": "0.32", + "setting_id": "U6XpRv8LUHeLMpO6", "instantiation": "true", "renamed_from": "0.32mm Optimal @EOS Giga 0.8 nozzle", "name": "0.32mm Optimal @Elegoo Giga 0.8 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.36mm Draft @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.36mm Draft @Elegoo Giga 0.6 nozzle.json index 8d8d35a3c22..fa032fc4104 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.36mm Draft @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.36mm Draft @Elegoo Giga 0.6 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo Giga 0.6 nozzle", "layer_height": "0.36", + "setting_id": "aFZ4bLGGhFIcwoH5", "instantiation": "true", "renamed_from": "0.36mm Draft @EOS Giga 0.6 nozzle", "name": "0.36mm Draft @Elegoo Giga 0.6 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Optimal @Elegoo Giga 1.0 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Optimal @Elegoo Giga 1.0 nozzle.json index 03299d5b514..aa8af94e851 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Optimal @Elegoo Giga 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Optimal @Elegoo Giga 1.0 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo Giga 1.0 nozzle", "layer_height": "0.4", + "setting_id": "fGSfqfyNqMhuqZ8X", "instantiation": "true", "renamed_from": "0.40mm Optimal @EOS Giga 1.0 nozzle", "name": "0.40mm Optimal @Elegoo Giga 1.0 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Standard @Elegoo Giga 0.8 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Standard @Elegoo Giga 0.8 nozzle.json index d2ba5ef203c..8b73f6b7d11 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Standard @Elegoo Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Standard @Elegoo Giga 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo Giga 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEOSG08040", + "setting_id": "oiMWJMGC2aW2v4wg", "instantiation": "true", "renamed_from": "0.40mm Standard @EOS Giga 0.8 nozzle", "default_acceleration": "3000", diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.42mm Extra Draft @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.42mm Extra Draft @Elegoo Giga 0.6 nozzle.json index b165867e702..803606068b4 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.42mm Extra Draft @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.42mm Extra Draft @Elegoo Giga 0.6 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.30mm Standard @Elegoo Giga 0.6 nozzle", "layer_height": "0.42", + "setting_id": "dlzWR8ZIwaJ1tYId", "instantiation": "true", "renamed_from": "0.42mm Extra Draft @EOS Giga 0.6 nozzle", "name": "0.42mm Extra Draft @Elegoo Giga 0.6 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.48mm Draft @Elegoo Giga 0.8 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.48mm Draft @Elegoo Giga 0.8 nozzle.json index a075c8a9a57..3c660f5b8e4 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.48mm Draft @Elegoo Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.48mm Draft @Elegoo Giga 0.8 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.40mm Standard @Elegoo Giga 0.8 nozzle", "layer_height": "0.48", + "setting_id": "lqJRn5QLgMp5i2dr", "instantiation": "true", "renamed_from": "0.48mm Draft @EOS Giga 0.8 nozzle", "name": "0.48mm Draft @Elegoo Giga 0.8 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.50mm Standard @Elegoo Giga 1.0 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.50mm Standard @Elegoo Giga 1.0 nozzle.json index 6041e375ded..f2ad7bb95a9 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.50mm Standard @Elegoo Giga 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.50mm Standard @Elegoo Giga 1.0 nozzle.json @@ -3,7 +3,7 @@ "inherits": "fdm_process_elegoo_10050", "name": "0.50mm Standard @Elegoo Giga 1.0 nozzle", "from": "system", - "setting_id": "PEOSG10050", + "setting_id": "hLPWpsFCvKgbrebl", "instantiation": "true", "renamed_from": "0.50mm Standard @EOS Giga 1.0 nozzle", "default_acceleration": "3000", diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.56mm Extra Draft @Elegoo Giga 0.8 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.56mm Extra Draft @Elegoo Giga 0.8 nozzle.json index 6c521ad63d4..8104d7423a3 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.56mm Extra Draft @Elegoo Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.56mm Extra Draft @Elegoo Giga 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "from": "system", "inherits": "0.40mm Standard @Elegoo Giga 0.8 nozzle", + "setting_id": "EC6Dqk8dUIai51E5", "instantiation": "true", "renamed_from": "0.56mm Extra Draft @EOS Giga 0.8 nozzle", "name": "0.56mm Extra Draft @Elegoo Giga 0.8 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.60mm Draft @Elegoo Giga 1.0 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.60mm Draft @Elegoo Giga 1.0 nozzle.json index b29cd5ba7c1..d53af64b0ec 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.60mm Draft @Elegoo Giga 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.60mm Draft @Elegoo Giga 1.0 nozzle.json @@ -3,6 +3,7 @@ "from": "system", "inherits": "0.50mm Standard @Elegoo Giga 1.0 nozzle", "layer_height": "0.6", + "setting_id": "VsOntugsCeEPNBvC", "instantiation": "true", "renamed_from": "0.60mm Draft @EOS Giga 1.0 nozzle", "name": "0.60mm Draft @Elegoo Giga 1.0 nozzle" diff --git a/resources/profiles/Eryone.json b/resources/profiles/Eryone.json index 97adffc77b6..b3bec6e8929 100644 --- a/resources/profiles/Eryone.json +++ b/resources/profiles/Eryone.json @@ -1,6 +1,6 @@ { "name": "Eryone", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Eryone configurations", "machine_model_list": [ diff --git a/resources/profiles/Eryone/filament/Eryone ABS @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone ABS @0.2 nozzle.json index ea3c5a65375..11bd3c3c672 100644 --- a/resources/profiles/Eryone/filament/Eryone ABS @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone ABS @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone ABS @0.2 nozzle", "from": "system", + "setting_id": "sNet9szMIhVY4WoS", "instantiation": "true", "inherits": "Eryone ABS", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ABS-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone ABS-CF @0.2 nozzle.json index 3d221d2f119..0d862c72f6a 100644 --- a/resources/profiles/Eryone/filament/Eryone ABS-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone ABS-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone ABS-CF @0.2 nozzle", "from": "system", + "setting_id": "a7qk6VtkbJziQHZo", "instantiation": "true", "inherits": "Eryone ABS-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ABS-CF.json b/resources/profiles/Eryone/filament/Eryone ABS-CF.json index a7c69dfaa45..bb976dcd886 100644 --- a/resources/profiles/Eryone/filament/Eryone ABS-CF.json +++ b/resources/profiles/Eryone/filament/Eryone ABS-CF.json @@ -3,7 +3,7 @@ "name": "Eryone ABS-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA11", + "setting_id": "f4VPJtNcZOIIKyDz", "filament_id": "EFL81", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ABS.json b/resources/profiles/Eryone/filament/Eryone ABS.json index 9875f62ff2a..c09a35d34e4 100644 --- a/resources/profiles/Eryone/filament/Eryone ABS.json +++ b/resources/profiles/Eryone/filament/Eryone ABS.json @@ -3,7 +3,7 @@ "name": "Eryone ABS", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA01", + "setting_id": "JfQiR5qK9Ue3JDt5", "filament_id": "EFL91", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ASA @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone ASA @0.2 nozzle.json index acc079a79d3..fd8a747c60b 100644 --- a/resources/profiles/Eryone/filament/Eryone ASA @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone ASA @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone ASA @0.2 nozzle", "from": "system", + "setting_id": "SopkMvsT3DXzJ9Ky", "instantiation": "true", "inherits": "Eryone ASA", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ASA-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone ASA-CF @0.2 nozzle.json index 3800cacc88c..3e38a60b4f4 100644 --- a/resources/profiles/Eryone/filament/Eryone ASA-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone ASA-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone ASA-CF @0.2 nozzle", "from": "system", + "setting_id": "yBYSvDH0djt4S123", "instantiation": "true", "inherits": "Eryone ASA-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ASA-CF.json b/resources/profiles/Eryone/filament/Eryone ASA-CF.json index 29ff502aa1b..afe2d3b33ec 100644 --- a/resources/profiles/Eryone/filament/Eryone ASA-CF.json +++ b/resources/profiles/Eryone/filament/Eryone ASA-CF.json @@ -3,7 +3,7 @@ "name": "Eryone ASA-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA82", + "setting_id": "wSiMHM1kTIgJ2gCt", "filament_id": "EFL82", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ASA.json b/resources/profiles/Eryone/filament/Eryone ASA.json index add1be1fedb..88afccbe26d 100644 --- a/resources/profiles/Eryone/filament/Eryone ASA.json +++ b/resources/profiles/Eryone/filament/Eryone ASA.json @@ -3,7 +3,7 @@ "name": "Eryone ASA", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA02", + "setting_id": "hu9uQy9zFgemTBjQ", "filament_id": "EFL92", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PA @0.2 nozzle.json index 3e6ae575cb5..f8ee131756b 100644 --- a/resources/profiles/Eryone/filament/Eryone PA @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PA @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PA @0.2 nozzle", "from": "system", + "setting_id": "zavqdFwS2fsajkps", "instantiation": "true", "inherits": "Eryone PA", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PA-CF @0.2 nozzle.json index 6c85addf25c..bb0b1ecba20 100644 --- a/resources/profiles/Eryone/filament/Eryone PA-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PA-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PA-CF @0.2 nozzle", "from": "system", + "setting_id": "wbnmjqeccJS209GO", "instantiation": "true", "inherits": "Eryone PA-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA-CF.json b/resources/profiles/Eryone/filament/Eryone PA-CF.json index fc50b14b82b..abaf44eb7de 100644 --- a/resources/profiles/Eryone/filament/Eryone PA-CF.json +++ b/resources/profiles/Eryone/filament/Eryone PA-CF.json @@ -3,7 +3,7 @@ "name": "Eryone PA-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA72", + "setting_id": "LIXTvjHAxtaHIO8s", "filament_id": "EFL72", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA-GF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PA-GF @0.2 nozzle.json index 80fced93752..14c8620f6a5 100644 --- a/resources/profiles/Eryone/filament/Eryone PA-GF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PA-GF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PA-GF @0.2 nozzle", "from": "system", + "setting_id": "J7Oy1mm1szLspwBb", "instantiation": "true", "inherits": "Eryone PA-GF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA-GF.json b/resources/profiles/Eryone/filament/Eryone PA-GF.json index 6cbefa931d0..15ae0550109 100644 --- a/resources/profiles/Eryone/filament/Eryone PA-GF.json +++ b/resources/profiles/Eryone/filament/Eryone PA-GF.json @@ -3,7 +3,7 @@ "name": "Eryone PA-GF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA73", + "setting_id": "4srMOoPcAlQygIY8", "filament_id": "EFL73", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA.json b/resources/profiles/Eryone/filament/Eryone PA.json index fe002804263..efcbc94393a 100644 --- a/resources/profiles/Eryone/filament/Eryone PA.json +++ b/resources/profiles/Eryone/filament/Eryone PA.json @@ -3,7 +3,7 @@ "name": "Eryone PA", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA71", + "setting_id": "oqzAdvvf6jdQTb4M", "filament_id": "EFL71", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PETG @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PETG @0.2 nozzle.json index f75b3cb1048..e8ddc59440f 100644 --- a/resources/profiles/Eryone/filament/Eryone PETG @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PETG @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PETG @0.2 nozzle", "from": "system", + "setting_id": "cATziDM4CjP6MiC4", "instantiation": "true", "inherits": "Eryone PETG", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PETG-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PETG-CF @0.2 nozzle.json index c8ad2e2ce38..3bb3f6f1df9 100644 --- a/resources/profiles/Eryone/filament/Eryone PETG-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PETG-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PETG-CF @0.2 nozzle", "from": "system", + "setting_id": "wsR57UlUrO2aW2Lc", "instantiation": "true", "inherits": "Eryone PETG-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PETG-CF.json b/resources/profiles/Eryone/filament/Eryone PETG-CF.json index 2ac8aade947..76eca543b5b 100644 --- a/resources/profiles/Eryone/filament/Eryone PETG-CF.json +++ b/resources/profiles/Eryone/filament/Eryone PETG-CF.json @@ -3,7 +3,7 @@ "name": "Eryone PETG-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA43", + "setting_id": "Xp95jFFK5QSP3OoR", "filament_id": "EFL43", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PETG.json b/resources/profiles/Eryone/filament/Eryone PETG.json index 08d712dd922..3f0644565a9 100644 --- a/resources/profiles/Eryone/filament/Eryone PETG.json +++ b/resources/profiles/Eryone/filament/Eryone PETG.json @@ -3,7 +3,7 @@ "name": "Eryone PETG", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA03", + "setting_id": "rJCPgQiIXRsfQwWY", "filament_id": "EFL93", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PLA @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PLA @0.2 nozzle.json index 8ebe39cebd6..204bb5e32ea 100644 --- a/resources/profiles/Eryone/filament/Eryone PLA @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PLA @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PLA @0.2 nozzle", "from": "system", + "setting_id": "kJhDYIHtXhAd4M6v", "instantiation": "true", "inherits": "Eryone PLA", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PLA-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PLA-CF @0.2 nozzle.json index 78af748c1b2..9d43ea33e3a 100644 --- a/resources/profiles/Eryone/filament/Eryone PLA-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PLA-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PLA-CF @0.2 nozzle", "from": "system", + "setting_id": "ghNuMkVp1164Fw1Z", "instantiation": "true", "inherits": "Eryone PLA-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PLA-CF.json b/resources/profiles/Eryone/filament/Eryone PLA-CF.json index 467a982aa4e..3e7e8fa3d7e 100644 --- a/resources/profiles/Eryone/filament/Eryone PLA-CF.json +++ b/resources/profiles/Eryone/filament/Eryone PLA-CF.json @@ -3,7 +3,7 @@ "name": "Eryone PLA-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA40", + "setting_id": "t726eLsJ87OjqUYk", "filament_id": "EFL40", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PLA.json b/resources/profiles/Eryone/filament/Eryone PLA.json index 7fe5c3ffa18..6da685ff2f9 100644 --- a/resources/profiles/Eryone/filament/Eryone PLA.json +++ b/resources/profiles/Eryone/filament/Eryone PLA.json @@ -3,7 +3,7 @@ "name": "Eryone PLA", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA00", + "setting_id": "nTSleDxF7HWxBeK9", "filament_id": "EFL90", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PP @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PP @0.2 nozzle.json index f78100f43ff..47d0b9ec14f 100644 --- a/resources/profiles/Eryone/filament/Eryone PP @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PP @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PP @0.2 nozzle", "from": "system", + "setting_id": "ePXvfc5tmC3GnZPe", "instantiation": "true", "inherits": "Eryone PP", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PP-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PP-CF @0.2 nozzle.json index 01280c440f5..986696084ee 100644 --- a/resources/profiles/Eryone/filament/Eryone PP-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PP-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PP-CF @0.2 nozzle", "from": "system", + "setting_id": "os5ZrNT1utAczy2F", "instantiation": "true", "inherits": "Eryone PP-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PP-CF.json b/resources/profiles/Eryone/filament/Eryone PP-CF.json index 193e4093fb8..e2a9c492cf3 100644 --- a/resources/profiles/Eryone/filament/Eryone PP-CF.json +++ b/resources/profiles/Eryone/filament/Eryone PP-CF.json @@ -3,7 +3,7 @@ "name": "Eryone PP-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA33", + "setting_id": "GuuXzP9ILCWG5cxt", "filament_id": "EFL33", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PP.json b/resources/profiles/Eryone/filament/Eryone PP.json index b3c83979a5b..835f8fc5a07 100644 --- a/resources/profiles/Eryone/filament/Eryone PP.json +++ b/resources/profiles/Eryone/filament/Eryone PP.json @@ -3,7 +3,7 @@ "name": "Eryone PP", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA43", + "setting_id": "sZF6qOPqqu88Yu5e", "filament_id": "EFL43", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone Silk PLA @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone Silk PLA @0.2 nozzle.json index 996d277e5f7..1a617e7f142 100644 --- a/resources/profiles/Eryone/filament/Eryone Silk PLA @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone Silk PLA @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone Silk PLA @0.2 nozzle", "from": "system", + "setting_id": "RS6yfcZ6PbJzGrUc", "instantiation": "true", "inherits": "Eryone Silk PLA", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone Silk PLA.json b/resources/profiles/Eryone/filament/Eryone Silk PLA.json index de0450fadb4..2edfd832c14 100644 --- a/resources/profiles/Eryone/filament/Eryone Silk PLA.json +++ b/resources/profiles/Eryone/filament/Eryone Silk PLA.json @@ -3,7 +3,7 @@ "name": "Eryone Silk PLA", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA041", + "setting_id": "S3s3NQAoScvfyHh3", "filament_id": "EFL941", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone TPU @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone TPU @0.2 nozzle.json index 3065fff68bc..8596a81fb9c 100644 --- a/resources/profiles/Eryone/filament/Eryone TPU @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone TPU @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone TPU @0.2 nozzle", "from": "system", + "setting_id": "6Le5wRz6cFfKcPaz", "instantiation": "true", "inherits": "Eryone TPU", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone TPU.json b/resources/profiles/Eryone/filament/Eryone TPU.json index 223e2e60e91..6bfd5553373 100644 --- a/resources/profiles/Eryone/filament/Eryone TPU.json +++ b/resources/profiles/Eryone/filament/Eryone TPU.json @@ -3,7 +3,7 @@ "name": "Eryone TPU", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA05", + "setting_id": "ci6MWQPZNf09qrOJ", "filament_id": "EFL95", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.2 nozzle.json index 55133ecf06e..452efb7dbab 100644 --- a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.2 nozzle.json @@ -3,6 +3,7 @@ "default_print_profile": "0.10mm Standard @Eryone ER20 0.2 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_common", + "setting_id": "mN66BkXzUCaGGkZ5", "instantiation": "true", "max_layer_height": [ "0.14" diff --git a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.4 nozzle.json b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.4 nozzle.json index 8079d557d2e..c9dd07d94e8 100644 --- a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.4 nozzle.json +++ b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.4 nozzle.json @@ -3,6 +3,7 @@ "default_print_profile": "0.20mm Standard @Eryone ER20", "from": "system", "inherits": "fdm_machine_eryone_ER20_common", + "setting_id": "7Hs87Tz3oMj8YGLU", "instantiation": "true", "max_layer_height": [ "0.32" diff --git a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.5 nozzle.json b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.5 nozzle.json index fa7200dfc33..6565c58aa88 100644 --- a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.5 nozzle.json +++ b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.5 nozzle.json @@ -3,6 +3,7 @@ "default_print_profile": "0.25mm Standard @Eryone ER20 0.5 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_common", + "setting_id": "8AfjLDQQXEAnxuQ7", "instantiation": "true", "max_layer_height": [ "0.38" diff --git a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.6 nozzle.json index 684b3e7305b..f090d44b6b6 100644 --- a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.6 nozzle.json @@ -3,6 +3,7 @@ "default_print_profile": "0.30mm Standard @Eryone ER20 0.6 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_common", + "setting_id": "8USSZMCTCDoHK55n", "instantiation": "true", "max_layer_height": [ "0.42" diff --git a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.8 nozzle.json index 7a4f2428d0c..d64321fabf4 100644 --- a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.8 nozzle.json @@ -3,6 +3,7 @@ "default_print_profile": "0.40mm Standard @Eryone ER20 0.8 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_common", + "setting_id": "JWFQL6GvDRJk46i7", "instantiation": "true", "max_layer_height": [ "0.56" diff --git a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.2 nozzle .json b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.2 nozzle .json index 9fa105b5fa2..fe19a236355 100644 --- a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.2 nozzle .json +++ b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.2 nozzle .json @@ -3,6 +3,7 @@ "default_print_profile": "0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_Klipper_common", + "setting_id": "dUHn8STOXHOXD63f", "instantiation": "true", "max_layer_height": [ "0.14" diff --git a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.4 nozzle .json b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.4 nozzle .json index 58c1dcd6588..5a95f359772 100644 --- a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.4 nozzle .json +++ b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.4 nozzle .json @@ -3,6 +3,7 @@ "default_print_profile": "0.20mm Standard @Eryone ER20 Klipper", "from": "system", "inherits": "fdm_machine_eryone_ER20_Klipper_common", + "setting_id": "xp3wEd41u0J6bR65", "instantiation": "true", "max_layer_height": [ "0.32" diff --git a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.5 nozzle .json b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.5 nozzle .json index 0502b4a4c22..1f97d647426 100644 --- a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.5 nozzle .json +++ b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.5 nozzle .json @@ -3,6 +3,7 @@ "default_print_profile": "0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_Klipper_common", + "setting_id": "5zuzTKyILhVSA5J5", "instantiation": "true", "max_layer_height": [ "0.38" diff --git a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.6 nozzle .json b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.6 nozzle .json index 14072c46dec..b9f675ea433 100644 --- a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.6 nozzle .json +++ b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.6 nozzle .json @@ -3,6 +3,7 @@ "default_print_profile": "0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_Klipper_common", + "setting_id": "LCVtRqmtH6YySurQ", "instantiation": "true", "max_layer_height": [ "0.42" diff --git a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.8 nozzle .json b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.8 nozzle .json index a879c82a5ab..558a442e309 100644 --- a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.8 nozzle .json +++ b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.8 nozzle .json @@ -3,6 +3,7 @@ "default_print_profile": "0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_Klipper_common", + "setting_id": "eMvz9rZXfWxXvuva", "instantiation": "true", "max_layer_height": [ "0.56" diff --git a/resources/profiles/Eryone/machine/Thinker X400 0.2 nozzle.json b/resources/profiles/Eryone/machine/Thinker X400 0.2 nozzle.json index 7d60fc95345..da3983130a0 100644 --- a/resources/profiles/Eryone/machine/Thinker X400 0.2 nozzle.json +++ b/resources/profiles/Eryone/machine/Thinker X400 0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "name": "Thinker X400 0.2 nozzle", "inherits": "Thinker X400 0.4 nozzle", - "setting_id": "GM0032", + "setting_id": "hMvy9QaXQyM7tGke", "instantiation": "true", "printer_model": "Thinker X400", "default_print_profile": "0.10mm Standard @Thinker X400 0.2 nozzle", diff --git a/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json b/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json index 6a52eccf709..f45febbdbb5 100644 --- a/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json +++ b/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Thinker X400 0.4 nozzle", "from": "system", - "setting_id": "GM003", + "setting_id": "iOmDPImz2E66SIpL", "instantiation": "true", "printer_model": "Thinker X400", "default_print_profile": "0.20mm Standard @Thinker X400", diff --git a/resources/profiles/Eryone/process/0.10mm Standard @Thinker X400 0.2 nozzle.json b/resources/profiles/Eryone/process/0.10mm Standard @Thinker X400 0.2 nozzle.json index e50405932c7..2f54cd6e82e 100644 --- a/resources/profiles/Eryone/process/0.10mm Standard @Thinker X400 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/0.10mm Standard @Thinker X400 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @Thinker X400 0.2 nozzle", "inherits": "0.20mm Standard @Thinker X400", "from": "system", + "setting_id": "tO27DW2I42BFee5R", "instantiation": "true", "bottom_shell_layers": "5", "gap_infill_speed": "150", diff --git a/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json index aa2f0df7739..a67d56a230a 100644 --- a/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json @@ -3,6 +3,7 @@ "name": "0.12mm Standard @Thinker X400", "inherits": "0.20mm Standard @Thinker X400", "from": "User", + "setting_id": "jifvkql7qz6po7bB", "instantiation": "true", "brim_object_gap": "0", "default_acceleration": "10000", diff --git a/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json index cef2fae801d..f17abfeb620 100644 --- a/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json @@ -3,6 +3,7 @@ "name": "0.16mm Standard @Thinker X400", "inherits": "0.20mm Standard @Thinker X400", "from": "User", + "setting_id": "YZvPJK8iIG1BFWs3", "instantiation": "true", "brim_object_gap": "0", "default_acceleration": "10000", diff --git a/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json index f8557ceca82..588628cfab1 100644 --- a/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Thinker X400", "inherits": "fdm_process_common", "from": "", - "setting_id": "GP004", + "setting_id": "XuXFgmQdgSDywHuc", "instantiation": "true", "compatible_printers": [ "Thinker X400 0.4 nozzle" diff --git a/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json index b8e428d2cea..5378925cf1d 100644 --- a/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @Thinker X400", "inherits": "0.20mm Standard @Thinker X400", "from": "User", + "setting_id": "QLS70K9RFSLlzGH8", "instantiation": "true", "brim_object_gap": "0", "default_acceleration": "10000", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.06mm High Quality @Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.06mm High Quality @Eryone ER20 0.2 nozzle.json index 3ad2a95d03c..e12ec5eb512 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.06mm High Quality @Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.06mm High Quality @Eryone ER20 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.06mm High Quality @Eryone ER20 0.2 nozzle", "inherits": "fdm_process_ER20_0.06_nozzle_0.2", "from": "system", + "setting_id": "GhfBuKKydzWt05Zt", "instantiation": "true", "sparse_infill_pattern": "gyroid", "compatible_printers": [ diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.08mm Optimal @Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.08mm Optimal @Eryone ER20 0.2 nozzle.json index 4d3cf827c4d..a8b74416a22 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.08mm Optimal @Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.08mm Optimal @Eryone ER20 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Optimal @Eryone ER20 0.2 nozzle", "inherits": "fdm_process_ER20_0.08_nozzle_0.2", "from": "system", + "setting_id": "BK7hqXdVKuKFphxz", "instantiation": "true", "compatible_printers": [ "Eryone ER20 0.2 nozzle" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.10mm Standard @Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.10mm Standard @Eryone ER20 0.2 nozzle.json index 251a8301306..93422fa2e3a 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.10mm Standard @Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.10mm Standard @Eryone ER20 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @Eryone ER20 0.2 nozzle", "inherits": "fdm_process_ER20_0.10_nozzle_0.2", "from": "system", + "setting_id": "hSb8DkaIx4UoSNh6", "instantiation": "true", "sparse_infill_pattern": "gyroid", "compatible_printers": [ diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.12mm Draft @Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.12mm Draft @Eryone ER20 0.2 nozzle.json index 3e5872cd3fb..f17dc797a87 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.12mm Draft @Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.12mm Draft @Eryone ER20 0.2 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.12_nozzle_0.2", + "setting_id": "X5RY5e2qDLLXRw73", "instantiation": "true", "name": "0.12mm Draft @Eryone ER20 0.2 nozzle", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.12mm High Quality @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.12mm High Quality @Eryone ER20.json index ce4ed4a4581..bb5638f0106 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.12mm High Quality @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.12mm High Quality @Eryone ER20.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_0.12", + "setting_id": "H7ODK5fAAYDUoeSH", "instantiation": "true", "name": "0.12mm High Quality @Eryone ER20", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.14mm Extra Draft @Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.14mm Extra Draft @Eryone ER20 0.2 nozzle.json index e99fe89b60d..7cc56e1902f 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.14mm Extra Draft @Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.14mm Extra Draft @Eryone ER20 0.2 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.14_nozzle_0.2", + "setting_id": "USrHobTi6gZB0qfs", "instantiation": "true", "name": "0.14mm Extra Draft @Eryone ER20 0.2 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.15mm Optimal @Eryone ER20 0.5 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.15mm Optimal @Eryone ER20 0.5 nozzle.json index 004483142a0..c552b7ec314 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.15mm Optimal @Eryone ER20 0.5 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.15mm Optimal @Eryone ER20 0.5 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.15_nozzle_0.5", + "setting_id": "oapNf4dk0MGlHc1t", "instantiation": "true", "name": "0.15mm Optimal @Eryone ER20 0.5 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.16mm Optimal @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.16mm Optimal @Eryone ER20.json index b40fea90b4b..c59e1da21fc 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.16mm Optimal @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.16mm Optimal @Eryone ER20.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_0.16", + "setting_id": "T7CLbKpkDxOdqBWk", "instantiation": "true", "name": "0.16mm Optimal @Eryone ER20", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.18mm Fine @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.18mm Fine @Eryone ER20 0.6 nozzle.json index d72bbaba9f9..c7078cfba48 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.18mm Fine @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.18mm Fine @Eryone ER20 0.6 nozzle.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_0.18_nozzle_0.6", + "setting_id": "XnzfgUygXaUCzqsa", "instantiation": "true", "name": "0.18mm Fine @Eryone ER20 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.20mm Standard @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.20mm Standard @Eryone ER20.json index 5221f736cce..2e223dab0ca 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.20mm Standard @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.20mm Standard @Eryone ER20.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_0.20", + "setting_id": "TMsKM3bODapym77c", "instantiation": "true", "layer_height": "0.20", "name": "0.20mm Standard @Eryone ER20", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.20mm Strength @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.20mm Strength @Eryone ER20.json index f95223483fb..0ce68ee0270 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.20mm Strength @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.20mm Strength @Eryone ER20.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.20", + "setting_id": "GFfpctaMRI4Nuqk9", "instantiation": "true", "name": "0.20mm Strength @Eryone ER20", "sparse_infill_density": "25%", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Draft @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Draft @Eryone ER20.json index 8e27f23a4b7..339736d0b1a 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Draft @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Draft @Eryone ER20.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.24", + "setting_id": "8rfQRPMh82vmdDeb", "instantiation": "true", "name": "0.24mm Draft @Eryone ER20", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Fine @Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Fine @Eryone ER20 0.8 nozzle.json index 5cd91fbb5e4..44d7d8e926e 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Fine @Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Fine @Eryone ER20 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.24_nozzle_0.8", + "setting_id": "0Ham5AnvDEnEzaSY", "instantiation": "true", "name": "0.24mm Fine @Eryone ER20 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Optimal @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Optimal @Eryone ER20 0.6 nozzle.json index 3d5bd06bb0b..7fea46be585 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Optimal @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Optimal @Eryone ER20 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.24_nozzle_0.6", + "setting_id": "0CRLvmSKxkmglWRi", "instantiation": "true", "name": "0.24mm Optimal @Eryone ER20 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.25mm Standard @Eryone ER20 0.5 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.25mm Standard @Eryone ER20 0.5 nozzle.json index 7579ba02eaf..e1a26f17157 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.25mm Standard @Eryone ER20 0.5 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.25mm Standard @Eryone ER20 0.5 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.25_nozzle_0.5", + "setting_id": "oEjMrkTjRF6zL46C", "instantiation": "true", "name": "0.25mm Standard @Eryone ER20 0.5 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.28mm Extra Draft @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.28mm Extra Draft @Eryone ER20.json index 4a3278cfeb7..8a63db28a4d 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.28mm Extra Draft @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.28mm Extra Draft @Eryone ER20.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.28", + "setting_id": "oyoecLMFQzjbIfcd", "instantiation": "true", "name": "0.28mm Extra Draft @Eryone ER20", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.30mm Standard @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.30mm Standard @Eryone ER20 0.6 nozzle.json index ab669d3232b..f928604605c 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.30mm Standard @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.30mm Standard @Eryone ER20 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.30_nozzle_0.6", + "setting_id": "jw5QUhazCifzzM6Q", "instantiation": "true", "name": "0.30mm Standard @Eryone ER20 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.30mm Strength @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.30mm Strength @Eryone ER20 0.6 nozzle.json index 326a47a76c9..42a56dafefb 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.30mm Strength @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.30mm Strength @Eryone ER20 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.30_nozzle_0.6", + "setting_id": "LqOFomJiS10Vbrdp", "instantiation": "true", "name": "0.30mm Strength @Eryone ER20 0.6 nozzle", "sparse_infill_density": "25%", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.32mm Optimal @Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.32mm Optimal @Eryone ER20 0.8 nozzle.json index d06d7a2937c..8c1ff89a9c6 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.32mm Optimal @Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.32mm Optimal @Eryone ER20 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.32_nozzle_0.8", + "setting_id": "5lYVYrlEfVVl2n0F", "instantiation": "true", "name": "0.32mm Optimal @Eryone ER20 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.36mm Draft @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.36mm Draft @Eryone ER20 0.6 nozzle.json index 6e5e4d25f1d..e673f0b2937 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.36mm Draft @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.36mm Draft @Eryone ER20 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.36_nozzle_0.6", + "setting_id": "vavNueSF5zRpUlTZ", "instantiation": "true", "name": "0.36mm Draft @Eryone ER20 0.6 nozzle", "travel_speed": "250", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.40mm Standard @Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.40mm Standard @Eryone ER20 0.8 nozzle.json index 591061dd505..053d009d369 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.40mm Standard @Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.40mm Standard @Eryone ER20 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.40_nozzle_0.8", + "setting_id": "TlCbtZYdCRCkpIf6", "instantiation": "true", "name": "0.40mm Standard @Eryone ER20 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.42mm Extra Draft @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.42mm Extra Draft @Eryone ER20 0.6 nozzle.json index 1fac940a002..b6c8cd4dbb5 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.42mm Extra Draft @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.42mm Extra Draft @Eryone ER20 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.42_nozzle_0.6", + "setting_id": "q6PozBOTtWU7CMb0", "instantiation": "true", "name": "0.42mm Extra Draft @Eryone ER20 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.48mm Draft @Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.48mm Draft @Eryone ER20 0.8 nozzle.json index 06b1dac3ef1..b4b2bed4e55 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.48mm Draft @Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.48mm Draft @Eryone ER20 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.48_nozzle_0.8", + "setting_id": "O3BhYAmUROrYm64x", "instantiation": "true", "name": "0.48mm Draft @Eryone ER20 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.56mm Extra Draft @Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.56mm Extra Draft @Eryone ER20 0.8 nozzle.json index a5fbbfeb8ca..df15e8722f6 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.56mm Extra Draft @Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.56mm Extra Draft @Eryone ER20 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.56_nozzle_0.8", + "setting_id": "RCycTBzuArwmwrj1", "instantiation": "true", "name": "0.56mm Extra Draft @Eryone ER20 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.06mm High Quality @Eryone ER20 Klipper 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.06mm High Quality @Eryone ER20 Klipper 0.2 nozzle.json index aef608eb17c..2d917e6da73 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.06mm High Quality @Eryone ER20 Klipper 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.06mm High Quality @Eryone ER20 Klipper 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.06mm High Quality @Eryone ER20 Klipper 0.2 nozzle", "inherits": "fdm_process_ER20_Klipper_0.06_nozzle_0.2", "from": "system", + "setting_id": "DbmPfmdtSO6eADNc", "instantiation": "true", "sparse_infill_pattern": "gyroid", "compatible_printers": [ diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.08mm Optimal @Eryone ER20 Klipper 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.08mm Optimal @Eryone ER20 Klipper 0.2 nozzle.json index d1205caf133..d333a483fc7 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.08mm Optimal @Eryone ER20 Klipper 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.08mm Optimal @Eryone ER20 Klipper 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Optimal @Eryone ER20 Klipper 0.2 nozzle", "inherits": "fdm_process_ER20_Klipper_0.08_nozzle_0.2", "from": "system", + "setting_id": "PqKmdbXHvL7dQKNU", "instantiation": "true", "compatible_printers": [ "Eryone ER20 Klipper 0.2 nozzle" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle.json index 44be75b8bdb..1cc128ce806 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle", "inherits": "fdm_process_ER20_Klipper_0.10_nozzle_0.2", "from": "system", + "setting_id": "L6ZKLo92qFpTcGkx", "instantiation": "true", "sparse_infill_pattern": "gyroid", "compatible_printers": [ diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm Draft @Eryone ER20 Klipper 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm Draft @Eryone ER20 Klipper 0.2 nozzle.json index 4664c11a206..1ea915ac252 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm Draft @Eryone ER20 Klipper 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm Draft @Eryone ER20 Klipper 0.2 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.12_nozzle_0.2", + "setting_id": "G6ezw9j2ZskBlDcf", "instantiation": "true", "name": "0.12mm Draft @Eryone ER20 Klipper 0.2 nozzle", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm High Quality @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm High Quality @Eryone ER20 Klipper.json index e0fb8848584..bd685a42c64 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm High Quality @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm High Quality @Eryone ER20 Klipper.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_Klipper_0.12", + "setting_id": "FdNIlqPmjcMxniJL", "instantiation": "true", "name": "0.12mm High Quality @Eryone ER20 Klipper", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.14mm Extra Draft @Eryone ER20 Klipper 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.14mm Extra Draft @Eryone ER20 Klipper 0.2 nozzle.json index d914699b09c..17ddd78449f 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.14mm Extra Draft @Eryone ER20 Klipper 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.14mm Extra Draft @Eryone ER20 Klipper 0.2 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.14_nozzle_0.2", + "setting_id": "REb8DrBmb84Jz1RU", "instantiation": "true", "name": "0.14mm Extra Draft @Eryone ER20 Klipper 0.2 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.15mm Optimal @Eryone ER20 Klipper 0.5 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.15mm Optimal @Eryone ER20 Klipper 0.5 nozzle.json index 87519bab450..dae8d693f80 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.15mm Optimal @Eryone ER20 Klipper 0.5 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.15mm Optimal @Eryone ER20 Klipper 0.5 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.15_nozzle_0.5", + "setting_id": "bwykEBgiXSoyw8zd", "instantiation": "true", "name": "0.15mm Optimal @Eryone ER20 Klipper 0.5 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.16mm Optimal @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.16mm Optimal @Eryone ER20 Klipper.json index c0f050ea886..0526d106682 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.16mm Optimal @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.16mm Optimal @Eryone ER20 Klipper.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_Klipper_0.16", + "setting_id": "T6D9ljLTeYJNh7LY", "instantiation": "true", "name": "0.16mm Optimal @Eryone ER20 Klipper", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.18mm Fine @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.18mm Fine @Eryone ER20 Klipper 0.6 nozzle.json index ea0fc9d9543..abba79b691c 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.18mm Fine @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.18mm Fine @Eryone ER20 Klipper 0.6 nozzle.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_Klipper_0.18_nozzle_0.6", + "setting_id": "4Wh9O5o6h68TEy69", "instantiation": "true", "name": "0.18mm Fine @Eryone ER20 Klipper 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Standard @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Standard @Eryone ER20 Klipper.json index b857db3af94..32080903733 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Standard @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Standard @Eryone ER20 Klipper.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_Klipper_0.20", + "setting_id": "08wgu9MP0trL3JBg", "instantiation": "true", "layer_height": "0.20", "name": "0.20mm Standard @Eryone ER20 Klipper", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Strength @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Strength @Eryone ER20 Klipper.json index 120bd59d175..a0679cda215 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Strength @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Strength @Eryone ER20 Klipper.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.20", + "setting_id": "7pYaosUUA3Kv13pI", "instantiation": "true", "name": "0.20mm Strength @Eryone ER20 Klipper", "sparse_infill_density": "25%", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Draft @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Draft @Eryone ER20 Klipper.json index 7fb34b2b8da..4a9d3d1a7b4 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Draft @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Draft @Eryone ER20 Klipper.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.24", + "setting_id": "SJzxe1s82yL2Lgrj", "instantiation": "true", "name": "0.24mm Draft @Eryone ER20 Klipper", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Fine @Eryone ER20 Klipper 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Fine @Eryone ER20 Klipper 0.8 nozzle.json index 776b5b1b394..75c49ea75a1 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Fine @Eryone ER20 Klipper 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Fine @Eryone ER20 Klipper 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.24_nozzle_0.8", + "setting_id": "FaQ9qpjWF28hexB2", "instantiation": "true", "name": "0.24mm Fine @Eryone ER20 Klipper 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Optimal @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Optimal @Eryone ER20 Klipper 0.6 nozzle.json index 70b55631884..67c4801673b 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Optimal @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Optimal @Eryone ER20 Klipper 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.24_nozzle_0.6", + "setting_id": "BaYIyJyVUiPXPjMr", "instantiation": "true", "name": "0.24mm Optimal @Eryone ER20 Klipper 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle.json index 83bff18a5ad..74b798ed80a 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.25_nozzle_0.5", + "setting_id": "GFnRlK2ceYBvswLe", "instantiation": "true", "name": "0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.28mm Extra Draft @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.28mm Extra Draft @Eryone ER20 Klipper.json index af2458c9479..182198870c4 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.28mm Extra Draft @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.28mm Extra Draft @Eryone ER20 Klipper.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.28", + "setting_id": "q5VO6Fykaq7MeqA3", "instantiation": "true", "name": "0.28mm Extra Draft @Eryone ER20 Klipper", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle.json index 79eb6723493..e89b4e43280 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.30_nozzle_0.6", + "setting_id": "uteDUtHF4ALpNDE9", "instantiation": "true", "name": "0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Strength @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Strength @Eryone ER20 Klipper 0.6 nozzle.json index 6b1705de336..948cffdd9ed 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Strength @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Strength @Eryone ER20 Klipper 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.30_nozzle_0.6", + "setting_id": "I69wf0KGngqBKs6d", "instantiation": "true", "name": "0.30mm Strength @Eryone ER20 Klipper 0.6 nozzle", "sparse_infill_density": "25%", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.32mm Optimal @Eryone ER20 Klipper 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.32mm Optimal @Eryone ER20 Klipper 0.8 nozzle.json index bfe3440001c..a4fab18d22a 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.32mm Optimal @Eryone ER20 Klipper 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.32mm Optimal @Eryone ER20 Klipper 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.32_nozzle_0.8", + "setting_id": "6ULt0zBZlGeQj0zL", "instantiation": "true", "name": "0.32mm Optimal @Eryone ER20 Klipper 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.36mm Draft @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.36mm Draft @Eryone ER20 Klipper 0.6 nozzle.json index 9f6b3d55d3c..32a776a3c3f 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.36mm Draft @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.36mm Draft @Eryone ER20 Klipper 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.36_nozzle_0.6", + "setting_id": "JLPcqoC2Uib9aRUQ", "instantiation": "true", "name": "0.36mm Draft @Eryone ER20 Klipper 0.6 nozzle", "travel_speed": "250", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle.json index 3499c41b743..90db009e2c3 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.40_nozzle_0.8", + "setting_id": "Rar12YnTox9pGeWw", "instantiation": "true", "name": "0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.42mm Extra Draft @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.42mm Extra Draft @Eryone ER20 Klipper 0.6 nozzle.json index 031db2b3078..2fb538d04ac 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.42mm Extra Draft @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.42mm Extra Draft @Eryone ER20 Klipper 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.42_nozzle_0.6", + "setting_id": "8XAFm1qhJ5VbrcDt", "instantiation": "true", "name": "0.42mm Extra Draft @Eryone ER20 Klipper 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.48mm Draft @Eryone ER20 Klipper 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.48mm Draft @Eryone ER20 Klipper 0.8 nozzle.json index 9f4d3cb4605..96a13737593 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.48mm Draft @Eryone ER20 Klipper 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.48mm Draft @Eryone ER20 Klipper 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.48_nozzle_0.8", + "setting_id": "PtwzuflLVEwcJU1s", "instantiation": "true", "name": "0.48mm Draft @Eryone ER20 Klipper 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.56mm Extra Draft @Eryone ER20 Klipper 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.56mm Extra Draft @Eryone ER20 Klipper 0.8 nozzle.json index 4027208923a..a76d38d67a8 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.56mm Extra Draft @Eryone ER20 Klipper 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.56mm Extra Draft @Eryone ER20 Klipper 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.56_nozzle_0.8", + "setting_id": "yjLp31EgxsGWg3AY", "instantiation": "true", "name": "0.56mm Extra Draft @Eryone ER20 Klipper 0.8 nozzle", "type": "process" diff --git a/resources/profiles/FLSun.json b/resources/profiles/FLSun.json index 6c2da9e7a22..e0a9cfd88ec 100644 --- a/resources/profiles/FLSun.json +++ b/resources/profiles/FLSun.json @@ -1,6 +1,6 @@ { "name": "FLSun", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "FLSun configurations", "machine_model_list": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic ABS.json b/resources/profiles/FLSun/filament/FLSun Generic ABS.json index db7878862ad..82d91d891ce 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic ABS.json +++ b/resources/profiles/FLSun/filament/FLSun Generic ABS.json @@ -3,7 +3,7 @@ "name": "FLSun Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2f9nYaR0PUMkGvDD", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic ASA.json b/resources/profiles/FLSun/filament/FLSun Generic ASA.json index c43622fc7b7..650953c7b09 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic ASA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic ASA.json @@ -3,7 +3,7 @@ "name": "FLSun Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9GPCRihSQTBRxkm3", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json b/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json index b869b21164f..0b3441d8662 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2JOA0YeYZHj0lFmA", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PA.json b/resources/profiles/FLSun/filament/FLSun Generic PA.json index 73ae44afac4..e24fbbd9666 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PA.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ek14AgskfJXeZ84u", "filament_id": "GFN99", "instantiation": "true", "nozzle_temperature_initial_layer": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PC.json b/resources/profiles/FLSun/filament/FLSun Generic PC.json index 6b57e55a558..2d03d67063e 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PC.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PC.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wluYSRtaCqajFCYT", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PETG.json b/resources/profiles/FLSun/filament/FLSun Generic PETG.json index defba2acc88..6b81b490925 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PETG.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PETG.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FCjlzoLFYn3IVxxD", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json b/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json index 3acbc216c92..690c4427f9d 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FEdplifUKOSUA4XX", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PLA.json b/resources/profiles/FLSun/filament/FLSun Generic PLA.json index fe1cfcb2310..85233e12853 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PLA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PLA.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ltWBfkc84nszWS19", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PVA.json b/resources/profiles/FLSun/filament/FLSun Generic PVA.json index 81c844cc55b..106aa001e07 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PVA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PVA.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IohayLPyRIsZJ0GY", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic TPU.json b/resources/profiles/FLSun/filament/FLSun Generic TPU.json index 5bf9c39a391..60b05b81344 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic TPU.json +++ b/resources/profiles/FLSun/filament/FLSun Generic TPU.json @@ -3,7 +3,7 @@ "name": "FLSun Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hewisceC8FmSwzF4", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 ABS.json b/resources/profiles/FLSun/filament/FLSun S1 ABS.json index fabfce1466a..d9a3922199d 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 ABS.json +++ b/resources/profiles/FLSun/filament/FLSun S1 ABS.json @@ -3,7 +3,7 @@ "name": "FLSun S1 ABS", "inherits": "FLSun Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tvpZ28Oe4Al7hlgj", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 ASA.json b/resources/profiles/FLSun/filament/FLSun S1 ASA.json index a6a064a55d9..a82c9179a48 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 ASA.json +++ b/resources/profiles/FLSun/filament/FLSun S1 ASA.json @@ -3,7 +3,7 @@ "name": "FLSun S1 ASA", "inherits": "FLSun Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "C5oyaWw3YVEz0CgE", "filament_id": "GFB98", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 PETG.json b/resources/profiles/FLSun/filament/FLSun S1 PETG.json index 427719e44a9..3b477c63357 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 PETG.json +++ b/resources/profiles/FLSun/filament/FLSun S1 PETG.json @@ -3,7 +3,7 @@ "name": "FLSun S1 PETG", "inherits": "FLSun Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ac6q0FtMFMLesFdU", "filament_id": "GFG99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json b/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json index 9ad60030360..f6324b0bc3c 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json +++ b/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json @@ -3,7 +3,7 @@ "name": "FLSun S1 PLA Generic", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "z0Y9rQVZairHqwbi", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 PLA High Speed.json b/resources/profiles/FLSun/filament/FLSun S1 PLA High Speed.json index d14ba22a9ed..4cb721859ec 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 PLA High Speed.json +++ b/resources/profiles/FLSun/filament/FLSun S1 PLA High Speed.json @@ -3,7 +3,7 @@ "name": "FLSun S1 PLA High Speed", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "v2clpNXXo8m6dV33", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json b/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json index d18ba8086d2..af4d4b9379e 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json +++ b/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json @@ -3,7 +3,7 @@ "name": "FLSun S1 PLA Silk", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "164Bn4YchxJAaLsa", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 TPU.json b/resources/profiles/FLSun/filament/FLSun S1 TPU.json index 5fb5980a26c..7a02ed84cf4 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 TPU.json +++ b/resources/profiles/FLSun/filament/FLSun S1 TPU.json @@ -3,7 +3,7 @@ "name": "FLSun S1 TPU", "inherits": "FLSun Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yzPvNqIo7mfWAwNS", "filament_id": "GFU99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 ABS.json b/resources/profiles/FLSun/filament/FLSun T1 ABS.json index 4f1b782cf1a..e7d8bea77a5 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 ABS.json +++ b/resources/profiles/FLSun/filament/FLSun T1 ABS.json @@ -3,7 +3,7 @@ "name": "FLSun T1 ABS", "inherits": "FLSun Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GP8VqRfidKOdj0ZJ", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 ASA.json b/resources/profiles/FLSun/filament/FLSun T1 ASA.json index a74d15a678e..c34c34a213f 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 ASA.json +++ b/resources/profiles/FLSun/filament/FLSun T1 ASA.json @@ -3,7 +3,7 @@ "name": "FLSun T1 ASA", "inherits": "FLSun Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YmJbWfCQpNk9nxB7", "filament_id": "GFB98", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 PETG.json b/resources/profiles/FLSun/filament/FLSun T1 PETG.json index 40f2b263389..9b753af05b0 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 PETG.json +++ b/resources/profiles/FLSun/filament/FLSun T1 PETG.json @@ -3,7 +3,7 @@ "name": "FLSun T1 PETG", "inherits": "FLSun Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "A2aA7xcmqgz8ERyY", "filament_id": "GFG99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json b/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json index 126d6ac10d7..e2666870379 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json +++ b/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json @@ -3,7 +3,7 @@ "name": "FLSun T1 PLA Generic", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aUMHmlsPMYDicnPp", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 PLA High Speed.json b/resources/profiles/FLSun/filament/FLSun T1 PLA High Speed.json index f7cb9699a27..95b2ba75a56 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 PLA High Speed.json +++ b/resources/profiles/FLSun/filament/FLSun T1 PLA High Speed.json @@ -3,7 +3,7 @@ "name": "FLSun T1 PLA High Speed", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "E4lpSLLlAxUW04ik", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json b/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json index 32e51abf650..04c82ce0712 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json +++ b/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json @@ -3,7 +3,7 @@ "name": "FLSun T1 PLA Silk", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gElUb4GnCoEfVlEd", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 TPU.json b/resources/profiles/FLSun/filament/FLSun T1 TPU.json index f1d376c41ad..feb8326a229 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 TPU.json +++ b/resources/profiles/FLSun/filament/FLSun T1 TPU.json @@ -3,7 +3,7 @@ "name": "FLSun T1 TPU", "inherits": "FLSun Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "34Ux18VB4d6R6G40", "filament_id": "GFU99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/machine/FLSun Q5 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun Q5 0.4 nozzle.json index a8ff5545663..66fb95ccc6e 100644 --- a/resources/profiles/FLSun/machine/FLSun Q5 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun Q5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun Q5 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "LKmuanzzJdFhP8fy", "instantiation": "true", "printer_model": "FLSun Q5", "default_print_profile": "0.20mm Standard @FLSun Q5", diff --git a/resources/profiles/FLSun/machine/FLSun QQ-S Pro 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun QQ-S Pro 0.4 nozzle.json index 71c8d1b0660..02b345c4bf2 100644 --- a/resources/profiles/FLSun/machine/FLSun QQ-S Pro 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun QQ-S Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun QQ-S Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "nE6QICHiy6e5AiQ4", "instantiation": "true", "printer_model": "FLSun QQ-S Pro", "default_print_profile": "0.20mm Standard @FLSun QQSPro", diff --git a/resources/profiles/FLSun/machine/FLSun S1 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun S1 0.4 nozzle.json index 73eab7f8578..e75c40726b7 100644 --- a/resources/profiles/FLSun/machine/FLSun S1 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun S1 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "49LTtJSqi4OEiaC4", "instantiation": "true", "printer_model": "FLSun S1", "default_print_profile": "0.20mm Standard @FLSun S1", diff --git a/resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json index 3efa9e1fdb5..b6fac6caa72 100644 --- a/resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun Super Racer 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "AE0I04uUuMOjQMMc", "instantiation": "true", "printer_model": "FLSun Super Racer (SR)", "default_print_profile": "0.20mm Standard @FLSun SR", diff --git a/resources/profiles/FLSun/machine/FLSun T1 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun T1 0.4 nozzle.json index d46f3ac93ea..3cff2526eb6 100644 --- a/resources/profiles/FLSun/machine/FLSun T1 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun T1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun T1 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "M1YWzai2pJOT8PmC", "instantiation": "true", "printer_model": "FLSun T1", "default_print_profile": "0.20mm Standard @FLSun T1", diff --git a/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json index 719dd6ab195..024d62cc72f 100644 --- a/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun V400 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "4P1vcj47NO5IMNPe", "instantiation": "true", "printer_model": "FLSun V400", "default_print_profile": "0.20mm Standard @FLSun V400", diff --git a/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json b/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json index 43285b61b17..62798612024 100644 --- a/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json @@ -3,7 +3,7 @@ "name": "0.08mm Fine @FLSun Q5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pIcVuwwQ8EWmPKgZ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json index eb3e1666144..391b7743a16 100644 --- a/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json @@ -3,7 +3,7 @@ "name": "0.08mm Fine @FLSun QQSPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ypz6DmDfVK0nHsGe", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json b/resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json index 62b97a833e2..03a66178ade 100644 --- a/resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json +++ b/resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json @@ -3,7 +3,7 @@ "name": "0.08mm Fine @FLSun SR", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WMx2mtWIuLTNAPHS", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.12mm Fine @FLSun S1.json b/resources/profiles/FLSun/process/0.12mm Fine @FLSun S1.json index 5ea569608f5..175bc156d28 100644 --- a/resources/profiles/FLSun/process/0.12mm Fine @FLSun S1.json +++ b/resources/profiles/FLSun/process/0.12mm Fine @FLSun S1.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FLSun S1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kKhJMW2CyY9YjIWb", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "7", diff --git a/resources/profiles/FLSun/process/0.12mm Fine @FLSun T1.json b/resources/profiles/FLSun/process/0.12mm Fine @FLSun T1.json index 7e36b5301eb..60ece5a8dd2 100644 --- a/resources/profiles/FLSun/process/0.12mm Fine @FLSun T1.json +++ b/resources/profiles/FLSun/process/0.12mm Fine @FLSun T1.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FLSun T1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oNPApvJbDU68qbHu", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "7", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json index 9de684e7dfe..5c9f752ee62 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FLSun Q5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TZdqXwp7bC2m9tpO", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json index b6263c05cd4..2d5e2ab82be 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FLSun QQSPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HVdXArEX5vgTZkQK", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun S1.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun S1.json index 973f664991c..ba040799d15 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun S1.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun S1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FLSun S1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UGSWIV310UmosGRr", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "6", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json index fb941cd2082..6b33217ea2a 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FLSun SR", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "tqesgSzTbrfXG1mY", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun T1.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun T1.json index ce78dc13924..049e8677a28 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun T1.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun T1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FLSun T1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bKRAKNOYR7D8G2Ox", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "6", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json index bf3550bdf0a..d9c7f3799b7 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun Q5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CUzDbhgZMATkwFSg", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json index a52ecb74513..a4ec9697110 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun QQSPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "FV3PZ6zjZP5chJlp", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun S1.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun S1.json index b2adc0d490a..618ae5422d7 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun S1.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun S1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun S1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zBLlyEYKKWmqXdEa", "instantiation": "true", "bottom_shell_layers": "5", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json index 9515e851986..478126620d1 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun SR", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EzioqGPSbnBNftNw", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun T1.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun T1.json index 345c3c10312..ff4259dd53c 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun T1.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun T1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun T1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BRxYqkw9fizTLPYy", "instantiation": "true", "bottom_shell_layers": "5", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun V400.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun V400.json index 6b1fce06932..d09a109a582 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun V400.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun V400.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun V400", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LMRROTQlnO7o9Rcl", "instantiation": "true", "outer_wall_speed": "120", "inner_wall_speed": "200", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json index f9e40e9976a..66b5bc2fe61 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FLSun Q5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PjpsLsUYSt1jfY7G", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json index 94f300bf103..92ef6cc2e4c 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FLSun QQSPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "9mHQwwo6UoNaD07z", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun S1.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun S1.json index 0974b875a0e..f9803d2be4d 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun S1.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun S1.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FLSun S1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7Pj4Z9duYyxqCCs1", "instantiation": "true", "bottom_shell_layers": "5", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json index 06d0cdde0c0..3ab6730d9c1 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FLSun SR", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ehSWBo2Q9G7QS3Wt", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun T1.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun T1.json index 5a116fca2e3..0b9e781bc1c 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun T1.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun T1.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FLSun T1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MvInpEja0HniYPwn", "instantiation": "true", "bottom_shell_layers": "5", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json index 56847545dc8..2c2f123e719 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @FLSun Q5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "iEXqwmSaxdLWpN8K", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json index 9bc88247b12..e1e50c074ec 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @FLSun QQSPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fJPwsjRdFJRka84X", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun S1.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun S1.json index a15718b2619..7dc4f92b0b8 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun S1.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun S1.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @FLSun S1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VJ9Pl4a0c8Q0V0jG", "instantiation": "true", "layer_height": "0.3", "bottom_shell_layers": "4", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json index d25270fb047..1c1917adc2b 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @FLSun SR", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kOtY4iPbqQlkQPef", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun T1.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun T1.json index a4c6cd4e38b..a6ff00c0c90 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun T1.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun T1.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @FLSun T1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "uA2KAqKwJB7a9E3w", "instantiation": "true", "layer_height": "0.3", "bottom_shell_layers": "4", diff --git a/resources/profiles/Flashforge.json b/resources/profiles/Flashforge.json index 23b81bb56e6..661d171771d 100644 --- a/resources/profiles/Flashforge.json +++ b/resources/profiles/Flashforge.json @@ -1,7 +1,7 @@ { "name": "Flashforge", "url": "", - "version": "02.04.00.03", + "version": "02.04.00.04", "force_update": "0", "description": "Flashforge configurations", "machine_model_list": [ diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 HF nozzle.json index 427ae5a3eed..83e1c857306 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "M9HM8tihJzV4crs8", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 nozzle.json index c8cdf815c47..f94eafbe9dc 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "08VjBSha6gjhJYgk", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.8 HF nozzle.json index ab2414e679e..d5c6c3c33d9 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "JqgkmxnjlnQ3uw1u", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 HF nozzle.json index aef38f8381b..2bf41bc64ba 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4P 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "vvLLPvSeb5PYbT1R", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 nozzle.json index 3b680ad5724..e8806df0460 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4P 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "mPJMPfFCyfWdKzMO", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.8 HF nozzle.json index 19680e1df95..56562e51e73 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "HTgqTUTznOlfCRAd", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 HF nozzle.json index 80754bd5ea3..e5b251acabb 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4 0.6 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "3w8fnDjkoFaJ6Nhw", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 nozzle.json index 5965555ac54..7394511a161 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "owHbDqY55rFtSegz", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.8 HF nozzle.json index d2f871f48b8..87e74372e5a 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4 0.8 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "eFK1zzT1JY9ZnEl9", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json index 3c5a9ac2407..7d6d3c1a959 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4P 0.6 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "E8CcstoHzax78ZJY", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 nozzle.json index d186114c5e0..01672b8f65a 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4P 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "xa22FD8bRVGsLiPJ", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json index 7f6cc8b7237..ff77d7095a6 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "bZ9dbA8dIu9mjWyN", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json index 6847cde6b1b..b1cb0787b5a 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS-CF @FF G4 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4w0oK3F50O1DUqsu", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json index 2d0fb66fea0..fc6f6e975af 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS-CF @FF G4P 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "94vPnztRcpnbfAKx", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json index 1e286819bdd..97970235e48 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge ABS @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04_02", "filament_id": "GFB99", "instantiation": "false", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json index c84d934a9ce..dc0989bbc41 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS Basic @FF AD5M 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_02", + "setting_id": "SuEfcE6AYK8N1FI4", "instantiation": "true", "filament_settings_id": [ "Flashforge ABS Basic @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json index 21151d26f57..0deb98db56a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS Basic @FF AD5X 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_02", + "setting_id": "gmkc6fRLMI73Iut8", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json index a965f980067..7f8ec43e72f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS Basic @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fgEYZ1Mgyp1AvtwU", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json index 32dd90664d2..0f95b37aadf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS Basic @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cIxbQMVdG5K85rJr", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X.json index 8c533bc469c..4b533b00a71 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS Basic @FF AD5X", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9GXBeuCUrScJfmJB", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5.json index 5e8a02a3977..d53b5cc2c12 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF C5", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "ds0GgE1jssl4IbF3", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5P.json index 5702d2d9152..eb4ee53f53c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF C5P", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "UTWbwTYuXYbBx3uw", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json index 948bc30015f..fe13cbb5cbc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "CuckX5MsN69806ow", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json index 581df95f4d2..4a3bd054b28 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "NttDJCrfB01uwMDl", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json index 2184ee0b051..594f2919571 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "hJd6dG6OdEffEFC7", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json index 55c82fa239f..34d1f4e94c5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8yFCuCnEuI3dUvQy", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 HF.json index b2ef3d8358c..60847876a04 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "np4fP5kghRlczOTT", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4.json index a327d456b83..f267e9bc74e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "8o2maTFOXq0XR6Dm", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json index dbb723993a4..1ec700928b5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "MBo02hFXn0ebDRdb", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json index 7310d52ced2..baa7e84ede7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "vCsjC0UnKenzIR0O", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json index 9c447053dd3..d4b2a75adb7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "xhxVdlmh5r7meoHo", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json index 816e6b11543..ce8cb40ddc3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "6dlQN4Xhd6kGZ0Qn", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P HF.json index e8ef3badca4..9518e3fb1ce 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "r8WVFPozL8f5oLVJ", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P.json index b7e12c9cec4..80ad9a2da83 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "xw0pZNmhw1K4tPQ1", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic.json index de58140d429..3e93a312430 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS Basic", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04_02", + "setting_id": "m6QLC2UaS3fW298i", "instantiation": "true", "filament_settings_id": [ "Flashforge ABS Basic" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json index 9c2703308e5..3b7c0a2db6d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-CF @FF G4 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Nx3Px0Zu356IKShT", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4.json index 0dd79bf44ea..a17e48af0dc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-CF @FF G4", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "d4EGsmMeEDCOUBF2", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json index 2285057cd1e..ed4c177d184 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-CF @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "9ziPFKsjESbw1pXL", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P.json index ccaa6da0ce2..dd952e95a1a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-CF @FF G4P", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "NzJJs6yrSik5xuyX", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5.json index 96d5d067d46..3b1b422c338 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-GF @FF C5", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "UinlbuXNbad2kN0s", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5P.json index 822e3454359..72364ebe475 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-GF @FF C5P", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "ycgiXY41kqNgslE3", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json index 6f178e352f0..0f80d06af9e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge ASA @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic ASA", "from": "system", - "setting_id": "GFSA04_05", "filament_id": "GFL99", "instantiation": "false", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json index 61baec4f3fe..fcdb3faedd4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA Basic @FF AD5M 0.25 nozzle", "inherits": "Flashforge ASA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_05", + "setting_id": "kjS4k8nrIdNNNoWw", "instantiation": "true", "filament_settings_id": [ "Flashforge ASA Basic @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json index 3280dada9b6..3294344bd45 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA Basic @FF AD5X 0.25 nozzle", "inherits": "Flashforge ASA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_05", + "setting_id": "Y647IFVkk5JIXzte", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json index e53b3a5cc91..9904aea39c3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA Basic @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vaOyXUcrJ97KE7ZW", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json index ebd378dc2cb..4353992934e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA Basic @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iLWq5pJ3ox9EAM1Z", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X.json index 73829aec0bf..cb4a543dbd5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA Basic @FF AD5X", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "i7PUPYxy0Z9weyyA", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5.json index 393132a800d..485f06e0463 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF C5", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "UUSDyOetXSOuBIUd", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5P.json index f706b524e70..4af0b8b47c3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF C5P", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "2r0kwhklE24Hp94O", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json index ca73a8b1d52..dae515a9aaa 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "XWta5jJFsCxBdEPd", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json index d3d51db3d0d..4c35d0a62b4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "w8O6oenp0NymzCqf", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json index 917529c25d0..e4435448ae0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "thhmWRzNYLYJOeR2", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json index 1806f851bc8..86d4e12b4c7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "g5jiz6Q6or23BIo7", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 HF.json index 1d09c21e353..890dd75f0fe 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "7xmWlHHNMvXBKdYS", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4.json index dd9f7f83007..4826e42ebab 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "r0B8KfZ1mNWMvGqE", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json index 95d77202e4f..76cd89a82a1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "quOwRRLcNfOy0sYf", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json index a5c24b7d3b9..324c9eec047 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "CBLZqLhkwf5XKO12", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json index cddf9b76d0a..461aa7bd0af 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Df3anJxiRXLVO9hw", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json index 59d2cb7077a..0c0cc1aab17 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Nu4WvBWuEhazZfh5", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P HF.json index 3d659d11fb5..9a59d625d26 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "hF0h4ye3hMDtEba1", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P.json index 87c5c641fda..3a10f337b96 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "3isZCWr4CBjFtGDX", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic.json index 52f1d0f4c61..7ccef601f30 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA Basic", "inherits": "Flashforge Generic ASA", "from": "system", - "setting_id": "GFSA04_05", + "setting_id": "SU6r879TbQMUFCij", "instantiation": "true", "filament_settings_id": [ "Flashforge ASA Basic" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5.json index 71bc7aa427d..9956e193eef 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-CF @FF C5", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "TqU1elqwuVr9EhTA", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5P.json index e5f84a43d53..c2a78c9e119 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-CF @FF C5P", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "nMczAtoc5W0J2WkS", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4.json index 3c87df4ff27..846cf4c76af 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-CF @FF G4", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "ap7X4nWKfFR53NT0", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4P.json index da788e5a6d2..d0ad27e1cdf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-CF @FF G4P", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "kZXg6odPm5iW79Qn", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF.json index b0a17ef8c21..02db6bfea9a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA-CF", "inherits": "FusRock Generic PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CI5dvVrCNk2XTU82", "instantiation": "true", "filament_flow_ratio": [ "0.99" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5.json index 4f1df3e3c3e..3a328388df3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-GF @FF C5", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "941E5MaAyFY3iv4V", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5P.json index 6cdd349d1ae..46857c2b139 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-GF @FF C5P", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "RdmsxyUGUX8Ot4oj", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @FF AD5M 0.25 Nozzle.json index 80ada86071f..0504844ed6f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge ABS @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04_02", + "setting_id": "NWEY6ZxkUS8jqNU2", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U 0.6 Nozzle.json index 628520fa344..ada3f135826 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ABS @G3U 0.6 Nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OaXiy7DI5bOAiaYb", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U.json index 03bea92365e..1f6b35db195 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ABS @G3U", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Cfd7Q1nGwqxI5Ngh", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json b/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json index d2aa442f964..38d58ba3465 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uygAzLWRQiCIJ8jh", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @FF AD5M 0.25 Nozzle.json index 9f296beaafb..d5b0d17c259 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge ASA @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic ASA", "from": "system", - "setting_id": "GFSA04_05", + "setting_id": "spSRbidSN2yeZLhD", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U 0.6 Nozzle.json index ad8a00b2c01..c0819fa0b19 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ASA @G3U 0.6 Nozzle", "inherits": "Flashforge Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gVLGkoCoyrWL4DQr", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U.json index 2746f0c559d..fcce2738f54 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ASA @G3U", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "c6IMgUyqOeS2HFWw", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json b/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json index c8e0a07c31b..d7b6844c783 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jMCunppmYOH5QIra", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic HIPS @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic HIPS @G3U 0.6 Nozzle.json index 604f27388c1..baf6514cd9e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic HIPS @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic HIPS @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic HIPS @G3U 0.6 Nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b3CFhGGnZLzpyAWa", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic HIPS.json b/resources/profiles/Flashforge/filament/Flashforge Generic HIPS.json index 9b4f5975738..18f52c4f1f1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic HIPS.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic HIPS.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic HIPS", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "n68nw5tzKZ0rq43O", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA @FF AD5M 0.25 Nozzle.json index c5df59a89e1..93ee8f80cb1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge HS PLA @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic HS PLA", "from": "system", - "setting_id": "GFSA04_09", + "setting_id": "1cvcaoBFNbg2GucE", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA.json b/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA.json index 257745075c2..c67de4ecd39 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic HS PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "foG37d7HZKgt6l43", "filament_id": "GFL99", "instantiation": "true", "bed_temperature_difference": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @FF AD5M 0.25 Nozzle.json index ddf3931ec2c..4d02d458d01 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge PETG @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "KerUxwPsSEKDO6jL", "filament_id": "GFG99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @Flashforge Artemis.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @Flashforge Artemis.json index 5ecd2c53100..20a08fe28e0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @Flashforge Artemis.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @Flashforge Artemis.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Flashforge Artemis", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "FFFP02", + "setting_id": "YflkaS7NfBE5XiSH", "filament_id": "FFF03", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.6 Nozzle.json index a48793b73cd..21839658213 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "W7pWKQ2EWAB5viV1", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.8 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.8 Nozzle.json index 6db5a42424f..3e61f730297 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG @G3U 0.8 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eDQb2WfDsUTvj2Nf", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U.json index 9cf047e2c6f..075e2e49236 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG @G3U", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yo4uc7TxQbqnlRUY", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.6 Nozzle.json index b99ea020a47..385ec94b64c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG-CF @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u2OzNKIQIKUrOT9k", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.8 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.8 Nozzle.json index b3e5c9fb20c..4efa8a0a0f8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG-CF @G3U 0.8 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7Qq8eY1kcFHTgzW3", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U.json index f6ab0a055e9..d3fb0d65906 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG-CF @G3U", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gLrecba33jDI9PeI", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF10.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF10.json index 81dc45481a9..934ba831efe 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF10.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF10.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG-CF10", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PlC4Ek7d09ytYZqJ", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json index 17b99a5f2ca..28ed60ccf74 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YqiSgA018CdflfT9", "filament_id": "GFG99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @FF AD5M 0.25 Nozzle.json index 4d05ba7dae6..769d2f16d5f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge PLA @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "FFGP01_01", + "setting_id": "o1CHzasJ7x3CKjue", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.6 Nozzle.json index b698ad45ee2..72add604406 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.6 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge Generic PLA @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "FFGP02_01", "instantiation": "false", "compatible_printers": [ "Flashforge Guider 3 Ultra 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.8 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.8 Nozzle.json index 5091ac12c68..ccc07ccec35 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.8 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge Generic PLA @G3U 0.8 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "FFGP02_01", "instantiation": "false", "compatible_printers": [ "Flashforge Guider 3 Ultra 0.8 Nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U.json index 4f108d226c3..4154eed45e6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA @G3U", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "FFGP02", + "setting_id": "gjIdhPTLOr17mz5B", "filament_id": "FFG01", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.6 Nozzle.json index 15cbc7285bc..57b925762bd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA-CF @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KR0LUSD7wd55oNI6", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.8 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.8 Nozzle.json index 39076e562bc..7300eb4bf44 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA-CF @G3U 0.8 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rQSFNxuuqUVzsSV2", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U.json index 9b18a6f5005..f236a9a83b5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA-CF @G3U", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "S1UTm2oMRoQ4yM4R", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF10.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF10.json index b5b9b728c74..29b86ed5b15 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF10.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF10.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA-CF10", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qH3l3p0yvZHqHnwG", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-SILK @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-SILK @FF AD5M 0.25 Nozzle.json index fa93e81d262..d04d5eb4cf3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-SILK @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-SILK @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04_25", + "setting_id": "WOl0JsKxAQFo2WnW", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-Silk.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-Silk.json index b5a3a2c6dac..bb3acc4145b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-Silk.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-Silk.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA-Silk", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NryK9oIg8wMDKVHW", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA.json index 0abc294d6b6..61b52760519 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "FFGP01", + "setting_id": "DwAgYHepesazDUjN", "filament_id": "FFG01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PVA.json b/resources/profiles/Flashforge/filament/Flashforge Generic PVA.json index b149bbbeb94..6adaf46d6ef 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PVA.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PVA.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PVA", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NA0PhaTNDvEH38lF", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic TPU.json b/resources/profiles/Flashforge/filament/Flashforge Generic TPU.json index a8d92698c00..473ba6ac339 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic TPU.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic TPU.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zQEeIIKWSgsDqlpI", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5.json index 3120b0e0174..b9a10c1f188 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF C5", "inherits": "Generic HIPS @System", "from": "system", + "setting_id": "ckwc7U0Q2eKHmCxY", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5P.json index 78224dd1f6f..8a61df2fe2f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF C5P", "inherits": "Generic HIPS @System", "from": "system", + "setting_id": "AEQYrT7e4Q5J2G6C", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 Pro 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json index 6f6fd6658a7..81c501eee93 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "jUNUZhE0BJyB64fC", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 nozzle.json index c8bd10ae34b..34dacd8f8d7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "0qMEqo9YMDLSVafs", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json index e02986818de..756f4ddbf2f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "ek749gIdUAPq6WxT", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 HF.json index 40fa974989f..9ca5d033bd2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "tEohTtyHofD6l6o3", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4.json index 141ef5a1fc6..2e977fd0848 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "oLeLrIjFJzoZha3E", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json index 5c86e0e0ab6..6ae4e562a27 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "HXGUlYY4X5IHhL3R", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 nozzle.json index 151f8b0e916..9354f7ede7b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "g22Cv3zy3h5BhJYK", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json index 10806c1ca71..980ab69f11e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "aDzBXuvN7IuSP5sa", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P HF.json index d5431ca8950..6f7493a72b7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "CIj24REX7BA8zPHQ", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P.json index a4fd3d36e19..7d0d9befb39 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "yAGyGjF6uDrjfjLn", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json index a924689ecb3..fbb47b2d7ff 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PETG @FF AD5M 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "1NFhtEvvvgZiHcto", "instantiation": "true", "filament_settings_id": [ "Flashforge HS PETG @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json index 8b762a5b71f..fc0e4c7cee1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PETG @FF AD5X 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "eNOkWn5PT8rDpA0g", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json index 28ff77851ed..a6a28ae753a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PETG @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vOqAGzaYLz0XdRvC", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json index 1ef13671693..28c7208fade 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PETG @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KSuxZ3fpQz0khDSz", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X.json index 8353fc522f0..3b495aebe88 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PETG @FF AD5X", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o4B1kAToVny7jw0M", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5.json index 9080d0185db..5c0421a23e6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF C5", "inherits": "Generic PETG HF @System", "from": "system", + "setting_id": "kpRved5M3NktqIYn", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5P.json index de8a43145a4..ca2dcd370ca 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF C5P", "inherits": "Generic PETG HF @System", "from": "system", + "setting_id": "ypxgjHl9uIMyZIce", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.25 nozzle.json index ffb74f04a74..b8f6997d97b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "uXGuyvVxfdQW22vu", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json index e182c25943e..785fd2495b1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "q9UbakUmZPzG3xU0", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 nozzle.json index 143ea34fcee..57c2e5ca726 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "IL18Lu0qHx1RVqKD", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json index cccbdf815d2..f8cfba7acd3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "2FQib7fZjcwfCnm2", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 HF.json index 922e38a439c..16e88eeb429 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "CtwOm90WWD4S7U6j", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4.json index 334e901e88d..bc806c44d88 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "kvULpm0WhKiSPj8V", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json index b26d2cca25a..b14a0b44ba5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "bFVYSPkynBBapFjq", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json index 52af4575f2c..dfb79c840d7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "CUU7knzm4cbe1giE", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json index f315a6e11b2..6c36ff1fbbe 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "gcYvL572cumWZdnl", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json index b48e2568dfd..a58ddca149c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "cx99AH0C575XxAj9", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P HF.json index f04ad6e2afc..35a01b21ce2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "RrrKoR7MVD8IFQlq", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P.json index 8749e7f32c6..a30f562b426 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "7VEPGuR16wNukAX2", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG.json index 2a2eff18d6c..38054ea5ae6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PETG", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "H9uwlPw6m6Nf7qH5", "instantiation": "true", "filament_settings_id": [ "Flashforge HS PETG" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json index ddf1226ade5..0ee65ec44f2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA @FF AD5M 0.25 nozzle", "inherits": "Flashforge Generic HS PLA", "from": "system", - "setting_id": "GFSA04_09", + "setting_id": "OmDped3weZ4uHAtY", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json index 6591245cae6..266200739ae 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "bfPaqPGaR5zpTsLk", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json index 5e09da1f123..7169a76fdf8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oD592bif4ra0ADco", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json index 5fc411ecf1b..94da672d0fa 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ldhMY6F7v6nK8wwf", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X.json index 24c9234257a..edf25222de7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5vzOmbjHbkJXrgYM", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5.json index 5f69bbc5578..310fc73a326 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "xSJk7LFpYKmckPQh", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5P.json index a91076bb1ff..87c4ffd656d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "xdFZUsj1cNLXdvT6", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.25 nozzle.json index 3bc3098649b..ff783fbf101 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "JCQtuv8Abfz4jVRV", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json index c97ff29e314..7f4547dc193 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "hzxRPyH1fqarsMuN", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 nozzle.json index 050d3ecdbff..ba5f92ca7cf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "oJsLlIIpxwGSoJTv", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json index 0c18cc72617..f0fcb415c6b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "hJbNZ381ERkZ0KUB", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 HF.json index 4555f4d60b1..eb253a97dbd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "BqavrNpwhXDXcZ3r", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4.json index 75d5a61721a..a1acf9af42e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "cgf4Qk4iHZh7zHN5", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json index b8d6db53d78..b399b0cf778 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "jFUS6233aq4XPgrn", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json index e20df813012..0c14a754787 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "p31K69Srld6o4sQ2", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json index 974aaea7898..5b4e2d04d44 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "MwbYvnRIzlNmH81h", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json index ae2327c538a..40c2ae337a9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "rKhHmkqXYD2xN4K9", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P HF.json index 06953de55a0..8871c32fc48 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "Dshsi3O7NvYYjXJt", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P.json index 0a0346bf99c..82b514d1af3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "mfnL6QEevCmTmOL0", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json index 9ec99ab2ed3..a5326ae2b7a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "AGLHrHKWye0YTtNK", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json index bf4a856ec9a..e7f97301bda 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "px8qzmB2yFLoNl83", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json index a3b01fd100e..9d8e653cec9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "mwuIEsBz5bXEV68w", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json index b31f987e8a4..7b61a8668d9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "TielygFT88owWg4J", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json index 0e24e2e60fd..b15214f50bb 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "It2NI6OFhNEUvulz", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json index 423a53e7a48..4320a3fce3a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Qt3huWxoYpMEqEN6", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json index b7464d8f6d5..c5a76c1d85d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Y3XuavnnOMoHLGHA", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json index b008d746c15..034a1ee9692 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "2HUxAWeolJIlxPs1", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA.json index f4825e2e420..355d9f6d1e7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vdaZBnDsmUC1fhDp", "instantiation": "true", "filament_settings_id": [ "Flashforge HS PLA" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 0.6 HF nozzle.json index b5c41b53418..bf571e2ea36 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "u7rolQaTQz9U6veH", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 HF.json index a86a315fd08..4672cfc77c1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "qTGTwiliWj3dSo9y", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4.json index ceafbee314c..5576d9ff980 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "wAkuJRTLWxGyBU0b", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P 0.6 HF nozzle.json index cfbae15215b..c80656c59f2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "dbs29hQSQl9zuWis", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P HF.json index 4c6330a7871..ad3daa85042 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "XGNPvS2ps7Xn2fpx", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P.json index 6359808d76f..8946fa929ce 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4P", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "h33iEGZ7wPeBYKYQ", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5.json index c58ad5586e5..80326684a61 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PA-CF @FF C5", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "e58C9MdOWikIbbVR", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5P.json index 65f0cac2a83..8134b2b2583 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PA-CF @FF C5P", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "RX2Tg8KpwQpCbkLI", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4.json index 62c0eca20e9..952162aaa2d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PA-CF @FF G4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "C4DfYuQgDXIgK7mk", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4P.json index 6b145a600cc..ae3207a7b11 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PA-CF @FF G4P", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "Yu7hL4izNsgDVqMT", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA12-CF.json b/resources/profiles/Flashforge/filament/Flashforge PA12-CF.json index efa42a857ea..8fe4514502a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA12-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA12-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PA12-CF", "inherits": "FusRock Generic PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1CevPV960sQWT3NF", "instantiation": "true", "filament_density": [ "1.1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA6-CF.json b/resources/profiles/Flashforge/filament/Flashforge PA6-CF.json index 1c21ec4a4a9..8dbd624a6e2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA6-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA6-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PA6-CF", "inherits": "FusRock Generic PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NGbZ8pQVTRKw28kp", "instantiation": "true", "filament_density": [ "1.1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA66-CF.json b/resources/profiles/Flashforge/filament/Flashforge PA66-CF.json index 0bb9d9d4045..bcaea09005e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA66-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA66-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PA66-CF", "inherits": "FusRock Generic PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5pVoGBvbiUlrJSwR", "instantiation": "true", "filament_density": [ "1.1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5.json index 7d02bfecb35..7437791891f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PAHT-CF @FF C5", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "8ZR8o3MKYxXLd70k", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5P.json index 63ab8b0fc10..e83a93e1136 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PAHT-CF @FF C5P", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "FSfGFl7FCutxXN2l", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4.json index 69c2ff79800..1758aa7657e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PAHT-CF @FF G4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "ZlpBAM9uaS01sWAJ", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4P.json index 11a113e170f..c17b5eeed15 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PAHT-CF @FF G4P", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "9DaSYBA2OI7Jj5zS", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5.json index dc97d5fb24c..1036a51c4be 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PET-CF @FF C5", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "3bguiaEtUsS8ULHW", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5P.json index 581b764bf7f..9b0c2204a3c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PET-CF @FF C5P", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "W6i9E22BVo11TeCm", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PET-CF.json b/resources/profiles/Flashforge/filament/Flashforge PET-CF.json index b014b9f42bf..eac6f732f47 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PET-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PET-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PET-CF", "inherits": "FusRock Generic PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vflpXTS9GwnODQDH", "instantiation": "true", "filament_density": [ "1.1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json index bd132e67a42..568a8f3adb9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge PETG @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04_12", "filament_id": "GFG99", "instantiation": "false", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json index 1cf707d8798..656e7c32037 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Basic @FF AD5M 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "xOZQvdZa1YCcnjor", "instantiation": "true", "filament_settings_id": [ "Flashforge PETG Basic @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Basic.json b/resources/profiles/Flashforge/filament/Flashforge PETG Basic.json index f744d97e3f5..9b1e4c0dffa 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Basic.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Basic.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Basic", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YLLJ4xZI704GReej", "instantiation": "true", "additional_cooling_fan_speed": [ "60" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json index 4895a32ac1e..712f68eb714 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Pro @FF AD5M 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "8EUg1hTLfsyDPbnG", "instantiation": "true", "filament_settings_id": [ "Flashforge PETG Pro @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json index d558f79e906..8d400e1b23b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Pro @FF AD5X 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "UKhV8A2DBc1xyNWc", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json index 7f9f69bf82b..0d98e07a7a0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Pro @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dFZ1MmHjj1AAIaMm", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json index 551576eacd7..0d59fd73fe8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Pro @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ro3rt7IAJrA5aZD6", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X.json index 83ea3a7b4fa..e48a6c50825 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Pro @FF AD5X", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cTxrnqzr2wVt4Nj7", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5.json index 45550b6593c..d2f664b1080 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF C5", "inherits": "Generic PETG @System", "from": "system", + "setting_id": "QA1KD03F0zj2zsVi", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5P.json index db7f2ba5f93..3c11370099d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF C5P", "inherits": "Generic PETG @System", "from": "system", + "setting_id": "EU8Q0XLjED23MNer", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json index 69d8fceea28..77cbe8d5b5f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "XFSgx95whLw5FD08", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json index c9c6d34add9..ea6f2e9f9ca 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8x6yU2U8d5f67N73", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json index ff87c212690..78f83738b2d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4W0nfaSSZdg2HQkh", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json index e7f17b1dacd..e41dd59589d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "AJcugKx4qHPJ3JAT", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 HF.json index 9014871612d..915bbb67535 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "R0nZuLXEo5qA6Mt8", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4.json index 334bb25fc4c..825a5b8fed0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "Ql2BBBymzqEG7GKk", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json index 45f37c6aaa4..28c08158226 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "8Jc4eedkknqNB87s", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json index f2ec528c3a1..23bdac347c3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "KU5tDHAKja1sCoHm", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json index 4e9ffbe869c..54ed2d165a5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "sb6jD3UZmb0DNIsC", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json index fd62685b31c..19f6034de16 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4BB1wJLtsXus5eyY", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P HF.json index 280584e134a..a2848c8bc6d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "m7oJx47UMlFctMkX", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P.json index 7ab73f59673..00795055315 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "ozD2wU5UiORTtJsa", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro.json index d3f2c1e368b..13da0b478b7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Pro", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IQfUoy7gTmVmBDL5", "instantiation": "true", "additional_cooling_fan_speed": [ "60" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json index 7b6452f09b5..a199aa5af82 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Transparent @FF AD5M 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "W59yTyPnVv4LYiah", "instantiation": "true", "filament_settings_id": [ "Flashforge PETG Transparent @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json index 6eab5c835e2..a623c9288d9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Transparent @FF AD5X 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "NRY4fsPNtnqs0kyH", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json index c1aaafdf814..65ff48dac60 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Transparent @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ht7wzk8l0b1kv5tZ", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json index c4374b53cef..f3b8f3859b4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Transparent @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NJFHpa5HFHIyHSWu", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X.json index 6897da3bd2f..56c3f5e1e59 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Transparent @FF AD5X", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UaObrRNSTwitC6jr", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5.json index b45e1bcf782..67a5179794d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF C5", "inherits": "Generic PETG @System", "from": "system", + "setting_id": "TtXy042wtT6nF3WB", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5P.json index cadd737312b..1d26593dc4c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF C5P", "inherits": "Generic PETG @System", "from": "system", + "setting_id": "66OWHhGyuaFISu6v", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json index bf611c746d5..e2c1e5a662e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "p5c6XJ1VD8cn2Meh", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json index faac1686d18..827d4fe8af4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "K8WkJmFy2V1zhYQO", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json index 98d09e20058..a92d725a2b2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "LLK1hwKZhDU8SaGJ", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json index d4d8ec46bad..1020d428d7a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "LaUF2HJtBnpZF7Cd", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 HF.json index 107337df663..63ba03680dc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "OUToXk8ddS1RPPUK", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4.json index de1788f1cbf..f88a28c9891 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "ywff8rI39XKjcocY", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json index e8a66f51bce..50e0bb7150e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "C0VV5Uzsl4icRgKa", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json index 808b9f06f5c..9d2ad173974 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "kuCvwo6Phr6Ywhm4", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json index 17580c5a66e..1e1717f7419 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Z2E69w9AevYg15tl", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json index 6aed0d3fe65..0e2202e3dd7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "RkQaxwTjhJK0A3zr", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P HF.json index d678cdfaf08..087167a1a3b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "YBQTMes2S9iJjKDf", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P.json index 1341d95cdb9..938ea5875a6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "lCngVWG3q0FWsnrG", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent.json index b0fbcaa9269..f06fa5258b1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Transparent", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3Gv6MJ3RRja5pbOM", "instantiation": "true", "additional_cooling_fan_speed": [ "60" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json index 8880d84f66a..e335c181075 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG-CF @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PETG-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bcqYod61blJRzhK2", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json index 3dbd8176879..58c69dbf098 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG-CF @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PETG-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CnFKOi7fFyS8QlKK", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X.json index 55865bccc20..55f8d200b1e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG-CF @FF AD5X", "inherits": "Flashforge Generic PETG-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eKWJW36I5fVHwjWD", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5.json index 8ffc379fbdb..2939916d3c9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF C5", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "RXRERfs2oQKewpPS", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5P.json index 9b025a5485a..cc565d49997 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF C5P", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "8Ns75F5n2fdQ8sDk", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 Pro 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json index 43a39d34fa5..514ce0d360d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PETG-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4EgMPzlVo1rTeQ1e", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4.json index 2bc8b64d3e6..b44d204d6b7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF G4", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "K9ME1F4oJkPi8jRu", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json index 888b3581d30..5a6548fd047 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PETG-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "9jCp0gTjB3Mt95Mj", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P.json index 19bc36d115d..796e883fd81 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF G4P", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "d5OleuNNZBJK9vxH", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF.json index 710205ee2c4..78eef9b46a3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG-CF", "inherits": "Flashforge Generic PETG-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MpG61mwVUtJ7t602", "instantiation": "true", "filament_settings_id": [ "Flashforge PETG-CF" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5.json index d3c8f3cd536..7a0caeba599 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "UQF0kAaXnZgJGK4o", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5P.json index b2dd3dd2c30..36782a176cb 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "FpLoe6QrPXnrH019", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5.json index 2223ad18edd..632ffa476f7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "YFbZ472BRNga6OpQ", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5P.json index 2a3b4cc0a5e..01c9b77fe35 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "AtVxriSKOrFZzUun", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5.json index ff5499d3ea1..b5fddb2af67 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "47Q7YXoJ7rD7Vu21", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5P.json index 391dc6956ce..913081a7784 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "v7vYsiPVka4c1CUW", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json index 5b30b5d3393..f799be321a0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge PLA @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04_19", "instantiation": "false", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json index f25a8208532..15aa47eada0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Basic @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "3fuVuyVcn8U0bRJQ", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Basic @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json index 5860cb2214f..7632049ce62 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Basic @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "FrRRUl5OT773uCju", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json index 109e22d3c3b..8b80f0ab262 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Basic @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gMmhMDqjmJfAYcbV", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json index 78a3d06e14f..ce1a822ce36 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Basic @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0OsrtqfIxrEJMwac", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X.json index 0f47ded5c91..70f3451691d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Basic @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fuzWVrfZqekMETLK", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5.json index 7b1d2a8cd0b..4596bb82863 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "FmUnckQofjunAtwr", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5P.json index 5b4318ff48b..b4ee22beee4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "Q0RsVOPLuMByur9c", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json index 04820e88b35..02897b8eecd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "QXJgY8OPyaoYUI1D", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json index 52dd8fd4b65..cc6a2a104ee 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "R54l7TcwsjdPHvNB", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json index 93985565625..036357790a0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "MELEwYupDkT2DPxL", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json index 8ed12b7fe79..5612c009432 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "uGLvOoPAfksLO43M", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 HF.json index fb5976cf875..3a96df66962 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "gGpKvk3rnLuTjOwo", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4.json index 4ca5c45269e..690066aefad 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "Yopqnj4b5ZVwigGx", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json index bf98713e7c0..f1b070e45ef 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "GrwiA2dArUGV9x2g", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json index a3542ff513a..094f3979502 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "QEfQrqMwApuSMqih", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json index 7303dfb337e..fdf52ed1e29 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "BAPIn3eJAPGpscRJ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json index 0d42810c2c4..e4e13591338 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "44BmRNRb6vlPq8qe", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P HF.json index b9cb823c091..24871a3b600 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "ltJbhoAeAec9gxrS", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P.json index 5268071e67f..3d09c85a7dc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "GxdZiXdqns72ibQl", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic.json index 2a6aed4d671..df86f44ed60 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Basic", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5XKGaHUjxHECbnHO", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Basic" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json index 36615e0ccbf..ba9fa780ed1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Buint Ti @FF G4 0.8 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "H8IStdO8zEfSLYVE", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json index 1cece6050b7..281d88bca04 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Buint Ti @FF G4P 0.8 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4wlkoKnU2bA7xhYO", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json index a2cc3538a20..82f569aaf85 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Color Change @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "KXy0WyQp06VC2ICh", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Color Change @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json index fde9013349e..a9b9532a59a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Color Change @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "9cGw7tXD8YJHEi1H", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json index bee60062f80..deb0deaa91f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Color Change @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TF6BeOl0patjpPaa", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json index 12477907530..a46c00c1849 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Color Change @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nkYeEBo8NdkJulAP", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X.json index 0957f4da6a6..2e019a2a16c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Color Change @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yEDfsOsogfZbNBVX", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5.json index ec44796d821..1c348e66cde 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "xZmQdh487UMtvBRu", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5P.json index 66aa7e4aa7b..378c5fce631 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "rc00SOyIg30uE3Da", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json index 9eaf1c8c5eb..1de1fa9904e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "k1OiugasUs7baG1f", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json index 32034df2103..c31f2c817e7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "G2Et7kPHptMESzQ0", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json index 3cf6352ab38..0b16a42ba2b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "zsOdmFGBSF9UySMN", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json index 24f95c1cebf..b7801aaf6bf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "oxRMuvBMu9qdQWUQ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 HF.json index 66775c65271..45edb3fe4c7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "5hwNJvvLtb75XBBg", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4.json index f40bb1ef0ae..90a0c476308 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "mGj8VEyOnnogpkmF", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json index 43a2074e8f5..09f4c73aaf3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "HXVX4mDeUSfW2RgL", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json index d9eba3dd30b..8a51ee4c0fd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "JDcRA6apekWLXPvH", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json index 52396c7bb6a..6ba6fb73f3b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "b5GJpvKYktP4vZpj", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json index 40ce4a15a50..4962ce6694c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "RjUpQV6iQxTircwj", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P HF.json index 7712b0492ab..f48156cb078 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "9DEZ6SmFdgfluhsR", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P.json index 4a4f314eca4..fecaa9f06e7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "girTMkusNTfY04rz", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change.json index aba1710ad09..552c55d6401 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Color Change", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pCQ2qmeXUyJzP7kS", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Color Change" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json index 10e73893456..79ae2f6c94c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "a1jTbQsflD7SDFih", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json index b9e1ec06800..95f15148641 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Galaxy @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "zyCRsy0mHRgyuQqt", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json index 368af73e7d9..d6cd08474c0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Galaxy @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "y8TNaRebTrmFem10", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json index b5cbb518dbf..2df9a04c0ae 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Galaxy @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qju0AMvvq0B5Glny", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X.json index 9d9fdbd4f6c..ed84105332d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Galaxy @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o8gGBOEcNvlbZxGW", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5.json index 0d334c83407..798abe1a328 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "0RkkIcIUFgwOFTBY", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5P.json index 83018f8a0fb..904ceb7fc06 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "9qVabnSl8xfKSIYX", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json index a901d8516de..e18d7b94f30 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "DL7lxDI35YErCTWX", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json index 0185ee16371..da3b64cd0f7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "koEC7DteUoXHUd2z", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json index 2985aa9d855..88ccddeb082 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "D69fWcXioFcpoUjC", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json index c84d73f5ba0..ca7ba95268d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "rfiQUncdSExEaK0U", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 HF.json index 52501fdcb5c..1783f4d0f80 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "WX8lK8efXIVcpjFf", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4.json index 31546afc580..fdf44498b89 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "Tzvo3oILQJc4SQko", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json index c347c6565de..6115ca4780a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "ZQYrljZtu3es26hB", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json index 3fccbb4de79..f62409f28ab 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Y5gm20O4yCCDIoC0", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json index 1f2c3015965..a91a4252cff 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "80vSQxnHfd5ZUy5h", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json index da114741bce..da7d4332754 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "UZi7T5VoasmXWyH5", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P HF.json index 7b018bbf28b..b915367cb39 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "6UlSb4fqHIMdMxkO", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P.json index e77099a4fb9..c77a90240b0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "H2Cr4B5VUaxyYsN0", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy.json index 616238dc119..45ca21acee5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Galaxy", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NJrc0UZ54Fq8MaqF", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Galaxy" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json index 08746aef863..7116bb03b2e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "k8iibCO2EnlTSRyi", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Luminous @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json index 7fdd4181f7a..acda8964faf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Luminous @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "pACct3L7duMh3hfx", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json index b14024a2c1b..dcc63110553 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Luminous @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GdvXL8SrKrYHxSgZ", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json index e37d7a49585..23d5a93a947 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Luminous @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SLYD2YcQTQgbSjIF", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X.json index a9793e94195..32a027e5f21 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Luminous @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kOobFSlqEG9Qe0d1", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5.json index 71702bc1dbc..43a46d9f068 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "4sE1LTVVuRglRbpD", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5P.json index 2da74bbfac4..9fb04c73d93 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "jEUZyaEIBf2eXXeh", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json index 0ed3c8649e4..fa64b028eda 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "qZ6kKjRCMfe4Ql3F", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json index fc64e73a780..7b6a3404bc0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "xPPSRmadqfqCtRF2", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json index 64c10ab554d..773aa67d026 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "aWVXIk1xVa9URR1D", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 HF.json index 291c6a912ed..042492ab8f5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "KhBF7hHHVPzqiAca", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4.json index 9070633aa43..baeabf324a8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "sTplnj3gMAzwtLWE", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json index 3abb1603cf4..be4f7f3ed76 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "zJFUJKDJRYi1pRL7", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json index 19392b04cbc..8a7622fb595 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "vXPXOKD8vNJlujM1", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json index eca09ad35ba..b544994aeb6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "purqxjmWiflDrnik", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P HF.json index b89438baa3f..e9a26e8c2a2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "qraQ97uusigB63hv", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P.json index e0825c868ba..0fae0389cc3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "Z1NCX8XMyIVlOlWn", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous.json index 10b3a0ea842..4393acab058 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Luminous", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "s620OFLTgFT4Ds2A", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Luminous" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json index 0d973f70346..252743e5f2a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Matte @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "DcbISTLvKNMZRzKx", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Matte @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json index ca2934d7e7c..e302c58bfe8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Matte @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "4fwlIrzy6O2EsyBZ", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json index dbc0db13f15..b461ab7c4d9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Matte @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BVmVfNCuy8HDhcEI", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json index f510fc3d6e0..b70192398e4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Matte @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WRMePGzDGdEGiqNv", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X.json index 7987d38377f..0648d80a385 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Matte @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "thnbuaLDDlGrkrdY", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json index dd89d2aeae3..67b9a2c858f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "cnPwhLyBq6JL8gEA", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json index 873085030b8..6f03f6b8cb4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8b9q1FfVljPmKoEt", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json index 25f4359dcd7..fe1ca45413c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "o9dOrLgL6efF19O1", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json index 034e372f89a..45fe70381f7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "QoRmDvhoeGi6Z2xv", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 HF.json index d766d8d4340..d1e83cd7b33 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "dHyuoORAUGLtlGkJ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4.json index 4bc915475b6..9090bf2287e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "OgqVyIHfy3U8Dc6d", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json index 5c834f4e134..682ba2be12d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "g1gnICJ3u6hpGazQ", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json index ffb38dc0181..cf6436ad199 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "feXpVbDM5ON5mwg0", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json index 0c4ff11dde9..ef023442936 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "XMnZQ1AxXPJqpqRX", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json index 279879fcf2d..d9fcfcc693c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Ke0bRKPNKSsVMO1Y", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P HF.json index 7b49e7ddfc0..57ac007de86 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "IRC2n4GaofxvvyTt", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P.json index 1de74d10db1..185d66e7964 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "RN4wdTL0qccM4huZ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte.json index 8fdbb59b6c7..b6a99498677 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Matte", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ipMevDMORKqZYdvD", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json index 9a71005126e..758de4bbdcb 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Metal @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "vwwb5nfO63U1ErCn", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Metal @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json index a721e520023..7685f4ea904 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Metal @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "ekq4MRPyzlYxRhbX", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json index 163f7f84292..bb880ea1061 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Metal @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uusF7Vz94HOwoQF0", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json index 2839cb716b4..e34f8d298e0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Metal @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sHZWzrZO8PP0QYZR", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X.json index a576dfbc8a2..5d6a2fe9483 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Metal @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bxwjEFI8HmNY8JI6", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json index 3e306793198..89436d242d1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "VvMaIJwFk4Q6KX4p", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json index ba6cb1d33f8..6239ad2bad3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "5xqdqoj2l50FegPF", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json index 26a32f45799..5f91a2f6526 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "R79SbWA9i2OAu2ee", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json index 97fca9b1438..8c25b77b20d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "zjIN4KzIOwI1VwOc", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 HF.json index 1e7e11b792c..add7f822140 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "UxMNNil2KnWvAJ4q", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4.json index 4b0916db1f4..f972d75cae8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "57i6iKrVYUS5UiBT", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json index 411eb04d7fc..9563f42a78c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "vVKalJViJuBvlHkK", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json index 36e4d86633c..ae0bb23e055 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "IYPw8a9tkpuf95uH", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json index ba59dd65a11..d33ab097f36 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "I0bULoVAbtVfQoCy", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json index 7e8772878b4..97b47d1fc69 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "DbPo3ay2e4a002AB", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P HF.json index 9c5ae70c2b6..eb7cdfc00b0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "uztv4hhm2O3T93zZ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P.json index fca561e50d8..627883c18c0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "UFWWrhfgS7N36Y8W", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal.json index e8a9c557806..fc1ca9b02d7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Metal", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UD5i0ijsirfieUvb", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Metal" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json index fa468c42bdd..04aeb1f095e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Pro @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "DIMoIGOGedN17WbO", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Pro @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json index dafa3933f72..7101090b3f5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Pro @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "SC5LJcecBaEG5by3", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json index c700751160d..fcbcbdf68b4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Pro @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "t9lPSFnwLDk0ARIp", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json index 300cff2d821..890831fd51e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Pro @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SBSlOEwZSvZHeX4r", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X.json index 7393b4cc2b6..425052368ca 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Pro @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DbWTm2H71izMWmpx", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json index cdb43a6aa45..4cd37e47584 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "ZENqqRqvEOeloAgs", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json index 666d5925587..72234ddfd25 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "YcXuvz3qYHtVoWxv", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json index ef48bde97b1..b8ad354879b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "prItyXNphhuPCAce", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json index 98b4e5200d5..6bfe5cb3cd7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "83zDmjaAgxxIt7KU", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 HF.json index f63dc8084a7..5a9918addf1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "px3O28Olb9LExqfT", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4.json index c1d345541b6..ed66794aaba 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "QYgsCCHP3Khqrzh3", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json index 988c019b596..cbc1d809551 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "wV01bqvZ6MRaEibZ", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json index 6e0c35ff348..549f5a15622 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "1ro9wHPYhuMHNiYe", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json index 53759b03312..856389e1e2e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4W4a7c9ugUVwvvmn", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json index d75dce1e839..6da7732f580 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "CloRo3qxvzxHZuIP", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P HF.json index 3702b24b98f..dd788c5a94d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "QgUbP07tIXmFysEb", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P.json index 7a6fd4cb0ba..61522df2c7e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "6mvGOtkPZT6ROboo", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro.json index a263fa1ebc0..2cb335b80e3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Pro", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vI875WYbMyQeMwlh", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Pro" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json index 7cac8ae6305..b0284948882 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Silk @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_25", + "setting_id": "gxl3i7jTwkzrKxF4", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Silk @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json index fd2a604b7d7..a2fae947b89 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Silk @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "mx6NWRkqyo2U12XQ", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json index 324f6ff0bf6..645ecbc0c05 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Silk @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YH9IHXOFMKwcTLyA", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json index 527ef66d98a..4f7e3d3014e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Silk @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IfAieG0OAG807xlu", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X.json index 2da9823c1aa..4e74bdb6cc0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Silk @FF AD5X", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N6J7QqQ7TIgM3MyW", "instantiation": "true", "cool_plate_temp": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5.json index f038743dede..9c0eec6844d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF C5", "inherits": "Generic PLA Silk @System", "from": "system", + "setting_id": "OIsfpi49wEoF0ekO", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5P.json index 3216d5dbf9a..405b1c46c05 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF C5P", "inherits": "Generic PLA Silk @System", "from": "system", + "setting_id": "xxeZ6VPjRFevxDnK", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json index 8fc42699bce..a8bbced435a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "x5m17Z5UpqpTtwgF", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json index 7cadc4223a4..a3475428a18 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "2GZp8yjrY1OioFDi", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json index 27498595da4..19a2957ccc4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "U0XtCVUhIMnidhbR", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json index a3aa029aadf..7cb6dc67bd3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8j9kaYy3ghkF81Cu", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 HF.json index 4debc4a2902..a838f359d49 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "E0LeJwSxaniDkB0b", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4.json index ec32f02fb72..718ad9c32c0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "8rggqgJ9kg9yLE28", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json index d8febdf4e94..fb38d8488a4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "hnWRLUwnfXiwnqBM", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json index 365185363b5..4bccc9c4aca 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "uY4OWhIytHMz4rWq", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json index c01940c937d..4906f57d2c5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "YSkkXd9EhhEHvGpf", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json index d9e25bcc3f6..135192e9798 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "XlxXZj9Wi1D6IwCE", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P HF.json index 0ab4a59d048..f05f9f8e577 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "IPyXBSnMCAikjI9V", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P.json index 47219f708ca..240fae4d59c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "f3gJsovSmDKoA7BP", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk.json index f080d5d4c40..205dc244a67 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Silk", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vZb7BvbyVWkZv3rR", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Silk" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json index 81efaf0b030..16dfdcf81cc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "ojYsAanAPqYhgFoe", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json index a1c6f29434b..29b57abe196 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Sparkle @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "xVYaNvQwM2chTkPe", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json index 0373bcd30b5..3cf5581d40f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Sparkle @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o8lsEnMIiHHorJhb", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json index fa3b1e55d96..09bf6a4f978 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oXlxQJY0K6Dnri7e", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X.json index faa4ba715ae..303ab7f2869 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Sparkle @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XKpFulrvvrfE56va", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json index 7f2e973aa3d..3bfa2b7a10a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "jmVmKMUCcowszvVp", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json index 1da4fa71a12..c8810e8348a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "yeh5cd0tAHtHzdoQ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json index 68573f24db0..a00dcdc264c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "q2Zi0YluaYpG3Ktf", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 HF.json index bf30b733eda..8f226d79ad9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "1qXV6AJqPpAwX1YK", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4.json index 0fcff5a9be0..43fff03323d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "YsyGGOGqUVkEqkIr", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json index ed69f136803..c53e5bc8304 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "4L3Zm1YIxs8J8dp9", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json index a420e798132..7027ffab336 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "UVvd018dTbygqTgy", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json index 0559cc6b57e..64ffa609af5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "F0k8kkgWM5FkLAzo", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P HF.json index 526a83658e4..f61281e75df 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "Oapl8InwbkwNSIDl", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P.json index 941e0138d34..b887d42ff21 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "NiB6Yb4b0auyn9KQ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle.json index a59b7e347b1..c000cb76e4d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Sparkle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LYtdPgec1hBLhoQA", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Sparkle" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json index 33f092a076b..a9527280aac 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA-CF @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QRyISvTy06kCwxKo", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json index ab712a43dd5..6e4cbcfdfe7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA-CF @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rmnF24E3SuwzRscH", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X.json index 1a131f44fe7..23b12300369 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA-CF @FF AD5X", "inherits": "Flashforge Generic PLA-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BXPI5Pkp7a6pLrCh", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5.json index 811b8c1a61c..de99144bf5d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF C5", "inherits": "Generic PLA-CF @System", "from": "system", + "setting_id": "rBm25DRY1PAkEJ4r", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5P.json index 79ff969101e..896f61dd93b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF C5P", "inherits": "Generic PLA-CF @System", "from": "system", + "setting_id": "xReo12oteZ4ECNJN", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json index 687a9986aa1..42ddb83ec26 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "9PgjgxU7pLl2Dfpe", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4.json index c140d8aa970..74d834e0783 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "RuNKzuIsw7F1ogmG", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json index 51991fa5b41..e588dbdf2ce 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "YPuMCHNGDWh0FpIB", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P.json index bc29e0bd27c..9a8e75a4390 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "3uC056Y171ZjnQE6", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF.json index f3875527a73..391c0e86ec9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA-CF", "inherits": "Flashforge Generic PLA-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JxNlb64lTODaaQhU", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA-CF" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json index 2b8c9c73699..48ba8894c78 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04_25", "filament_id": "GFL99", "instantiation": "false", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5.json index 729ed514fe8..2e049a81f20 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PPA-CF @FF C5", "inherits": "Generic PPA-GF @System", "from": "system", + "setting_id": "DhC7iFgNKCAq4Zkt", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5P.json index f1c1fe9b343..d55cb8d4b35 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PPA-CF @FF C5P", "inherits": "Generic PPA-GF @System", "from": "system", + "setting_id": "Jws2AaLWaNyZhqX4", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPA-CF.json b/resources/profiles/Flashforge/filament/Flashforge PPA-CF.json index 2b5efdd0a75..1808ab60c8b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPA-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPA-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PPA-CF", "inherits": "FusRock Generic PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MFItX51zZO0KYjdk", "instantiation": "true", "filament_flow_ratio": [ "0.99" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPA-GF.json b/resources/profiles/Flashforge/filament/Flashforge PPA-GF.json index 966d8ecdf6d..b7cb615d2a2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPA-GF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPA-GF.json @@ -3,7 +3,7 @@ "name": "Flashforge PPA-GF", "inherits": "FusRock Generic PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KITjZXcyM4N8cVyu", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4.json index 05d81dfdf41..4cc5686f672 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS @FF G4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "6NjEQ6RJKUAOrSLw", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4P.json index d3459778974..940f6e85f83 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS @FF G4P", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "vFMKqNjQjlNxwvDI", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5.json index b3dd501dce0..0492ebe524b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS-CF @FF C5", "inherits": "Generic PPA-GF @System", "from": "system", + "setting_id": "ihXPnFERMjbBgrP5", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5P.json index 5a0b980d5df..e11ff56c17e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS-CF @FF C5P", "inherits": "Generic PPA-GF @System", "from": "system", + "setting_id": "UWFjBmSpUkZLBvoO", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4.json index f6c7c721419..374063554bf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS-CF @FF G4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "oSGlx5mtGh07BnOz", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4P.json index 3263057a7a6..fe1b4c1f6be 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS-CF @FF G4P", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "i5DllSvYjVPO04Su", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF.json index 781bad72fff..c46bfe3da4a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PPS-CF", "inherits": "FusRock Generic PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l3dYtVM52X0UMRix", "instantiation": "true", "filament_flow_ratio": [ "0.99" diff --git a/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5.json index a9919871d10..a9136094847 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PVA @FF C5", "inherits": "Generic PVA @System", "from": "system", + "setting_id": "rSYGG2ni41NDVw6l", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5P.json index 2a2a042ba48..c40ba42a920 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PVA @FF C5P", "inherits": "Generic PVA @System", "from": "system", + "setting_id": "nwgbMjLRJLtJ04ri", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json index 578ae780a08..528998a24c5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "f75oElm4zB0hukIj", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json index 393f05081d9..0e238419758 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "o4KYTpJF6KksX2mg", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json index acee3c8a777..749a00856ca 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "HUSkDZL6rCpz0lRk", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json index 6b638fcdc44..085cf59c5b5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8xgu0AnMuKbPWyVd", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json index fbbfd912ce8..a5b488fc99d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Rgqt3MjxOye5EaFt", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json index 89b8426ca8b..3f901a03a4a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "PBFsW5qhVbQteYh5", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json index de1fc383b87..489c5fb15f6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge TPU 95A @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TPbHmcFyPyjvoERv", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json index 8036f1afb78..a959585cd8e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge TPU 95A @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zLMgsyDmdoXHhqFv", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X.json index cb6a15d6575..33834e19e3e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge TPU 95A @FF AD5X", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ThakVhjfpgnAlEVH", "instantiation": "true", "cool_plate_temp": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json index c6f9126085a..4aad5af3606 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "M0ozqaD3jSKoD6fm", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json index d164326c628..0fd54408ca7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "ob8IkvzNt9CWCzbk", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json index d8ec078c299..31b83ce1729 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "NzxX1lyRJ7wLUihV", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4.json index c1addfacb5c..430ac28bd42 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "4FIGiheSGvSJPw3s", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json index 0b8f9e055dc..f5bff068519 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "1GNqSBaQitzhYSx7", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json index 6a23bb62d29..cb901a9bcce 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "eOhMygyxaccdov7o", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json index 703992f5fc7..f5c8f2c553b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "LxooKiOkRncktNLf", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P.json index 8948a15040a..e4f518e6481 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4P", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "HdoJfbQr0uwQ6Vwb", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A.json index a8ba6b34911..d9f7ec48406 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A.json @@ -3,7 +3,7 @@ "name": "Flashforge TPU 95A", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "J4EaFhnpkLDcl5wH", "instantiation": "true", "filament_settings_id": [ "Flashforge TPU 95A" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5.json index 429b6150218..b7cd53996e8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-64D @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "fd5bACFa33J7aTdp", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5P.json index 1268b7f71c0..14bf91e1444 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-64D @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "hrcELA2qEMkZ6Wvj", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5.json index 23e5178dcf7..30a92209c4b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-90A @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "Lis7BZ3lMkoX5KQt", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5P.json index 7e8b19044a4..dd8ddf201bf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-90A @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "xY03Hiidu5YNSUyZ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5.json index 26f22d1c3e1..6d5d7a0455e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-95A @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "AHu6wNV3zcPBusOF", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5P.json index ae7b0a0440a..f52588da655 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-95A @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "8MBRqfLIRdhxk1dF", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge/Flashforge ABS @FF AD3.json b/resources/profiles/Flashforge/filament/Flashforge/Flashforge ABS @FF AD3.json index 69211292a64..c4ebf2a360b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge/Flashforge ABS @FF AD3.json +++ b/resources/profiles/Flashforge/filament/Flashforge/Flashforge ABS @FF AD3.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "FFFA01", + "setting_id": "9pxqGyfi52tuVmZ1", "filament_id": "FFF02", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge/Flashforge PETG @FF AD3.json b/resources/profiles/Flashforge/filament/Flashforge/Flashforge PETG @FF AD3.json index c714e8b6984..ca504e0e951 100644 --- a/resources/profiles/Flashforge/filament/Flashforge/Flashforge PETG @FF AD3.json +++ b/resources/profiles/Flashforge/filament/Flashforge/Flashforge PETG @FF AD3.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "FFFP02", + "setting_id": "tYidxo83oreZoecT", "filament_id": "FFF03", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge/Flashforge PLA @FF AD3.json b/resources/profiles/Flashforge/filament/Flashforge/Flashforge PLA @FF AD3.json index 294129d2259..8234e6f07aa 100644 --- a/resources/profiles/Flashforge/filament/Flashforge/Flashforge PLA @FF AD3.json +++ b/resources/profiles/Flashforge/filament/Flashforge/Flashforge PLA @FF AD3.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "FFFP01", + "setting_id": "qnKvMRUvJ7tRJ4dX", "filament_id": "FFF01", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 HF nozzle.json index 4431339daa5..163a76b62fe 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "2JQjReK012FHpHIt", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 nozzle.json index 51724358d13..539b153d74d 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "3SCkpXXK8VcQBMQn", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.8 HF nozzle.json index 1bdede822a2..70ed04fc559 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "dgpcOrf7282LTh1d", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json index 8a931d76d62..d5ce57aeeef 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4P 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "e85SCr6SV9kQD2hm", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 nozzle.json index 87fe6bce22b..85a4492107b 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4P 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "eGXsHN5B9BZViVNe", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json index 0a421005ae9..c7c38d13bb1 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8JSb4JqZ7zLi8uPI", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5.json index 59f426577bc..a81bd9fe8c0 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF C5", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "gZqAGVOlWR79n7hN", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5P.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5P.json index f12b4318954..542cced4513 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF C5P", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "nJF1lCOavNNh4yHs", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json index 26f309cd2b8..37dcd0816fb 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF G4 0.6 nozzle", "inherits": "FusRock Generic PAHT-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "TZ0nKqxoIYk2mPh8", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4.json index ef95d5ba119..75094206d5d 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF G4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "nH6pwFYsPyBzL1EB", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json index 8831c1ae71c..6dee0fbd509 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF G4P 0.6 nozzle", "inherits": "FusRock Generic PAHT-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "yok12IOGZzGot5Ll", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P.json index 9fef5f95cc7..9beb4e6e381 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF G4P", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "wmWMf3MfmbfZx2o8", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/FusRock PET @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PET @FF G4P 0.8 HF nozzle.json index c71d422eb60..de609cdc0b9 100644 --- a/resources/profiles/Flashforge/filament/FusRock PET @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PET @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PET @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Xqb0GQluin2jUQyL", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4 0.6 nozzle.json index bf5580205dc..c20763c8369 100644 --- a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PET-CF @FF G4 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "A8PDgw1jZE2m3bem", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4.json index 920b6829017..3c7f3b0e916 100644 --- a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "FusRock PET-CF @FF G4", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "Iy5lHY4ihEKPgJ5x", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P 0.6 nozzle.json index 20e12bab23c..a727da25ee3 100644 --- a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PET-CF @FF G4P 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Kdeg55RzLMYhqYMC", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P.json index 35d3c8a4cc7..62279c4084b 100644 --- a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "FusRock PET-CF @FF G4P", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "JXf7KCy4KY65xuzO", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5.json b/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5.json index b4607c69628..4502c8e0d85 100644 --- a/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5.json +++ b/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5.json @@ -3,6 +3,7 @@ "name": "FusRock S-Multi @FF C5", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "O3tz36NNMoagELL0", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5P.json b/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5P.json index f0ce99f2751..df0f4c4cc62 100644 --- a/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5P.json +++ b/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5P.json @@ -3,6 +3,7 @@ "name": "FusRock S-Multi @FF C5P", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "Gg9H6I32fOqoLSqE", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5.json b/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5.json index 28129198fd0..9ab78ced388 100644 --- a/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5.json +++ b/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5.json @@ -3,6 +3,7 @@ "name": "FusRock S-PAHT @FF C5", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "pV5QERvRuROIZTOa", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5P.json b/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5P.json index e10d36f4d96..521a764406d 100644 --- a/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5P.json +++ b/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5P.json @@ -3,6 +3,7 @@ "name": "FusRock S-PAHT @FF C5P", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "0i7VkquM4n0uFaXH", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic NexPA-CF25.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic NexPA-CF25.json index e40f8951e1e..1675096c7e8 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic NexPA-CF25.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic NexPA-CF25.json @@ -3,7 +3,7 @@ "name": "FusRock Generic NexPA-CF25", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TZDKsooodaGVkM4m", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF @G3U 0.6 Nozzle.json index fbfcdff6016..37dc9b7723c 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PAHT-CF @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NdNRNhmsHgHRnz1Z", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF.json index d9be38b7859..953b71d9e32 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PAHT-CF", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fR7maJwWmteJ7bWY", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-GF.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-GF.json index bd8211f6bc3..7241cf2afd5 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-GF.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-GF.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PAHT-GF", "inherits": "FusRock Generic PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gLG1R5gtdliSlnZJ", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF @G3U 0.6 Nozzle.json index 60666886b55..d6de1c2af80 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AaGdNgYaIIZyZBiW", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF.json index a1a76876321..95995868fb8 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PET-CF", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jJVDAlGTt1QJlbn8", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-GF.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-GF.json index f85d293ef77..8fb6eb9b707 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-GF.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-GF.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PET-GF", "inherits": "FusRock Generic PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IEpmsltdjoCu2txJ", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi @G3U 0.6 Nozzle.json index 6781de22520..d09c7dd01f6 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "FusRock Generic S-Multi @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "foH2sa61cDy12TzH", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi.json index 3ee9e7b53e2..789b77ea270 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi.json @@ -3,7 +3,7 @@ "name": "FusRock Generic S-Multi", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gQLoSJ7xGEdOd8kr", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT @G3U 0.6 Nozzle.json index 9d1143382d4..3f42fa9f24a 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6Z5vce5YKlCGox8v", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT.json index 8f67e3ad0f1..9e2336a5747 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT.json @@ -3,7 +3,7 @@ "name": "FusRock Generic S-PAHT", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kMYDFSwivzTjFo2L", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Generic ABS @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic ABS @Flashforge AD4.json index 7a7a3e9b6d7..a526cc23ffc 100644 --- a/resources/profiles/Flashforge/filament/Generic ABS @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic ABS @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Flashforge AD4", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lS237JRDRMQgJFzd", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json index 9d89312b620..12d944617f3 100644 --- a/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json @@ -4,7 +4,7 @@ "renamed_from": "Generic ASA @AD4", "inherits": "Flashforge Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tq7YmJohYaNiPplE", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Generic BVOH @FF C5.json b/resources/profiles/Flashforge/filament/Generic BVOH @FF C5.json index aa49b32140d..0e77a94bd84 100644 --- a/resources/profiles/Flashforge/filament/Generic BVOH @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic BVOH @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic BVOH @FF C5", "inherits": "Generic BVOH @System", "from": "system", + "setting_id": "fTnS5cbxHv8cctBa", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic BVOH @FF C5P.json b/resources/profiles/Flashforge/filament/Generic BVOH @FF C5P.json index a1ed3fc676a..6679b74a664 100644 --- a/resources/profiles/Flashforge/filament/Generic BVOH @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic BVOH @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic BVOH @FF C5P", "inherits": "Generic BVOH @System", "from": "system", + "setting_id": "Eemk4OAny5OMKhgz", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 HF nozzle.json index 5a46c487d62..ed788fa4521 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4 0.6 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "cvJIaPzb0uJLipX1", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 nozzle.json index 8c065feb6b1..bd6fbfb0e1b 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "wguPruY9M7GcMt6q", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.8 HF nozzle.json index 6cc30fbdfa3..1b8c0864fbc 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4 0.8 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "EhobwmFIEg5Cs5Ki", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4.json index ef605f8a95c..f7bdfc08303 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "JvdxJyy7xCm3F0xH", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 HF nozzle.json index 0002355dbfc..7bf0850fe80 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4P 0.6 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "FtwGLcPMQqKw5uKW", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 nozzle.json index 1239f35af62..a95278c719f 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4P 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "lrnsjoh8DtnTcT7g", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.8 HF nozzle.json index 7693b5e67f6..ca22248030a 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Th8rzyWoINHBwgcw", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P.json index bf56c4415c2..45eb6c20a5f 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4P", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "1Lyq9gOfcZ5hPIdW", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Generic PETG @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PETG @Flashforge AD4.json index de00ca612c6..8122a7e3b59 100644 --- a/resources/profiles/Flashforge/filament/Generic PETG @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PETG @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Flashforge AD4", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6vtyYCWYY10OPMbz", "filament_id": "GFG99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Generic PETG-CF10 @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PETG-CF10 @Flashforge AD4.json index 114c688a871..ff84af740fe 100644 --- a/resources/profiles/Flashforge/filament/Generic PETG-CF10 @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PETG-CF10 @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF10 @Flashforge AD4", "inherits": "Flashforge Generic PETG-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fWM9WLGV9mUQOtHh", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Generic PLA @FF C5.json b/resources/profiles/Flashforge/filament/Generic PLA @FF C5.json index 33b1fda5200..12f0d129bcb 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic PLA @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic PLA @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "2VMiVCUPVbi52diP", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic PLA @FF C5P.json b/resources/profiles/Flashforge/filament/Generic PLA @FF C5P.json index 046f966eb8b..0f9ccae55cf 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic PLA @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic PLA @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "ALRfG5zUa6ytbtho", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Generic PLA @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PLA @Flashforge AD4.json index 838b6019fc2..39afe0a2c28 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PLA @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Flashforge AD4", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "48NJ34G6Uo7VgzD4", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Generic PLA High Speed @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PLA High Speed @Flashforge AD4.json index 3cd99c3110a..77e0ed35fd5 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA High Speed @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PLA High Speed @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic PLA High Speed @Flashforge AD4", "inherits": "Flashforge Generic HS PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "B4EWBUa9G36lZUd7", "filament_id": "GFL99", "instantiation": "true", "bed_temperature_difference": [ diff --git a/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5.json b/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5.json index 7e8a2939e4f..16e1f0d2786 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic PLA Silk @FF C5", "inherits": "Generic PLA Silk @System", "from": "system", + "setting_id": "pTauHiXhGTXdOU1x", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5P.json b/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5P.json index 9bb4eca5350..eb0aa584dac 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic PLA Silk @FF C5P", "inherits": "Generic PLA Silk @System", "from": "system", + "setting_id": "RnoS9bqY1TvNPtg2", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json index bea2ee1a484..199e64cc2b7 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json @@ -4,7 +4,7 @@ "renamed_from": "PLA Silk @Flashforge AD4", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9FrKIXABj3yedXri", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Generic PLA-CF10 @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PLA-CF10 @Flashforge AD4.json index 038f5d0be1c..39a1a6d1883 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA-CF10 @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PLA-CF10 @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF10 @Flashforge AD4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "F8r0b3G228QEK53U", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json index 0b591dbecaf..9d91f3746b1 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU 85A @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WQyJHZpkl9Dz6Yo3", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json index 4fd6fc87943..d109f87d0e8 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU 85A @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qRqhbOYn5TMfccem", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X.json b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X.json index 496d623c820..3f79dcf3a53 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Generic TPU 85A @FF AD5X", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LTZCFxkzkGCnUMAR", "instantiation": "true", "cool_plate_temp": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic TPU @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic TPU @Flashforge AD4.json index e04db5b1da8..a5bfa9cdd5e 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic TPU @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic TPU @Flashforge AD4", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DW9Ck6xMK00Ry2iE", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5.json b/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5.json index 52ff5a781bb..659d896a040 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic TPU-64D @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "i59KgPtnplOJ8ZBh", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5P.json b/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5P.json index ac2c137b8e3..76399618fcf 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic TPU-64D @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "ERMhwufaef91KJ1d", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5.json b/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5.json index 14010fffa79..43b69e32e3a 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic TPU-90A @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "ZGmi7NF6Rn4idKjT", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5P.json b/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5P.json index c02fac4cbec..5b11df40816 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic TPU-90A @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "3SRFjKR5ezAukLYW", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5.json b/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5.json index e9e53a08908..ddfcc5c1af6 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic TPU-95A @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "ULqB7JfqebS8d00l", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5P.json b/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5P.json index aaa43fac525..1eb7a0bf80b 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic TPU-95A @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "EQzyVOtOJjpKyRMM", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json index be92c12db56..e0e410486c6 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "lALS0WwvUo5AYOq3", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 nozzle.json index c9102cab1e8..b005039c27d 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "tgRrYwnp5nr1yr9w", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json index f938956f831..eb7577cfe5f 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "yom6iIUUwU1MsZwF", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json index 61f5d2f5fec..933d1ff7d39 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4P 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "ysj5nD1op08U8rUT", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 nozzle.json index be65a9de066..34959d59eca 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4P 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "HBtkC3BfEpBGEWc5", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json index f69e314dec5..d4285329e3b 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "zsW4MCpeL5qfzNfg", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic CoPA.json b/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic CoPA.json index 8a7f1cba5be..49196701fa7 100644 --- a/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic CoPA.json +++ b/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic CoPA.json @@ -3,7 +3,7 @@ "name": "Polymaker Generic CoPA", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "t6CWYU3ZSddIjwhS", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic S1.json b/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic S1.json index 83c9c9bc4e1..8a8b8fe94b0 100644 --- a/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic S1.json +++ b/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic S1.json @@ -3,7 +3,7 @@ "name": "Polymaker Generic S1", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NXQtHvtO4tyQ1ueu", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD3.json index d47bf4275f6..b6706101f3f 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU PETG @FF AD3", "inherits": "SUNLU PETG @base", "from": "system", - "setting_id": "GFSNLS08_03", + "setting_id": "BENcJjUDhHoKoKr4", "instantiation": "true", "slow_down_layer_time": [ "8" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json index 618937e6674..7ba7efc88af 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU PETG @FF AD5M 0.25 nozzle", "inherits": "SUNLU PETG @base", "from": "system", - "setting_id": "GFSNLS08_00", + "setting_id": "FY14rURQIpMyXsct", "instantiation": "true", "filament_max_volumetric_speed": [ "4" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json index 98a3f29e9b0..1a033bfade8 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU PETG @FF AD5M 0.8 nozzle", "inherits": "SUNLU PETG @base", "from": "system", - "setting_id": "GFSNLS08_01", + "setting_id": "l8pXGlKwIwoEVp9p", "instantiation": "true", "fan_max_speed": [ "60" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M.json index d2149f04995..5eb9eb4a9ed 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU PETG @FF AD5M", "inherits": "SUNLU PETG @base", "from": "system", - "setting_id": "GFSNLS08", + "setting_id": "sZhSd1bOSlpCaLF8", "instantiation": "true", "filament_max_volumetric_speed": [ "24" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD3.json index b95ff562e52..da5ab9a6748 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Marble @FF AD3", "inherits": "SUNLU PLA Marble @base", "from": "system", - "setting_id": "GFSNLS06_03", + "setting_id": "6IQtR139p9QmD9xy", "instantiation": "true", "nozzle_temperature": [ "215" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD5M.json index 9e2daad7cea..7144e3506a2 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Marble @FF AD5M", "inherits": "SUNLU PLA Marble @base", "from": "system", - "setting_id": "GFSNLS06", + "setting_id": "M0wMWwyqvlmLuHeV", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD3.json index 38790f63314..3fdb75070cc 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Matte @FF AD3", "inherits": "SUNLU PLA Matte @base", "from": "system", - "setting_id": "GFSNLS02_03", + "setting_id": "5gelEcX6iOtqnbsh", "instantiation": "true", "nozzle_temperature": [ "210" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json index bac69b07e62..2b4b89e9ea3 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU PLA Matte @FF AD5M 0.25 nozzle", "inherits": "SUNLU PLA Matte @base", "from": "system", - "setting_id": "GFSNLS02_00", + "setting_id": "ph88x4XnBjaumzze", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M.json index b3c56c4d51d..fc1c955af68 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Matte @FF AD5M", "inherits": "SUNLU PLA Matte @base", "from": "system", - "setting_id": "GFSNLS02", + "setting_id": "H3t7rp2KLCCRuJcq", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD3.json index 07d145346d0..d8127316902 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ 2.0 @FF AD3", "inherits": "SUNLU PLA+ 2.0 @base", "from": "system", - "setting_id": "GFSNLS04_03", + "setting_id": "Zen9mJ6TV3zmKH3J", "instantiation": "true", "nozzle_temperature": [ "210" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json index 14a17c001d3..51cd62a8259 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle", "inherits": "SUNLU PLA+ 2.0 @base", "from": "system", - "setting_id": "GFSNLS04_01", + "setting_id": "F4PiUlguBysVUHLr", "instantiation": "true", "filament_max_volumetric_speed": [ "1.8" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M.json index d681b59bb1b..44100dc18a2 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ 2.0 @FF AD5M", "inherits": "SUNLU PLA+ 2.0 @base", "from": "system", - "setting_id": "GFSNLS04", + "setting_id": "4MRsbnliWaoLU2BQ", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD3.json index d89d7268061..d5ad5b19101 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ @FF AD3", "inherits": "SUNLU PLA+ @base", "from": "system", - "setting_id": "GFSNLS03_03", + "setting_id": "W8RSexSNZp8lB0y4", "instantiation": "true", "nozzle_temperature": [ "210" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json index 02e6ad033e5..cb7dabf0ce4 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU PLA+ @FF AD5M 0.25 nozzle", "inherits": "SUNLU PLA+ @base", "from": "system", - "setting_id": "GFSNLS03_01", + "setting_id": "F4D1UV45L9fPm9WG", "instantiation": "true", "filament_max_volumetric_speed": [ "1.8" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M.json index fa5e08be148..173c8995575 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ @FF AD5M", "inherits": "SUNLU PLA+ @base", "from": "system", - "setting_id": "GFSNLS03", + "setting_id": "TUTKHeFJoFejsySI", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD3.json index 593e9fb08d8..e148620df25 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU Silk PLA+ @FF AD3", "inherits": "SUNLU Silk PLA+ @base", "from": "system", - "setting_id": "GFSNLS05_03", + "setting_id": "Gbd8WKfUXl1kdTJL", "instantiation": "true", "nozzle_temperature": [ "215" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json index 2dab61c3f50..ad61ea92c21 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU Silk PLA+ @FF AD5M 0.25 nozzle", "inherits": "SUNLU Silk PLA+ @base", "from": "system", - "setting_id": "GFSNLS05_01", + "setting_id": "HdD4n2D1quA1yar4", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M.json index c2f55709403..4e0c1071fa2 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU Silk PLA+ @FF AD5M", "inherits": "SUNLU Silk PLA+ @base", "from": "system", - "setting_id": "GFSNLS05", + "setting_id": "6HbMG3FtDofk4MIm", "instantiation": "true", "filament_max_volumetric_speed": [ "24" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD3.json index 15f09eedba8..1b6637c1101 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU Wood PLA @FF AD3", "inherits": "SUNLU Wood PLA @base", "from": "system", - "setting_id": "GFSNLS07_03", + "setting_id": "Kvn22UmFqoNUMOg0", "instantiation": "true", "nozzle_temperature": [ "210" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD5M.json index 30a7c45a66f..b0af43d5d09 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU Wood PLA @FF AD5M", "inherits": "SUNLU Wood PLA @base", "from": "system", - "setting_id": "GFSNLS07", + "setting_id": "qNFWJW8dEhdd6HWm", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/machine/FlashForge AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/machine/FlashForge AD5X 0.25 nozzle.json index a8872eab426..ba5fc5f5547 100644 --- a/resources/profiles/Flashforge/machine/FlashForge AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/machine/FlashForge AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge AD5X 0.25 nozzle", "inherits": "Flashforge Adventurer 5M 0.25 Nozzle", "from": "system", - "setting_id": "GM006", + "setting_id": "LyLdzfhgxndhsc7w", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.4 nozzle.json index 38741af4d0c..8db76b0cd59 100644 --- a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge AD5X 0.4 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "D4l8zt8PRijp1mvT", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.6 nozzle.json index 942f176431c..4955930d7c0 100644 --- a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge AD5X 0.6 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.6 Nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "ByYUTKP0IJn1sgf9", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.8 nozzle.json index 2bf624af314..ef7b50bbdb1 100644 --- a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge AD5X 0.8 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.8 Nozzle", "from": "system", - "setting_id": "GM009", + "setting_id": "nSqJzbo2qKeVBRFp", "instantiation": "true", "printer_model": "Flashforge AD5X", "adaptive_bed_mesh_margin": "0", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.4 nozzle.json index 7c6ea9bd68e..630a5372be7 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 3 Series 0.4 Nozzle", "inherits": "fdm_adventurer3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "t5JKEUBlsjdEeRNe", "instantiation": "true", "printer_model": "Flashforge Adventurer 3 Series", "default_print_profile": "0.20mm Standard @Flashforge AD3 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.6 nozzle.json index 32837dba9f6..b015b76ad5e 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 3 Series 0.6 Nozzle", "inherits": "fdm_adventurer3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "UDfjcTtL3vUxC6VO", "instantiation": "true", "printer_model": "Flashforge Adventurer 3 Series", "default_print_profile": "0.20mm Standard @Flashforge AD3 0.6 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.3 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.3 nozzle.json index b31abe94c84..2f2783992a1 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.3 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.3 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 4 Series 0.3 Nozzle", "inherits": "fdm_adventurer4_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PRljA8KgQoirDtHm", "instantiation": "true", "printer_model": "Flashforge Adventurer 4 Series", "default_print_profile": "0.13mm Standard @Flashforge AD4 0.3 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.4 nozzle.json index b31e3d9d0e8..9006cd7f257 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 4 Series 0.4 Nozzle", "inherits": "fdm_adventurer4_common", "from": "system", - "setting_id": "GM001", + "setting_id": "bBT6oy7bTQGITL6W", "instantiation": "true", "printer_variant": "0.4", "printer_model": "Flashforge Adventurer 4 Series", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.6 nozzle.json index 6ead0b7996d..357e50666a2 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 4 Series 0.6 Nozzle", "inherits": "fdm_adventurer4_common", "from": "system", - "setting_id": "GM001", + "setting_id": "wlYxOL7g5BrpCXHH", "instantiation": "true", "printer_model": "Flashforge Adventurer 4 Series", "default_print_profile": "0.30mm Standard @Flashforge AD4 0.6 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series HS nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series HS nozzle.json index dcb24c7ab9b..948c3f4f408 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series HS nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series HS nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 4 Series HS Nozzle", "inherits": "fdm_adventurer4_common", "from": "system", - "setting_id": "GM002", + "setting_id": "bO7OA2EOVlYEA4aS", "instantiation": "true", "printer_variant": "0.4HS", "printer_model": "Flashforge Adventurer 4 Series", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json index 111677c0346..1820b8a177b 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M 0.25 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM006", + "setting_id": "8bQYnYO44IWdBVc0", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M", "default_print_profile": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.4 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.4 Nozzle.json index e1ead24846b..7162c880f91 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M 0.4 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM001", + "setting_id": "n2MSk8g91mAD7PZb", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M", "default_print_profile": "0.20mm Standard @Flashforge AD5M 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.6 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.6 Nozzle.json index f1ab3820e89..4ca3bf23c21 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M 0.6 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM001", + "setting_id": "saCGEstG7DaiYhZY", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M", "default_print_profile": "0.30mm Standard @Flashforge AD5M 0.6 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json index 6a1506f0c32..e9384af6498 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M 0.8 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM005", + "setting_id": "Pej2PnncDEXUe7PI", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M", "default_print_profile": "0.40mm Standard @Flashforge AD5M 0.8 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json index 0c7280cc16d..40a3329a099 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M Pro 0.25 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM010", + "setting_id": "kWmeC9KnTnmGGJFL", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M Pro", "default_print_profile": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.4 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.4 Nozzle.json index d080db7264f..a8f6c2abe83 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ThBrRFxO6erzqndo", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M Pro", "default_print_profile": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.6 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.6 Nozzle.json index 21e88ea2e8b..bf9382c308d 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M Pro 0.6 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM001", + "setting_id": "qMjPc6vzPMGNc5GD", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M Pro", "default_print_profile": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json index 7484969d542..855bf147ada 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M Pro 0.8 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM009", + "setting_id": "ayutlcoenZcr7Hny", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M Pro", "default_print_profile": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Artemis 0.4 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Artemis 0.4 Nozzle.json index 70729311ff4..5d8eddc0a2d 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Artemis 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Artemis 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Artemis 0.4 Nozzle", "inherits": "fdm_artemis_common", "from": "system", - "setting_id": "GM001", + "setting_id": "3iGSjKwQd74bDuGc", "instantiation": "true", "printer_variant": "0.4", "printer_model": "Flashforge Artemis", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.4 nozzle.json index 333694e1b00..59c227c431c 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Creator 5 0.4 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "8rfkwQO5Zv1CyFxA", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.6 nozzle.json index a90a6379f30..9af2bb705b8 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Creator 5 0.6 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "jNm6AagyxA1v0WER", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.8 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.8 nozzle.json index ed2e7620942..e25ed9f229e 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.8 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Creator 5 0.8 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "abjALI6WWNzy9B5Q", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.4 nozzle.json index 589c1f5a021..fb960b8d277 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Creator 5 Pro 0.4 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "DVWFCsTdr2KaH4Sk", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.6 nozzle.json index 416f3545e2d..b9343cf4301 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Creator 5 Pro 0.6 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "INeuYQNjvwoK1Cjb", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.8 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.8 nozzle.json index d72e8c892c5..7111452aa98 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.8 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Creator 5 Pro 0.8 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "kdQuVclmnVWz2Vfu", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider 2s 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider 2s 0.4 nozzle.json index a414d07bedd..4456789cce8 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider 2s 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider 2s 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Guider 2s 0.4 nozzle", "inherits": "fdm_flashforge_common", "from": "system", - "setting_id": "GM001", + "setting_id": "M9iFVHOKivxm3W4B", "instantiation": "true", "printer_model": "Flashforge Guider 2s", "gcode_flavor": "marlin", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.4 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.4 Nozzle.json index b18d773db16..b8388ba7c4d 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Guider 3 Ultra 0.4 Nozzle", "inherits": "fdm_guider3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "g6wtELHjZ8Gr9YPg", "instantiation": "true", "auxiliary_fan": "1", "bed_custom_model": "", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.6 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.6 Nozzle.json index 1c6d3b4b80b..f2b89e35857 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Guider 3 Ultra 0.6 Nozzle", "inherits": "fdm_guider3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "VKlxYdoMbSJ54J6s", "instantiation": "true", "printer_variant": "0.6", "printer_model": "Flashforge Guider 3 Ultra", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.8 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.8 Nozzle.json index 8ee9be8b783..1076239de4e 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Guider 3 Ultra 0.8 Nozzle", "inherits": "fdm_guider3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "zqSpSCSeNgnxibvd", "instantiation": "true", "printer_variant": "0.8", "printer_model": "Flashforge Guider 3 Ultra", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.25 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.25 nozzle.json index 5bb7ce36523..2ee3538c7af 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.25 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "7CkhY1WmcYAzSUG1", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 HF nozzle.json index 2a53e603752..b20d6ce763f 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 HF nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.4 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.4 Nozzle", "from": "system", + "setting_id": "52GYZAaGoTy0CgMf", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 nozzle.json index d0fa8452ee8..452673eb558 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.4 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "omiMocXNT3cSNOWQ", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 HF nozzle.json index 52dc1fd69d4..92bee1b7dce 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.6 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "YhHvRWwxThp9paux", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 nozzle.json index ae400d977c4..3570045562e 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.6 nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "vwHCjHQyazbLKcxE", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.8 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.8 HF nozzle.json index a98730ea82f..f61d3d7e77d 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.8 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "Q84FWmcyIdze15DX", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.25 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.25 nozzle.json index 548da4afa41..3eee06cb241 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.25 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.25 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "JsOG0rK4CtdAkccy", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 HF nozzle.json index 54fe2df2198..35e7f5b067e 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 HF nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.4 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.4 Nozzle", "from": "system", + "setting_id": "KUruzX4VuP8d4jLI", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 nozzle.json index d1d3a984459..e355db941cc 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.4 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "4e0Km4CkNQC8kyqV", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 HF nozzle.json index a706546c17e..5ea36cfca81 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.6 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "GJbFChOygWNwDNGH", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 nozzle.json index 57d3d8ba2d6..21ae8e77fa8 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.6 nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "l735Rr0i9NHHOPcG", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.8 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.8 HF nozzle.json index dd46eccff1b..660d3c342b0 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.8 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "FxML8NgInRadUrgi", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M 0.25 Nozzle.json index 0d986e43a6a..7ae7c8713f6 100644 --- a/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Flashforge AD5M 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "8LSr3bjBCe0LzX0Y", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json index 46855a2b719..6d2383f8f1b 100644 --- a/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "TbERLagoTx6NV7tK", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M 0.25 Nozzle.json index ff37627a7b2..4242eca15d6 100644 --- a/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Flashforge AD5M 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "xT9YfFcFW0XWqEU5", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json index b8f78717e0a..7f364c58727 100644 --- a/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "8cRuz1ipuV5i8Lfk", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @FF AD5X 0.25 nozzle.json index ce7c187bb49..53af94cb26f 100644 --- a/resources/profiles/Flashforge/process/0.10mm Standard @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.10mm Standard @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @FF AD5X 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP012", + "setting_id": "b4hAz2zG0bxIJiOV", "instantiation": "true", "brim_type": "auto_brim", "enable_prime_tower": "1", diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4 0.25 nozzle.json index fbbd047ba62..8204f4303ed 100644 --- a/resources/profiles/Flashforge/process/0.10mm Standard @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @FF G4 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "xvqOfhMaGHifSuJR", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4P 0.25 nozzle.json index 995a18f6779..fc3a578b3f3 100644 --- a/resources/profiles/Flashforge/process/0.10mm Standard @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @FF G4P 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "DzIWsXfIu4ziz6U3", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M 0.25 Nozzle.json index edd3a840767..d1f8e0e0a53 100644 --- a/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Flashforge AD5M 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "GTN1HFOvLFYfIxHp", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json index cdb164bace0..9b9f8c49aa9 100644 --- a/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "xqllVCHqbCZyN7aS", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.12mm Detail @Flashforge Guider 2s 0.4 nozzle.json b/resources/profiles/Flashforge/process/0.12mm Detail @Flashforge Guider 2s 0.4 nozzle.json index 04acd270aa2..1b859758781 100644 --- a/resources/profiles/Flashforge/process/0.12mm Detail @Flashforge Guider 2s 0.4 nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Detail @Flashforge Guider 2s 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Flashforge Guider 2s 0.4 nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GS001", + "setting_id": "1VeWY2d3H1hYEkzL", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M 0.4 Nozzle.json index 35ebbbf9c76..3259f7899a0 100644 --- a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M 0.4 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @Flashforge AD5M 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M 0.4 Nozzle", "from": "system", + "setting_id": "BWRX9OsfDELetdzN", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.4 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M Pro 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M Pro 0.4 Nozzle.json index 9c2ce868c55..51d39b2a5a0 100644 --- a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M Pro 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M Pro 0.4 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @Flashforge AD5M Pro 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "9tf28POc5JobvF91", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge G3U 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge G3U 0.4 Nozzle.json index 15bec1d96f3..11764c00166 100644 --- a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge G3U 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge G3U 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Flashforge G3U 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "XRInSfrQCATmZl6F", "instantiation": "true", "compatible_printers": [ "Flashforge Guider 3 Ultra 0.4 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @FF AD5X 0.25 nozzle.json index 9b1c66e37a0..f058304747f 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @FF AD5X 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP012", + "setting_id": "PEhXTWCBnd96ucdU", "instantiation": "true", "brim_type": "auto_brim", "enable_prime_tower": "1", diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @FF C5.json b/resources/profiles/Flashforge/process/0.12mm Standard @FF C5.json index 7e982a4986e..095f90b237b 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @FF C5.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @FF C5.json @@ -3,6 +3,7 @@ "name": "0.12mm Standard @FF C5", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "tMLy6Qa5S9uF8PzD", "instantiation": "true", "bridge_speed": "35", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4 0.25 nozzle.json index ca1d723bf13..bf0191cc4c4 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Standard @FF G4 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "lmoOQqYi9swkfzCm", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4P 0.25 nozzle.json index d927f3a4a9b..c108649dc1d 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Standard @FF G4P 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "ZoreCk3KNzllg4mA", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M 0.25 Nozzle.json index 62f3a1ab877..b994e3b1835 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M 0.4 Nozzle", "from": "system", - "setting_id": "GP012", + "setting_id": "TWBBz4xEOWwGsM5Q", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json index 143f7290202..8848fea1495 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GP011", + "setting_id": "m8tMfAWzSm9vmAiL", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.13mm Standard @Flashforge AD4 0.3 Nozzle.json b/resources/profiles/Flashforge/process/0.13mm Standard @Flashforge AD4 0.3 Nozzle.json index e887b672e01..8eafffa0df4 100644 --- a/resources/profiles/Flashforge/process/0.13mm Standard @Flashforge AD4 0.3 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.13mm Standard @Flashforge AD4 0.3 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.13mm Standard @Flashforge AD4 0.3 Nozzle", "inherits": "fdm_process_flashforge_0.30", "from": "System", - "setting_id": "GP006", + "setting_id": "iRI5NfTnNLyyGcaa", "instantiation": "true", "initial_layer_acceleration": "1000", "initial_layer_infill_speed": "10", diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @FF AD5X 0.25 nozzle.json index d721b52240b..e7801333ff2 100644 --- a/resources/profiles/Flashforge/process/0.14mm Standard @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.14mm Standard @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @FF AD5X 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP012", + "setting_id": "GArq2baSPUHlZvAU", "instantiation": "true", "enable_prime_tower": "1", "exclude_object": "1", diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4 0.25 nozzle.json index c787e3cafd4..9b382e0bb27 100644 --- a/resources/profiles/Flashforge/process/0.14mm Standard @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.14mm Standard @FF G4 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "428QBNgvzjdo8aW7", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4P 0.25 nozzle.json index 98404b2dcb0..e17e7abd9cc 100644 --- a/resources/profiles/Flashforge/process/0.14mm Standard @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.14mm Standard @FF G4P 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "ZECvZ9ke1RmhVzPW", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json index e12ce04d8e4..d7911038b8e 100644 --- a/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Flashforge AD5M 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "EWb2Ldtxwzp5w4KY", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json index fc20d8a868a..6085b8ee3d3 100644 --- a/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "JHGAxS2EeRDgi1tZ", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle.json b/resources/profiles/Flashforge/process/0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle.json index 6a2614f3ab3..577586baaf1 100644 --- a/resources/profiles/Flashforge/process/0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle.json +++ b/resources/profiles/Flashforge/process/0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GS002", + "setting_id": "VPKIYFY99e6eS9Nd", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF AD5X.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF AD5X.json index a0a8ab438ba..de246cbdbe3 100644 --- a/resources/profiles/Flashforge/process/0.16mm Standard @FF AD5X.json +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF AD5X.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @FF AD5X", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GP002", + "setting_id": "4H9zjghIX4OfGnxW", "instantiation": "true", "brim_type": "auto_brim", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4 HF.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4 HF.json index a7c5f8cfa7d..c232adcd287 100644 --- a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4 HF.json +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "0.16mm Standard @FF G4 HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "9Mykvg556mKLX76N", "instantiation": "true", "bridge_speed": "15", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4.json index 4631e0a5b61..d997fa594b1 100644 --- a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4.json +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4.json @@ -3,6 +3,7 @@ "name": "0.16mm Standard @FF G4", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "qIdJBQt3z3OKjG0N", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P HF.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P HF.json index 409afed4934..d04feec279c 100644 --- a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P HF.json +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "0.16mm Standard @FF G4P HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "OldLqTbxDSL1VKQm", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P.json index 910308ed2b9..50d80a85d7d 100644 --- a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P.json +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P.json @@ -3,6 +3,7 @@ "name": "0.16mm Standard @FF G4P", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "elwhC4evpm8JnC77", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.98", "bridge_flow": "0.98", diff --git a/resources/profiles/Flashforge/process/0.18mm Fine @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.18mm Fine @FF AD5X 0.6 nozzle.json index 0371b074e36..06c19c6ecac 100644 --- a/resources/profiles/Flashforge/process/0.18mm Fine @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.18mm Fine @FF AD5X 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.18mm Fine @FF AD5X 0.6 nozzle", "inherits": "0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", + "setting_id": "d06fO17ulsLfKJl0", "instantiation": "true", "brim_type": "auto_brim", "enable_prime_tower": "1", diff --git a/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M 0.6 Nozzle.json index 23669d714da..2a27ff0d15e 100644 --- a/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M 0.6 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.18mm Fine @Flashforge AD5M 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M 0.6 Nozzle", "from": "system", + "setting_id": "wBnr35lLYEBuPHwh", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle.json index c1697714620..e731bbdd4c1 100644 --- a/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", + "setting_id": "MoyaqsclwNQsoedL", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.18mm Standard @FF C5 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.18mm Standard @FF C5 0.6 nozzle.json index c57be392418..466ee35922a 100644 --- a/resources/profiles/Flashforge/process/0.18mm Standard @FF C5 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.18mm Standard @FF C5 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.18mm Standard @FF C5 0.6 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "w2KW5WrDquPt70Rg", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.6 nozzle", diff --git a/resources/profiles/Flashforge/process/0.18mm Standard @Flashforge G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.18mm Standard @Flashforge G3U 0.6 Nozzle.json index 81a05fc544c..f3f8594c48b 100644 --- a/resources/profiles/Flashforge/process/0.18mm Standard @Flashforge G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.18mm Standard @Flashforge G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Flashforge G3U 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "HFELwNgbncFBD7kQ", "instantiation": "true", "compatible_printers": [ "Flashforge Guider 3 Ultra 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.20mm High-Speed @Flashforge AD4 HS Nozzle.json b/resources/profiles/Flashforge/process/0.20mm High-Speed @Flashforge AD4 HS Nozzle.json index 121f4bde4e3..ad89354ae1e 100644 --- a/resources/profiles/Flashforge/process/0.20mm High-Speed @Flashforge AD4 HS Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm High-Speed @Flashforge AD4 HS Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm High-Speed @Flashforge AD4 HS Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP002", + "setting_id": "0tegPpv7m6UpBWqM", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF AD5X.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF AD5X.json index 8744abad54b..0607df40955 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF AD5X.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF AD5X.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FF AD5X", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GP002", + "setting_id": "3ei5QadUbDuTI3hi", "instantiation": "true", "brim_type": "auto_brim", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF C5.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF C5.json index a24ace1fa4f..f7afb4e330e 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF C5.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF C5.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF C5", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "Uk9Svk5KG7qGu1YQ", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 HF.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 HF.json index baede2b9c77..aef45c34bf7 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 HF.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4 HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "w0m7t2XNPeoLIQq1", "instantiation": "true", "bridge_speed": "15", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 PLA600.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 PLA600.json index ffc980cd9d6..318b57b07f4 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 PLA600.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 PLA600.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4 PLA600", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "vJMNZ7ccBUuLYsPG", "instantiation": "true", "bridge_speed": "15", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4.json index 372137ad5fd..041c2c103b8 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "P7f5GsktOKJcRXLP", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF for PLA 600.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF for PLA 600.json index 8f1cd492f21..bf005ebb417 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF for PLA 600.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF for PLA 600.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4P HF for PLA 600", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "2m2XNW6WoXOafYGa", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF.json index c7302379d2e..3aa928a524a 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4P HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "DVhcIFTv8VAfBnnO", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P.json index 23ffceded18..baab0c76479 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4P", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "boicXzn9lxXQLWx4", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.98", "bridge_flow": "0.98", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD3 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD3 0.4 Nozzle.json index 1e161527616..619014c8a4b 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD3 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD3 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge AD3 0.4 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP001", + "setting_id": "LfmuNl9vbT4h1kIG", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD4 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD4 0.4 Nozzle.json index fcf873aeb66..2e81b9758fe 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD4 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD4 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge AD4 0.4 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP001", + "setting_id": "wL1NzGxmHbZkysh4", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M 0.4 Nozzle.json index 9973a1ba455..498f9c30646 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge AD5M 0.4 Nozzle", "inherits": "fdm_process_flashforge_0.20", "from": "system", - "setting_id": "GP001", + "setting_id": "ZRw6CP34Q7qxgPI0", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.4 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle.json index 3cd9d3e226b..cf9f12b7f24 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "inherits": "fdm_process_flashforge_0.20", "from": "system", - "setting_id": "GP002", + "setting_id": "kgymNnIFzKcSJgoZ", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Artemis 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Artemis 0.4 Nozzle.json index 8710e53552d..1b9fd03771b 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Artemis 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Artemis 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge Artemis 0.4 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP001", + "setting_id": "duPiYbtsPEZKLQr8", "instantiation": "true", "layer_height": "0.18", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge G3U 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge G3U 0.4 Nozzle.json index eeb3b76db1d..aeb81d2dd99 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge G3U 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge G3U 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "inherits": "fdm_process_flashforge_0.20", "from": "system", - "setting_id": "GP003", + "setting_id": "KhWOD428xXaI9mwx", "instantiation": "true", "accel_to_decel_enable": "0", "accel_to_decel_factor": "50%", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Guider 2s 0.4 nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Guider 2s 0.4 nozzle.json index a8e0a72f037..97d51bec7f9 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Guider 2s 0.4 nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Guider 2s 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge Guider 2s 0.4 nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GS003", + "setting_id": "uknnclg0sGPLeGcN", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Flashforge/process/0.24mm Draft @FF AD5X.json b/resources/profiles/Flashforge/process/0.24mm Draft @FF AD5X.json index 825ef594f2c..2585dbdaed7 100644 --- a/resources/profiles/Flashforge/process/0.24mm Draft @FF AD5X.json +++ b/resources/profiles/Flashforge/process/0.24mm Draft @FF AD5X.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FF AD5X", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GP002", + "setting_id": "Hd2oXCM7SQEoObst", "instantiation": "true", "brim_type": "auto_brim", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M 0.4 Nozzle.json index 42f12031700..f9f4800ce1f 100644 --- a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M 0.4 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Flashforge AD5M 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M 0.4 Nozzle", "from": "system", + "setting_id": "GGgmNEFLexIoUx8k", "instantiation": "true", "layer_height": "0.24", "infill_wall_overlap": "25%", diff --git a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M Pro 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M Pro 0.4 Nozzle.json index e932811135b..fca6623293c 100644 --- a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M Pro 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M Pro 0.4 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Flashforge AD5M Pro 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "xxKfX8J30yv560Sj", "instantiation": "true", "layer_height": "0.24", "infill_wall_overlap": "30%", diff --git a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge G3U 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge G3U 0.4 Nozzle.json index 4f4728ea150..844e0adbd2b 100644 --- a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge G3U 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge G3U 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Flashforge G3U 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "YeElEtVLb55pdAgy", "instantiation": "true", "bridge_flow": "0.96", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.24mm Fine @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.24mm Fine @FF AD5X 0.8 nozzle.json index 1cb46d82859..a321b137126 100644 --- a/resources/profiles/Flashforge/process/0.24mm Fine @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Fine @FF AD5X 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Fine @FF AD5X 0.8 nozzle", "inherits": "0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle", "from": "system", + "setting_id": "M9MmoZSXup35gDA0", "instantiation": "true", "enable_prime_tower": "1", "exclude_object": "1", diff --git a/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json index 970b2b5b3ef..11cdfe6473e 100644 --- a/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Fine @Flashforge AD5M 0.8 Nozzle", "inherits": "0.40mm Standard @Flashforge AD5M 0.8 Nozzle", "from": "system", + "setting_id": "8XCfmrFwB0pqNDMS", "instantiation": "true", "layer_height": "0.24", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json index 2e0f2c7d230..ca13529b2df 100644 --- a/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle", "inherits": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", "from": "system", + "setting_id": "WNJRafPyAQrLNGfD", "instantiation": "true", "layer_height": "0.24", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF C5.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF C5.json index a701add8fa7..1716148c673 100644 --- a/resources/profiles/Flashforge/process/0.24mm Standard @FF C5.json +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF C5.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @FF C5", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "vchCynehN4s32swH", "instantiation": "true", "bridge_speed": "35", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4 HF.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4 HF.json index 54604fb2865..6667fbb4bc1 100644 --- a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4 HF.json +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @FF G4 HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "vyHqDjWrmpwi2mhg", "instantiation": "true", "bridge_speed": "15", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4.json index 6bbc7d19de7..bb2a68e9eb6 100644 --- a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4.json +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @FF G4", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "Kc2gIRMpDTDclo0e", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P HF.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P HF.json index 383ce242325..33143ab4df6 100644 --- a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P HF.json +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @FF G4P HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "ZtHQuwCqbsB1FJxw", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P.json index 9ac5e4a4834..2f0460d24cd 100644 --- a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P.json +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @FF G4P", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "Pc5aTH1KOObhSNcK", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.98", "bridge_flow": "0.98", diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 HF nozzle.json index a90a5cfe4cd..4154a336654 100644 --- a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @FF G4 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "PWm4py8YhHGjZ3FR", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 nozzle.json index d8be6463aac..18ef06a783a 100644 --- a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @FF G4 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "niA0yhM8YzI7Ni0m", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 HF nozzle.json index 4e50c034911..7f7777e9a34 100644 --- a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @FF G4P 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "j3mtmUxolAIxvXkl", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 nozzle.json index 48ae30124a1..a2b3f3db1de 100644 --- a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @FF G4P 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "NEq810Zm1mn8DSWl", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.30mm Draft @Flashforge Guider 2s 0.4 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Draft @Flashforge Guider 2s 0.4 nozzle.json index c5ca0dfbaa5..3eda3c3d342 100644 --- a/resources/profiles/Flashforge/process/0.30mm Draft @Flashforge Guider 2s 0.4 nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Draft @Flashforge Guider 2s 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Flashforge Guider 2s 0.4 nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GS004", + "setting_id": "twWwqkfSRYeAkuzT", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD3 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD3 0.4 Nozzle.json index 5e48bc0a750..e17b0e8d9f8 100644 --- a/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD3 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD3 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Fast @Flashforge AD3 0.4 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP001", + "setting_id": "s29waRwj2c73VB27", "instantiation": "true", "layer_height": "0.3", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD4 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD4 0.4 Nozzle.json index 72be039741f..ea65c7de1be 100644 --- a/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD4 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD4 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Fast @Flashforge AD4 0.4 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP001", + "setting_id": "HbCSfTDq9CDodIgH", "instantiation": "true", "layer_height": "0.3", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @FF AD5X 0.6 nozzle.json index 712facd2b2b..ac5e092ffbc 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @FF AD5X 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "JlNWAgYsPK0pEnf4", "instantiation": "true", "brim_type": "auto_brim", "enable_prime_tower": "1", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @FF C5 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @FF C5 0.6 nozzle.json index 07500f7c66b..246be2b972c 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @FF C5 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @FF C5 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.30mm Standard @FF C5 0.6 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "VbgpUmBZySYfOWFM", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.6 nozzle", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4 0.6 nozzle.json index 54dc1a48242..c8f574252a7 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.30mm Standard @FF G4 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "akTSEx0Qnj1SL1IU", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4P 0.6 nozzle.json index 4c9e4945a97..238d3e3330e 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.30mm Standard @FF G4P 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "2rXWmDHZN5w6Wdyq", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD3 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD3 0.6 Nozzle.json index feb1f20c271..65f1ad351a0 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD3 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD3 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Flashforge AD3 0.6 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP003", + "setting_id": "OE7RtnwqWPwa4Vp2", "instantiation": "true", "layer_height": "0.3", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD4 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD4 0.6 Nozzle.json index a843ec2a097..cba58e12027 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD4 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD4 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Flashforge AD4 0.6 Nozzle", "inherits": "fdm_process_flashforge_0.30", "from": "system", - "setting_id": "GP004", + "setting_id": "fTyYTe7FN6ps1tMJ", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 4 Series 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M 0.6 Nozzle.json index eb218ec6318..7540593b777 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Flashforge AD5M 0.6 Nozzle", "inherits": "fdm_process_flashforge_0.30", "from": "system", - "setting_id": "GP003", + "setting_id": "FoJXtPRI5C4JHZTD", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle.json index d0f4e9f2db9..efc774872fb 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", "inherits": "fdm_process_flashforge_0.30", "from": "system", - "setting_id": "GP004", + "setting_id": "TOMmiGKvaxWTo2B9", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge G3U 0.6 Nozzle.json index f5b971663b9..b0a535fe8e9 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "inherits": "fdm_process_flashforge_0.30", "from": "system", - "setting_id": "GP003", + "setting_id": "QhXlZPQdK5K6aKpC", "instantiation": "true", "layer_height": "0.3", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.32mm Standard @FF C5 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.32mm Standard @FF C5 0.8 nozzle.json index 41c0d4ce186..e3828836d7f 100644 --- a/resources/profiles/Flashforge/process/0.32mm Standard @FF C5 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.32mm Standard @FF C5 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.32mm Standard @FF C5 0.8 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "pF4T59Q97nEuyVlE", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.6 nozzle", diff --git a/resources/profiles/Flashforge/process/0.32mm Standard @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4 0.8 HF nozzle.json index 7eb8fcd1e06..e034721d3cb 100644 --- a/resources/profiles/Flashforge/process/0.32mm Standard @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.32mm Standard @FF G4 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "wAaVfZTSRJ39STVa", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.32mm Standard @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4P 0.8 HF nozzle.json index 0bd74a6e2be..84db75f7814 100644 --- a/resources/profiles/Flashforge/process/0.32mm Standard @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.32mm Standard @FF G4P 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "1gxibPIjDyqcZV1e", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 HF nozzle.json index 2dd229990ed..ef242e6e88a 100644 --- a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.36mm Standard @FF G4 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "ASYmajlurBiRJ8a0", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 nozzle.json index 45aacd1f6bb..a4ab95d0482 100644 --- a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.36mm Standard @FF G4 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "irQ6GdItKJN1d6Rt", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 HF nozzle.json index ed638bfee06..15d9fa86a56 100644 --- a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.36mm Standard @FF G4P 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "n6mjyu5geF4sjscL", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 nozzle.json index ff45278f0c3..7c7e132ac3c 100644 --- a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.36mm Standard @FF G4P 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "dDRjud5XpEFlptCC", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.3mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4 0.6 HF nozzle.json index b513182f542..2295822f051 100644 --- a/resources/profiles/Flashforge/process/0.3mm Standard @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.3mm Standard @FF G4 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "ewrFp0DwW5yrzgqd", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.3mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4P 0.6 HF nozzle.json index 9b4e1a131c9..88c6c33370b 100644 --- a/resources/profiles/Flashforge/process/0.3mm Standard @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.3mm Standard @FF G4P 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "2JLJ1XP0eQhS65oY", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @FF AD5X 0.8 nozzle.json index 638532cfc2c..be419bfc070 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @FF AD5X 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.40mm Standard @FF AD5X 0.8 nozzle", "inherits": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", "from": "system", + "setting_id": "zkhLAIpGeFPwnYMf", "instantiation": "true", "enable_prime_tower": "1", "exclude_object": "1", diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4 0.8 HF nozzle.json index 4f366e617ac..76caef1d0f9 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.40mm Standard @FF G4 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "ojgMrFiTa9itgNCJ", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4P 0.8 HF nozzle.json index 7a0999e498d..0e44a0b7a64 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.40mm Standard @FF G4P 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "uie5sTVuopypuKmI", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M 0.8 Nozzle.json index ccf0a4cbf67..f9eef644f6f 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Flashforge AD5M 0.8 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M 0.6 Nozzle", "from": "system", - "setting_id": "GP002", + "setting_id": "u0jpovtEQsNZSkyN", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.8 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json index e13edaf428e..f0c6dcfda1f 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "3ZjvDS1FBf9wSuaO", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.8 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge G3U 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge G3U 0.8 Nozzle.json index c9f9db84cb6..a09e82b6683 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge G3U 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge G3U 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Flashforge G3U 0.8 Nozzle", "inherits": "fdm_process_flashforge_0.40", "from": "system", - "setting_id": "GP003", + "setting_id": "gTCiZUTED9NajbsZ", "instantiation": "true", "layer_height": "0.4", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.42mm Draft @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.42mm Draft @FF AD5X 0.6 nozzle.json index 14eafe6be81..20fb1c52f9e 100644 --- a/resources/profiles/Flashforge/process/0.42mm Draft @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Draft @FF AD5X 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @FF AD5X 0.6 nozzle", "inherits": "0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", + "setting_id": "ePqStrkF9PBgXen1", "instantiation": "true", "brim_type": "auto_brim", "enable_prime_tower": "1", diff --git a/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M 0.6 Nozzle.json index 6d5b211b1aa..f96b08bb2d2 100644 --- a/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M 0.6 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @Flashforge AD5M 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M 0.6 Nozzle", "from": "system", + "setting_id": "oB1VL0tJHAOzLf5N", "instantiation": "true", "layer_height": "0.42", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle.json index b115258fc5f..123fa4ac242 100644 --- a/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", + "setting_id": "TWLGiPjsuVTPg8rz", "instantiation": "true", "layer_height": "0.42", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF C5 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF C5 0.6 nozzle.json index ff359ca50ff..8aaa51eb18f 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @FF C5 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF C5 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @FF C5 0.6 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "nl91C8p94E4lZpC4", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.6 nozzle", diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 HF nozzle.json index 6925d9da097..ebfb0fb6b5f 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @FF G4 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "dnesNhyIopLbcMCf", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 nozzle.json index 8ba26b11e66..4f29c0adadd 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @FF G4 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "Kc7tvmBJJHGQ3RlO", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 HF nozzle.json index c9882ae7d56..b2428edd029 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @FF G4P 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "qg4NDWl7Kl9kdNVc", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 nozzle.json index 074c4f71b6e..66a91699de4 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @FF G4P 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "DZUexA32pXw33NeC", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @Flashforge G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @Flashforge G3U 0.6 Nozzle.json index 02e68ecfa38..7ab706b16ee 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @Flashforge G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @Flashforge G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Flashforge G3U 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "bDWkZppcXi8NILsC", "instantiation": "true", "compatible_printers": [ "Flashforge Guider 3 Ultra 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.48mm Standard @FF C5 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.48mm Standard @FF C5 0.8 nozzle.json index 90e707d1f21..81f78c35d1b 100644 --- a/resources/profiles/Flashforge/process/0.48mm Standard @FF C5 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.48mm Standard @FF C5 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.48mm Standard @FF C5 0.8 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "N4fhrE0QWnUjerQH", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.8 nozzle", diff --git a/resources/profiles/Flashforge/process/0.48mm Standard @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4 0.8 HF nozzle.json index a3356f1971c..21b4ba5bbb7 100644 --- a/resources/profiles/Flashforge/process/0.48mm Standard @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.48mm Standard @FF G4 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "4Tmjt5k6bKXbIf4a", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.48mm Standard @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4P 0.8 HF nozzle.json index 7f8748ab51b..efe9c32e70e 100644 --- a/resources/profiles/Flashforge/process/0.48mm Standard @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.48mm Standard @FF G4P 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "WtrYyqzfWfpDFQ60", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.4mm Standard @FF C5 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.4mm Standard @FF C5 0.8 nozzle.json index 20f40cf0480..ac6aa6d21da 100644 --- a/resources/profiles/Flashforge/process/0.4mm Standard @FF C5 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.4mm Standard @FF C5 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.4mm Standard @FF C5 0.8 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "zFdJtm557yiOxwSl", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.8 nozzle", diff --git a/resources/profiles/Flashforge/process/0.56mm Draft @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.56mm Draft @FF AD5X 0.8 nozzle.json index 196afc78a65..2adbb2d77e3 100644 --- a/resources/profiles/Flashforge/process/0.56mm Draft @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.56mm Draft @FF AD5X 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.56mm Draft @FF AD5X 0.8 nozzle", "inherits": "0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle", "from": "system", + "setting_id": "NDOQ4LhG0S0b6vAp", "instantiation": "true", "compatible_printers": [ "Flashforge AD5X 0.8 nozzle" diff --git a/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M 0.8 Nozzle.json index 7305dec0966..76407ae7960 100644 --- a/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M 0.8 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.56mm Draft @Flashforge AD5M 0.8 Nozzle", "inherits": "0.40mm Standard @Flashforge AD5M 0.8 Nozzle", "from": "system", + "setting_id": "LfQRk0JFbNDrzGzk", "instantiation": "true", "layer_height": "0.56", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json index aa5b9b3a5e3..143605cae46 100644 --- a/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle", "inherits": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", "from": "system", + "setting_id": "eVSsUHI5DvdLa7Jg", "instantiation": "true", "layer_height": "0.56", "compatible_printers": [ diff --git a/resources/profiles/FlyingBear.json b/resources/profiles/FlyingBear.json index 37dd501dff2..d93bc00e575 100644 --- a/resources/profiles/FlyingBear.json +++ b/resources/profiles/FlyingBear.json @@ -1,6 +1,6 @@ { "name": "FlyingBear", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "1", "description": "FlyingBear configurations", "machine_model_list": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic ABS.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic ABS.json index c774e3577b0..7a296fea35c 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic ABS.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic ABS.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TDBNmmGSexhJjBVm", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic PA-CF.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic PA-CF.json index bd76817ebac..4fe521fccea 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic PA-CF.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lpa58hsu9IB697v8", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic PC.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic PC.json index b7551cf689f..92227f42547 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic PC.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic PC.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MkIN95sonzI0vNXT", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic PETG.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic PETG.json index 43abe173e74..2bd49d16a13 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic PETG.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic PETG.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "id0y4kfJciWjOwh6", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic PLA.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic PLA.json index de1c15a459a..d41a0cdaa68 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic PLA.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic PLA.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yCGisctQQwASw8kc", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic TPU.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic TPU.json index 4e0f0b14ede..1ae309f9e95 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic TPU.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic TPU.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "84YwyW2C94NdN1zl", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear PLA Hyper.json b/resources/profiles/FlyingBear/filament/FlyingBear PLA Hyper.json index 0e14a1dd85b..6d3f9019b25 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear PLA Hyper.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear PLA Hyper.json @@ -3,7 +3,7 @@ "name": "FlyingBear PLA Hyper", "inherits": "fdm_filament_pla_Hyper", "from": "system", - "setting_id": "GFSA04", + "setting_id": "72RZHGo7eACm2tN5", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear ABS @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear ABS @Ghost7.json index e1cc94685f2..814a1008800 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear ABS @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear ABS @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear ABS @Ghost7", "inherits": "fdm_filament_abs @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UyTzid0zVMCxSrgx", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PA-CF @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PA-CF @Ghost7.json index 06d8b96872c..ecbff8839ee 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PA-CF @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PA-CF @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear PA-CF @Ghost7", "inherits": "fdm_filament_pa @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NZwDOWmMdBYEejNQ", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PC @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PC @Ghost7.json index 25e09089dcf..5a72ae3680a 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PC @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PC @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear PC @Ghost7", "inherits": "fdm_filament_pc @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QYOEUrnmNMUcVOVF", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PETG Basic @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PETG Basic @Ghost7.json index e49dd80ea86..6c727db151d 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PETG Basic @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PETG Basic @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear PETG Basic @Ghost7", "inherits": "fdm_filament_pet @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "k2os2FPNl8K7vTZN", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Basic @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Basic @Ghost7.json index 80988af6498..41f16faf658 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Basic @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Basic @Ghost7.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_pla @Ghost7", "renamed_from": "FlyingBear PLA @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3JBTG6IDrBCnvIhf", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Hyper @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Hyper @Ghost7.json index fa897766c92..488cda963cd 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Hyper @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Hyper @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear PLA Hyper @Ghost7", "inherits": "fdm_filament_pla_Hyper @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qQZUolZHgJxgLo17", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear TPU Basic @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear TPU Basic @Ghost7.json index 7f2f45e0d8b..8b66f6d1ca7 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear TPU Basic @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear TPU Basic @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear TPU Basic @Ghost7", "inherits": "fdm_filament_tpu @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wQQncT0OCAktGyHr", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear ABS @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear ABS @S1.json index f900a7954b4..a04e655f4b6 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear ABS @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear ABS @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear ABS @S1", "inherits": "fdm_filament_abs @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7dtepGnoDDAdPtUh", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear PA-CF @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear PA-CF @S1.json index 97d57e5db73..f24c0d882ef 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear PA-CF @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear PA-CF @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear PA-CF @S1", "inherits": "fdm_filament_pa @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CLggyaDcebZSbqIH", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear PC @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear PC @S1.json index 55b7d73e8ea..54fb8a7ca13 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear PC @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear PC @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear PC @S1", "inherits": "fdm_filament_pc @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bPeSARy9AGqM8Y32", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear PETG @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear PETG @S1.json index bc7588cd942..77bc4b151fb 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear PETG @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear PETG @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear PETG @S1", "inherits": "fdm_filament_pet @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yKU5mMW0nKvNH98B", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA @S1.json index b7d960ba472..3c3fbd5af88 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear PLA @S1", "inherits": "fdm_filament_pla @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "k58jL17n8cOla3Gd", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA Hyper @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA Hyper @S1.json index 3ed7f8ff33b..06148f4f70e 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA Hyper @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA Hyper @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear PLA Hyper @S1", "inherits": "fdm_filament_pla_Hyper @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "h8XGgMBjEwxNkldf", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear TPU @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear TPU @S1.json index 0f16c2bab36..2cd4a9e943f 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear TPU @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear TPU @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear TPU @S1", "inherits": "fdm_filament_tpu @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IVFpAlGo8KButueJ", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other ABS @S1.json b/resources/profiles/FlyingBear/filament/S1/Other ABS @S1.json index 4336e67c714..7e37ab1996d 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other ABS @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other ABS @S1.json @@ -3,7 +3,7 @@ "name": "Other ABS @S1", "inherits": "fdm_filament_abs_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Nadd5NX7eDvEnlKO", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other PA-CF @S1.json b/resources/profiles/FlyingBear/filament/S1/Other PA-CF @S1.json index 1c469218042..8eff7046ea0 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other PA-CF @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other PA-CF @S1.json @@ -3,7 +3,7 @@ "name": "Other PA-CF @S1", "inherits": "fdm_filament_pa_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sSKkzXv1cn33fF7p", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other PC @S1.json b/resources/profiles/FlyingBear/filament/S1/Other PC @S1.json index 575491554be..9a09e1c0d54 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other PC @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other PC @S1.json @@ -3,7 +3,7 @@ "name": "Other PC @S1", "inherits": "fdm_filament_pc_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mHuxaHppNFZbldHD", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other PETG @S1.json b/resources/profiles/FlyingBear/filament/S1/Other PETG @S1.json index e1d316982b0..b610388077d 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other PETG @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other PETG @S1.json @@ -3,7 +3,7 @@ "name": "Other PETG @S1", "inherits": "fdm_filament_pet_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ko5q6BgADth36RJC", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other PLA @S1.json b/resources/profiles/FlyingBear/filament/S1/Other PLA @S1.json index 8bf304d686d..1df83126867 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other PLA @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other PLA @S1.json @@ -3,7 +3,7 @@ "name": "Other PLA @S1", "inherits": "fdm_filament_pla_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sayo3sMQKH4ZdhEk", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other PLA Hyper @S1.json b/resources/profiles/FlyingBear/filament/S1/Other PLA Hyper @S1.json index 720d872fb53..b9913afec45 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other PLA Hyper @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other PLA Hyper @S1.json @@ -3,7 +3,7 @@ "name": "Other PLA Hyper @S1", "inherits": "fdm_filament_pla_Hyper_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2QHCKH0yDmBzpQnY", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other TPU @S1.json b/resources/profiles/FlyingBear/filament/S1/Other TPU @S1.json index f85c81c15d8..aa56b7f0f7c 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other TPU @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other TPU @S1.json @@ -3,7 +3,7 @@ "name": "Other TPU @S1", "inherits": "fdm_filament_tpu_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wh8PHrEbFYKsQxo0", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/machine/FlyingBear Ghost 6 0.4 nozzle.json b/resources/profiles/FlyingBear/machine/FlyingBear Ghost 6 0.4 nozzle.json index 6f2b6fd206c..633e17dd936 100644 --- a/resources/profiles/FlyingBear/machine/FlyingBear Ghost 6 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/machine/FlyingBear Ghost 6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FlyingBear Ghost 6 0.4 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM001", + "setting_id": "9ahoAgKHXW4Y4wMN", "instantiation": "true", "printer_model": "FlyingBear Ghost 6", "gcode_flavor": "marlin2", diff --git a/resources/profiles/FlyingBear/machine/FlyingBear Reborn3 0.4 nozzle.json b/resources/profiles/FlyingBear/machine/FlyingBear Reborn3 0.4 nozzle.json index bf3c1735fa6..0944380e725 100644 --- a/resources/profiles/FlyingBear/machine/FlyingBear Reborn3 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/machine/FlyingBear Reborn3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FlyingBear Reborn3 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "yluu0jklGesUFUuk", "instantiation": "true", "printer_model": "FlyingBear Reborn3", "nozzle_diameter": [ diff --git a/resources/profiles/FlyingBear/machine/Ghost7/FlyingBear Ghost7 0.4 nozzle.json b/resources/profiles/FlyingBear/machine/Ghost7/FlyingBear Ghost7 0.4 nozzle.json index c166c46086e..4da21780a18 100644 --- a/resources/profiles/FlyingBear/machine/Ghost7/FlyingBear Ghost7 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/machine/Ghost7/FlyingBear Ghost7 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FlyingBear Ghost7 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "z9QfjLoeHAlCIdsj", "instantiation": "true", "printer_model": "FlyingBear Ghost7", "auxiliary_fan": "1", diff --git a/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json b/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json index 7d26ec2bc69..4e176dca315 100644 --- a/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FlyingBear S1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "sV41gmKNaHHKexKv", "instantiation": "true", "printer_model": "FlyingBear S1", "auxiliary_fan": "1", diff --git a/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json b/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json index 1b51dd62b8f..efb5b732110 100644 --- a/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json +++ b/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @FlyingBear Reborn3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "OMhI4yqayz0VRf7s", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle.json b/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle.json index 6c302380ea3..74745fb3998 100644 --- a/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle", "inherits": "fdm_process_ghost_6", "from": "system", - "setting_id": "GP004", + "setting_id": "dZMzPwM5ArOA315D", "instantiation": "true", "compatible_printers": [ "FlyingBear Ghost 6 0.4 nozzle" diff --git a/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Reborn3.json b/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Reborn3.json index a5307aee747..b1b78f293ad 100644 --- a/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Reborn3.json +++ b/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Reborn3.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FlyingBear Reborn3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "abROLgQer55HN2Ip", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle.json b/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle.json index 93d498dcde2..b7aa5945e52 100644 --- a/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle", "inherits": "fdm_process_ghost_6", "from": "system", - "setting_id": "GP004", + "setting_id": "33I5wTHzQ00K99NS", "instantiation": "true", "compatible_printers": [ "FlyingBear Ghost 6 0.4 nozzle" diff --git a/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Reborn3.json b/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Reborn3.json index ec7f910287c..b8200ed6aa8 100644 --- a/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Reborn3.json +++ b/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Reborn3.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FlyingBear Reborn3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP005", + "setting_id": "5Mgf7IN3oJG6goRS", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle.json b/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle.json index bec653dcb82..53b3b97531a 100644 --- a/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle", "inherits": "fdm_process_ghost_6", "from": "system", - "setting_id": "GP004", + "setting_id": "X2GZ8IKYLrs3qVId", "instantiation": "true", "compatible_printers": [ "FlyingBear Ghost 6 0.4 nozzle" diff --git a/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Reborn3.json b/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Reborn3.json index c59aa3d6de6..0276f5b6a3b 100644 --- a/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Reborn3.json +++ b/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Reborn3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FlyingBear Reborn3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "r3aIXL8Weo1sx6w8", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle.json b/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle.json index bdb038a18d5..248c0318afb 100644 --- a/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle", "inherits": "fdm_process_ghost_6", "from": "system", - "setting_id": "GP004", + "setting_id": "FWGFDXzBWjGXOtlO", "instantiation": "true", "compatible_printers": [ "FlyingBear Ghost 6 0.4 nozzle" diff --git a/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Reborn3.json b/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Reborn3.json index 75b11083b65..3bc9bc783f5 100644 --- a/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Reborn3.json +++ b/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Reborn3.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FlyingBear Reborn3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "4oeomEc4XboCLPeF", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/Ghost7/0.08mm Extra Fine @FlyingBear Ghost7.json b/resources/profiles/FlyingBear/process/Ghost7/0.08mm Extra Fine @FlyingBear Ghost7.json index e1e907df4d2..36db9c70c79 100644 --- a/resources/profiles/FlyingBear/process/Ghost7/0.08mm Extra Fine @FlyingBear Ghost7.json +++ b/resources/profiles/FlyingBear/process/Ghost7/0.08mm Extra Fine @FlyingBear Ghost7.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @FlyingBear Ghost7", "inherits": "fdm_process_common_Ghost7", "from": "system", - "setting_id": "GP004", + "setting_id": "MgVBCShfLwCDXcK7", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/FlyingBear/process/Ghost7/0.12mm Fine @FlyingBear Ghost7.json b/resources/profiles/FlyingBear/process/Ghost7/0.12mm Fine @FlyingBear Ghost7.json index 10b7d486a29..8b90f8482fe 100644 --- a/resources/profiles/FlyingBear/process/Ghost7/0.12mm Fine @FlyingBear Ghost7.json +++ b/resources/profiles/FlyingBear/process/Ghost7/0.12mm Fine @FlyingBear Ghost7.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FlyingBear Ghost7", "inherits": "fdm_process_common_Ghost7", "from": "system", - "setting_id": "GP004", + "setting_id": "IcBUb661Z0WfAsWx", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/FlyingBear/process/Ghost7/0.16mm Optimal @FlyingBear Ghost7.json b/resources/profiles/FlyingBear/process/Ghost7/0.16mm Optimal @FlyingBear Ghost7.json index 5135b85c7e2..36f8e3705cd 100644 --- a/resources/profiles/FlyingBear/process/Ghost7/0.16mm Optimal @FlyingBear Ghost7.json +++ b/resources/profiles/FlyingBear/process/Ghost7/0.16mm Optimal @FlyingBear Ghost7.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FlyingBear Ghost7", "inherits": "fdm_process_common_Ghost7", "from": "system", - "setting_id": "GP005", + "setting_id": "1wZC0qr91DtOGVAo", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/Ghost7/0.20mm Standard @FlyingBear Ghost7.json b/resources/profiles/FlyingBear/process/Ghost7/0.20mm Standard @FlyingBear Ghost7.json index afdad7ddb09..ca5c7ea79f8 100644 --- a/resources/profiles/FlyingBear/process/Ghost7/0.20mm Standard @FlyingBear Ghost7.json +++ b/resources/profiles/FlyingBear/process/Ghost7/0.20mm Standard @FlyingBear Ghost7.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FlyingBear Ghost7", "inherits": "fdm_process_common_Ghost7", "from": "system", - "setting_id": "GP004", + "setting_id": "zuFTefM8bNf076I6", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "0", diff --git a/resources/profiles/FlyingBear/process/Ghost7/0.24mm Draft @FlyingBear Ghost7.json b/resources/profiles/FlyingBear/process/Ghost7/0.24mm Draft @FlyingBear Ghost7.json index afa51e07c33..46d9c729390 100644 --- a/resources/profiles/FlyingBear/process/Ghost7/0.24mm Draft @FlyingBear Ghost7.json +++ b/resources/profiles/FlyingBear/process/Ghost7/0.24mm Draft @FlyingBear Ghost7.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FlyingBear Ghost7", "inherits": "fdm_process_common_Ghost7", "from": "system", - "setting_id": "GP004", + "setting_id": "inALsOZiG6df6cKY", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/S1/0.08mm Extra Fine @FlyingBear S1.json b/resources/profiles/FlyingBear/process/S1/0.08mm Extra Fine @FlyingBear S1.json index 14d86d75feb..5213c912650 100644 --- a/resources/profiles/FlyingBear/process/S1/0.08mm Extra Fine @FlyingBear S1.json +++ b/resources/profiles/FlyingBear/process/S1/0.08mm Extra Fine @FlyingBear S1.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @FlyingBear S1", "inherits": "fdm_process_common_S1", "from": "system", - "setting_id": "GP004", + "setting_id": "OgaLwywBqDMCcshT", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/FlyingBear/process/S1/0.12mm Fine @FlyingBear S1.json b/resources/profiles/FlyingBear/process/S1/0.12mm Fine @FlyingBear S1.json index 26f92e13543..e7b8d33acb0 100644 --- a/resources/profiles/FlyingBear/process/S1/0.12mm Fine @FlyingBear S1.json +++ b/resources/profiles/FlyingBear/process/S1/0.12mm Fine @FlyingBear S1.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FlyingBear S1", "inherits": "fdm_process_common_S1", "from": "system", - "setting_id": "GP004", + "setting_id": "6n3NvhpkP9UkpxFW", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/FlyingBear/process/S1/0.16mm Optimal @FlyingBear S1.json b/resources/profiles/FlyingBear/process/S1/0.16mm Optimal @FlyingBear S1.json index 607f17c9b09..27c9643f05b 100644 --- a/resources/profiles/FlyingBear/process/S1/0.16mm Optimal @FlyingBear S1.json +++ b/resources/profiles/FlyingBear/process/S1/0.16mm Optimal @FlyingBear S1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FlyingBear S1", "inherits": "fdm_process_common_S1", "from": "system", - "setting_id": "GP005", + "setting_id": "tFKoVljYRJ5IDfpJ", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/S1/0.20mm Standard @FlyingBear S1.json b/resources/profiles/FlyingBear/process/S1/0.20mm Standard @FlyingBear S1.json index 31fa7b055e7..085a9788de2 100644 --- a/resources/profiles/FlyingBear/process/S1/0.20mm Standard @FlyingBear S1.json +++ b/resources/profiles/FlyingBear/process/S1/0.20mm Standard @FlyingBear S1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FlyingBear S1", "inherits": "fdm_process_common_S1", "from": "system", - "setting_id": "GP004", + "setting_id": "st8UPLdz59IKb63k", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/S1/0.24mm Draft @FlyingBear S1.json b/resources/profiles/FlyingBear/process/S1/0.24mm Draft @FlyingBear S1.json index dc6202ec93d..2d43feeb62a 100644 --- a/resources/profiles/FlyingBear/process/S1/0.24mm Draft @FlyingBear S1.json +++ b/resources/profiles/FlyingBear/process/S1/0.24mm Draft @FlyingBear S1.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FlyingBear S1", "inherits": "fdm_process_common_S1", "from": "system", - "setting_id": "GP004", + "setting_id": "uB9e5NrlS2hkiGTQ", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/Folgertech.json b/resources/profiles/Folgertech.json index 00c443f5584..125cba3d460 100644 --- a/resources/profiles/Folgertech.json +++ b/resources/profiles/Folgertech.json @@ -1,6 +1,6 @@ { "name": "Folgertech", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Folgertech configurations", "machine_model_list": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech FT-5 0.4 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech FT-5 0.4 nozzle.json index 42fd989d176..6cc26119491 100644 --- a/resources/profiles/Folgertech/machine/Folgertech FT-5 0.4 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech FT-5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech FT-5 0.4 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM001", + "setting_id": "dygqUQePCtiEOSMX", "instantiation": "true", "printer_model": "Folgertech FT-5", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech FT-5 0.6 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech FT-5 0.6 nozzle.json index 14f122e55f9..c909a09c4df 100644 --- a/resources/profiles/Folgertech/machine/Folgertech FT-5 0.6 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech FT-5 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech FT-5 0.6 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM001", + "setting_id": "j5KVIJqBIqEOJKic", "instantiation": "true", "printer_model": "Folgertech FT-5", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech FT-6 0.4 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech FT-6 0.4 nozzle.json index a4cb0406354..6e49be12fe6 100644 --- a/resources/profiles/Folgertech/machine/Folgertech FT-6 0.4 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech FT-6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech FT-6 0.4 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM001", + "setting_id": "NHJXX7EfrlyITak3", "instantiation": "true", "printer_model": "Folgertech FT-6", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech FT-6 0.6 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech FT-6 0.6 nozzle.json index 2d576ea0cfe..77b1f6eb7a5 100644 --- a/resources/profiles/Folgertech/machine/Folgertech FT-6 0.6 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech FT-6 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech FT-6 0.6 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM002", + "setting_id": "b3qSaZ3qXkGX08eM", "instantiation": "true", "printer_model": "Folgertech FT-6", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech i3 0.4 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech i3 0.4 nozzle.json index fa1fcaa6c26..490d79b3fe6 100644 --- a/resources/profiles/Folgertech/machine/Folgertech i3 0.4 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech i3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech i3 0.4 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Pr3Xa7tsNBETM1Xy", "instantiation": "true", "printer_model": "Folgertech i3", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech i3 0.6 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech i3 0.6 nozzle.json index dc7c18d64bb..40cf5fbf826 100644 --- a/resources/profiles/Folgertech/machine/Folgertech i3 0.6 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech i3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech i3 0.6 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM001", + "setting_id": "mItbfpWJCkszTOSD", "instantiation": "true", "printer_model": "Folgertech i3", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/process/0.08mm Extra Fine @FT.json b/resources/profiles/Folgertech/process/0.08mm Extra Fine @FT.json index b5af3446752..de258992ea2 100644 --- a/resources/profiles/Folgertech/process/0.08mm Extra Fine @FT.json +++ b/resources/profiles/Folgertech/process/0.08mm Extra Fine @FT.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP001", + "setting_id": "4mumHLuCrFPe3ylw", "instantiation": "true", "layer_height": "0.08", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Folgertech/process/0.12mm Fine @FT.json b/resources/profiles/Folgertech/process/0.12mm Fine @FT.json index 76d4f9b368a..54ccd0ea11e 100644 --- a/resources/profiles/Folgertech/process/0.12mm Fine @FT.json +++ b/resources/profiles/Folgertech/process/0.12mm Fine @FT.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP002", + "setting_id": "nwwwBXK00UOdR7lq", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Folgertech/process/0.16mm Optimal @FT.json b/resources/profiles/Folgertech/process/0.16mm Optimal @FT.json index c9d76be2bfe..1f77e050bec 100644 --- a/resources/profiles/Folgertech/process/0.16mm Optimal @FT.json +++ b/resources/profiles/Folgertech/process/0.16mm Optimal @FT.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP003", + "setting_id": "NQZcXAQfpzNZQvG7", "instantiation": "true", "layer_height": "0.16", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Folgertech/process/0.18mm Fine @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.18mm Fine @FT 0.6 nozzle.json index 0a95fb975b2..edff6f48457 100644 --- a/resources/profiles/Folgertech/process/0.18mm Fine @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.18mm Fine @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP028", + "setting_id": "Pzfn0p3ZjpyUpM4w", "instantiation": "true", "layer_height": "0.18", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Folgertech/process/0.20mm Standard @FT.json b/resources/profiles/Folgertech/process/0.20mm Standard @FT.json index 62290f4e4ea..01d76e08b4c 100644 --- a/resources/profiles/Folgertech/process/0.20mm Standard @FT.json +++ b/resources/profiles/Folgertech/process/0.20mm Standard @FT.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WKICuro95QxmuNhM", "instantiation": "true", "layer_height": "0.2", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Folgertech/process/0.20mm Strength @FT.json b/resources/profiles/Folgertech/process/0.20mm Strength @FT.json index 43067d07f40..7fe88e583c6 100644 --- a/resources/profiles/Folgertech/process/0.20mm Strength @FT.json +++ b/resources/profiles/Folgertech/process/0.20mm Strength @FT.json @@ -3,7 +3,7 @@ "name": "0.20mm Strength @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP013", + "setting_id": "OvKEMM1AL26tMJST", "instantiation": "true", "outer_wall_speed": "30", "wall_loops": "6", diff --git a/resources/profiles/Folgertech/process/0.24mm Draft @FT.json b/resources/profiles/Folgertech/process/0.24mm Draft @FT.json index d171f47c325..4dbc875585b 100644 --- a/resources/profiles/Folgertech/process/0.24mm Draft @FT.json +++ b/resources/profiles/Folgertech/process/0.24mm Draft @FT.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP005", + "setting_id": "vFpvNUSpIFUs8E3U", "instantiation": "true", "layer_height": "0.24", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Folgertech/process/0.24mm Optimal @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.24mm Optimal @FT 0.6 nozzle.json index 83e6cc1c7f4..503a3247dc0 100644 --- a/resources/profiles/Folgertech/process/0.24mm Optimal @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.24mm Optimal @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP029", + "setting_id": "xpJM3hRxkXV2Q5nO", "instantiation": "true", "layer_height": "0.24", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Folgertech/process/0.28mm Extra Draft @FT.json b/resources/profiles/Folgertech/process/0.28mm Extra Draft @FT.json index 56c6f96e5c2..7196655c57e 100644 --- a/resources/profiles/Folgertech/process/0.28mm Extra Draft @FT.json +++ b/resources/profiles/Folgertech/process/0.28mm Extra Draft @FT.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP006", + "setting_id": "RqnCCylrhzENGF0k", "instantiation": "true", "layer_height": "0.28", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Folgertech/process/0.30mm Standard @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.30mm Standard @FT 0.6 nozzle.json index 03f074c5bf3..f1e657a0a4c 100644 --- a/resources/profiles/Folgertech/process/0.30mm Standard @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.30mm Standard @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP010", + "setting_id": "wzCr0a8vWIVfd1mD", "instantiation": "true", "layer_height": "0.3", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Folgertech/process/0.30mm Strength @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.30mm Strength @FT 0.6 nozzle.json index b4f0cf65593..f290e97b36f 100644 --- a/resources/profiles/Folgertech/process/0.30mm Strength @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.30mm Strength @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP036", + "setting_id": "hw5cYiRtLaVrVKhE", "instantiation": "true", "layer_height": "0.3", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Folgertech/process/0.36mm Draft @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.36mm Draft @FT 0.6 nozzle.json index 1cc09d2a02a..46ef2bfafb2 100644 --- a/resources/profiles/Folgertech/process/0.36mm Draft @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.36mm Draft @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP030", + "setting_id": "46F2ROXRIlXzANCi", "instantiation": "true", "layer_height": "0.36", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Folgertech/process/0.42mm Extra Draft @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.42mm Extra Draft @FT 0.6 nozzle.json index 770ca1530bd..b1bccf9f211 100644 --- a/resources/profiles/Folgertech/process/0.42mm Extra Draft @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.42mm Extra Draft @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP031", + "setting_id": "TvdVRkRKDJ5CSWz8", "instantiation": "true", "layer_height": "0.42", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Geeetech.json b/resources/profiles/Geeetech.json index 4bee5a1f6ac..cdd862e161a 100644 --- a/resources/profiles/Geeetech.json +++ b/resources/profiles/Geeetech.json @@ -1,6 +1,6 @@ { "name": "Geeetech", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Geeetech configurations", "machine_model_list": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 M 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 M 0.4 nozzle.json index 9887c05f936..6fd6849829a 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 M 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 M 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_025", + "setting_id": "aopa7gY8D0nHvg4f", "instantiation": "true", "printer_model": "Geeetech A10 M", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.2 nozzle.json index 06cafe210d0..6d0100301c1 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 Pro 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_021", + "setting_id": "KAcVvCaNu9EE30pd", "instantiation": "true", "printer_model": "Geeetech A10 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.4 nozzle.json index 1a76a83dabe..5c99ed6221a 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 Pro 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_022", + "setting_id": "OJpmV0kGTagK2i5S", "instantiation": "true", "printer_model": "Geeetech A10 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.6 nozzle.json index 7be70d85df6..dad0dd06b11 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 Pro 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_023", + "setting_id": "Q8A2JYBIymZoJWtl", "instantiation": "true", "printer_model": "Geeetech A10 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.8 nozzle.json index fda1b3e3ebb..ee95cb6ee9f 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 Pro 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_024", + "setting_id": "JKfflzox9NHHB7VB", "instantiation": "true", "printer_model": "Geeetech A10 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 T 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 T 0.4 nozzle.json index 46fb86c883e..048bea0cf7c 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 T 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 T 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 T 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_026", + "setting_id": "C7Y10mVPt2IFO7t1", "instantiation": "true", "printer_model": "Geeetech A10 T", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 0.2 nozzle.json index 37d1c02e5f5..f6be64133fc 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_027", + "setting_id": "XxAQSo972Y0l1iUg", "instantiation": "true", "printer_model": "Geeetech A20", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 0.4 nozzle.json index 97332f7e196..05da93dab7a 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_028", + "setting_id": "hd9whGPNVBk7NYWX", "instantiation": "true", "printer_model": "Geeetech A20", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 0.6 nozzle.json index b3b5800a303..d7ea800abec 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_029", + "setting_id": "sATayUQZW3PjFWZR", "instantiation": "true", "printer_model": "Geeetech A20", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 0.8 nozzle.json index 0cb69cd2f0f..2a32af9588b 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_030", + "setting_id": "8jPP9GGGoyRq5XWv", "instantiation": "true", "printer_model": "Geeetech A20", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 M 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 M 0.4 nozzle.json index 405feaebf99..f5ba521f487 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 M 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 M 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_031", + "setting_id": "bMMEwH5HswPZ38d1", "instantiation": "true", "printer_model": "Geeetech A20 M", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 T 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 T 0.4 nozzle.json index 3a36cd9daba..954c08785a3 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 T 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 T 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 T 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_032", + "setting_id": "1iUHXnnCVClqr16y", "instantiation": "true", "printer_model": "Geeetech A20 T", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 M 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 M 0.4 nozzle.json index b948daaf461..982b8534ace 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 M 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 M 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_037", + "setting_id": "14hZSmKYFjsnzB4h", "instantiation": "true", "printer_model": "Geeetech A30 M", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.2 nozzle.json index 45e83394fa8..d457a9734ce 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 Pro 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_033", + "setting_id": "xgv0XAgNsGRNgoF1", "instantiation": "true", "printer_model": "Geeetech A30 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.4 nozzle.json index 8b7e0b43bff..a846379f707 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 Pro 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_034", + "setting_id": "dlV49278pWNWopID", "instantiation": "true", "printer_model": "Geeetech A30 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.6 nozzle.json index 0f04a3195db..b7ff8a96db4 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 Pro 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_035", + "setting_id": "Vgv7HnLw7FvoYvWM", "instantiation": "true", "printer_model": "Geeetech A30 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.8 nozzle.json index 0b9834bd9bd..8743a78eb44 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 Pro 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_036", + "setting_id": "WPoGX3b9AuqqtNYU", "instantiation": "true", "printer_model": "Geeetech A30 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 T 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 T 0.4 nozzle.json index 68af2e48342..cb355662566 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 T 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 T 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 T 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_038", + "setting_id": "wZylOEjg5oFnqdRk", "instantiation": "true", "printer_model": "Geeetech A30 T", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech M1 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech M1 0.2 nozzle.json index 1ae5cb6cae4..832c3ef8fba 100644 --- a/resources/profiles/Geeetech/machine/Geeetech M1 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech M1 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_039", + "setting_id": "OV91mFVhJUjbtAnA", "instantiation": "true", "printer_model": "Geeetech M1", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech M1 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech M1 0.4 nozzle.json index ce46d185f56..8493bbdc3a7 100644 --- a/resources/profiles/Geeetech/machine/Geeetech M1 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech M1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech M1 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_040", + "setting_id": "DUmpynR40xf0g480", "instantiation": "true", "printer_model": "Geeetech M1", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech M1 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech M1 0.6 nozzle.json index e8ea5ccf8f6..b06e7ecdf6e 100644 --- a/resources/profiles/Geeetech/machine/Geeetech M1 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech M1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech M1 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_041", + "setting_id": "IBQJHDOZJemko6a0", "instantiation": "true", "printer_model": "Geeetech M1", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech M1 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech M1 0.8 nozzle.json index 4c61f65bbaf..89a206a3273 100644 --- a/resources/profiles/Geeetech/machine/Geeetech M1 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech M1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech M1 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_042", + "setting_id": "X32Nb2ZYiOOXsSXM", "instantiation": "true", "printer_model": "Geeetech M1", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.2 nozzle.json index b1bef844718..161dc60c4e2 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_005", + "setting_id": "OjTjIa678KTvfAmw", "instantiation": "true", "printer_model": "Geeetech Mizar", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.4 nozzle.json index 6290f9c453d..fc34b40a5f0 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_006", + "setting_id": "KgTtTFCWYRNgxr4s", "instantiation": "true", "printer_model": "Geeetech Mizar", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.6 nozzle.json index c4c201c1c65..b8ecc2dd07b 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_007", + "setting_id": "Boy40sguZELCcSYU", "instantiation": "true", "printer_model": "Geeetech Mizar", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.8 nozzle.json index b214ed5628f..62a81853fa7 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_008", + "setting_id": "kpqCTvVvrWSszRor", "instantiation": "true", "printer_model": "Geeetech Mizar", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar M 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar M 0.4 nozzle.json index 5889aaf5df8..59f39637a5c 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar M 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar M 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_021", + "setting_id": "PqM7ZlroG6etKd2R", "instantiation": "true", "printer_model": "Geeetech Mizar M", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.2 nozzle.json index c4d709c882e..9c728a0add0 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Max 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_017", + "setting_id": "1h9CYaulDN5YSWpN", "instantiation": "true", "printer_model": "Geeetech Mizar Max", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.4 nozzle.json index f09131c8a91..50ba23e728b 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Max 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_018", + "setting_id": "rs2JjIm6FIeGOpSH", "instantiation": "true", "printer_model": "Geeetech Mizar Max", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.6 nozzle.json index 358fabe132a..c5b339fe590 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Max 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_019", + "setting_id": "iVRcrHHKbV7k8UHq", "instantiation": "true", "printer_model": "Geeetech Mizar Max", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.8 nozzle.json index 1e0d43a50fa..d3fbe0192a1 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Max 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_020", + "setting_id": "cGWLPgJ0HuM2Y2Ci", "instantiation": "true", "printer_model": "Geeetech Mizar Max", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.2 nozzle.json index 14dbff7c1b4..873b6b7fcda 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Pro 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_013", + "setting_id": "QTZasD2D7lzljVZo", "instantiation": "true", "printer_model": "Geeetech Mizar Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.4 nozzle.json index 1b7c5fbb8d1..64c7e73b7f6 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Pro 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_014", + "setting_id": "9ZUwovRc1geEqeN3", "instantiation": "true", "printer_model": "Geeetech Mizar Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.6 nozzle.json index 560f92bcb87..6ef8ddfe0b4 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Pro 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_015", + "setting_id": "mK8o5qrnAzMJ0SDZ", "instantiation": "true", "printer_model": "Geeetech Mizar Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.8 nozzle.json index 35dd40cf4cd..32bce533182 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Pro 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_016", + "setting_id": "i2clRQbN6FcPUuEd", "instantiation": "true", "printer_model": "Geeetech Mizar Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.2 nozzle.json index 36e8b142307..9f9bbe71519 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar S 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_009", + "setting_id": "JWBcfgeMBVzXHm5I", "instantiation": "true", "printer_model": "Geeetech Mizar S", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.4 nozzle.json index 6a76a26f303..2f3f2a712d8 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar S 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_010", + "setting_id": "Xf47NtjAuBqgXCxI", "instantiation": "true", "printer_model": "Geeetech Mizar S", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.6 nozzle.json index d288753bfb9..3cc1e4aa6a8 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar S 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_011", + "setting_id": "8Nv5A5sELADxSoH5", "instantiation": "true", "printer_model": "Geeetech Mizar S", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.8 nozzle.json index 21bf9bc48ed..3c71160eb6e 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar S 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_012", + "setting_id": "zGPSdq8x3D5DQqhB", "instantiation": "true", "printer_model": "Geeetech Mizar S", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.2 nozzle.json index 207f74b86d2..35a3ada15b9 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Thunder 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_002", + "setting_id": "x7MXIqTu4NRlelRb", "instantiation": "true", "printer_model": "Geeetech Thunder", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.4 nozzle.json index 2fafdeabbe9..22bc7668e79 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Thunder 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_001", + "setting_id": "hOK6V2JjHn2UVFtd", "instantiation": "true", "printer_model": "Geeetech Thunder", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.6 nozzle.json index 06d41832594..20a3bba3405 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Thunder 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_003", + "setting_id": "0uHAQNJW9kimsunJ", "instantiation": "true", "printer_model": "Geeetech Thunder", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.8 nozzle.json index b268c654260..010095dfe21 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Thunder 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_004", + "setting_id": "byTGr8PXRrz0Yl22", "instantiation": "true", "printer_model": "Geeetech Thunder", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/process/0.06mm Fine @Geeetech common 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.06mm Fine @Geeetech common 0.2 nozzle.json index c2984ee9a2a..878f337c3d0 100644 --- a/resources/profiles/Geeetech/process/0.06mm Fine @Geeetech common 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.06mm Fine @Geeetech common 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Fine @Geeetech common 0.2 nozzle", "inherits": "fdm_process_geeetech_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_001", + "setting_id": "fj7nJMq8Beo60kq7", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.2 nozzle", diff --git a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech M1.json b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech M1.json index 4e232b667e0..92b60955f69 100644 --- a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech M1.json +++ b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech M1.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Geeetech M1", "inherits": "fdm_process_Geeetech_HS_0.08", "from": "system", - "setting_id": "GP_Geeetech_038", + "setting_id": "NaLK6UGsmP7nI9Qk", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech Thunder.json b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech Thunder.json index 1b5b1876f10..0c50e4f53a8 100644 --- a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech Thunder.json +++ b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech Thunder.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Geeetech Thunder", "inherits": "fdm_process_Geeetech_HS_0.08", "from": "system", - "setting_id": "GP_Geeetech_003", + "setting_id": "gp1Uol5H2NNxsPFX", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech common.json b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech common.json index cb4a4d2bbd6..ff1e2737444 100644 --- a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Geeetech common", "inherits": "fdm_process_geeetech_0.08", "from": "system", - "setting_id": "GP_Geeetech_002", + "setting_id": "1MPhaoeIPZn5O9Yr", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech M1 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech M1 0.2 nozzle.json index fb14bb7f842..a2661c0685d 100644 --- a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech M1 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal @Geeetech M1 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_039", + "setting_id": "LU6126ZnQZUqJCuQ", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech Thunder 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech Thunder 0.2 nozzle.json index 1282cd13a24..686dfdd4fa7 100644 --- a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech Thunder 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech Thunder 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal @Geeetech Thunder 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_005", + "setting_id": "zSaB97GyLOLna1et", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech common 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech common 0.2 nozzle.json index ee9e08235b1..3f2b2c5a15a 100644 --- a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech common 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech common 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal @Geeetech common 0.2 nozzle", "inherits": "fdm_process_geeetech_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_004", + "setting_id": "7BZA3ZFkPPAenzZJ", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.2 nozzle", diff --git a/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech M1.json b/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech M1.json index 44e07a87fb6..e26dce364d5 100644 --- a/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech M1.json +++ b/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech M1.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @Geeetech M1", "inherits": "fdm_process_Geeetech_HS_0.10", "from": "system", - "setting_id": "GP_Geeetech_040", + "setting_id": "5egeJWQ8ymyNiOS0", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech Thunder.json b/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech Thunder.json index 90549058042..ae6dd5476cb 100644 --- a/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech Thunder.json +++ b/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech Thunder.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @Geeetech Thunder", "inherits": "fdm_process_Geeetech_HS_0.10", "from": "system", - "setting_id": "GP_Geeetech_006", + "setting_id": "zYZamRYnERchCbE9", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech M1 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech M1 0.2 nozzle.json index 4136930fae3..3400d7afa0b 100644 --- a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech M1 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Geeetech M1 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_041", + "setting_id": "yTKioYDUjlaSalwZ", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech Thunder 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech Thunder 0.2 nozzle.json index 1c8c034cbdd..2da6cebf41d 100644 --- a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech Thunder 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech Thunder 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Geeetech Thunder 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_008", + "setting_id": "TtyXYNnMjlptZc05", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech common 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech common 0.2 nozzle.json index c81b215a0a3..5cd5e0d817a 100644 --- a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech common 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech common 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Geeetech common 0.2 nozzle", "inherits": "fdm_process_geeetech_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_007", + "setting_id": "8BwGhU9ArwWlJRrq", "instantiation": "true", "elefant_foot_compensation": "0.15", "compatible_printers": [ diff --git a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech M1 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech M1 0.2 nozzle.json index eee2f91cff7..bec6e319e52 100644 --- a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech M1 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft @Geeetech M1 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_042", + "setting_id": "xmuo1p8Qc2WLJfrF", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech Thunder 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech Thunder 0.2 nozzle.json index 281783aa6dd..3ee5563fd1f 100644 --- a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech Thunder 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech Thunder 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft @Geeetech Thunder 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_010", + "setting_id": "wxH4KvLM4AgLY55K", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech common 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech common 0.2 nozzle.json index 35d03438b14..3504ec2ad48 100644 --- a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech common 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech common 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft @Geeetech common 0.2 nozzle", "inherits": "fdm_process_geeetech_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_009", + "setting_id": "vzQ0twyVes1j0KvF", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.2 nozzle", diff --git a/resources/profiles/Geeetech/process/0.12mm Fine @Geeetech common.json b/resources/profiles/Geeetech/process/0.12mm Fine @Geeetech common.json index 432a2985096..b0b99e30606 100644 --- a/resources/profiles/Geeetech/process/0.12mm Fine @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.12mm Fine @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Geeetech common", "inherits": "fdm_process_geeetech_0.12", "from": "system", - "setting_id": "GP_Geeetech_011", + "setting_id": "DCHmMexqN9CUIzOH", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech M1 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech M1 0.2 nozzle.json index 66f24747f9f..d0f9d8e2fd1 100644 --- a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech M1 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft @Geeetech M1 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_043", + "setting_id": "WSo55dC3p0Da1W5D", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle.json index adcecf65ef7..ab8d7a033be 100644 --- a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_013", + "setting_id": "9s5WAidj0l7udJB9", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech common 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech common 0.2 nozzle.json index 782d11212c4..3509f5fdc38 100644 --- a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech common 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech common 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft @Geeetech common 0.2 nozzle", "inherits": "fdm_process_geeetech_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_012", + "setting_id": "RL651lgmpmhhBgK5", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.2 nozzle", diff --git a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech M1.json b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech M1.json index d9449baef96..82db1ac5220 100644 --- a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech M1.json +++ b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech M1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Geeetech M1", "inherits": "fdm_process_Geeetech_HS_0.16", "from": "system", - "setting_id": "GP_Geeetech_044", + "setting_id": "rqtgNFnnBYkPcc0e", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech Thunder.json b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech Thunder.json index 22cb82e01e1..ef55615afbe 100644 --- a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech Thunder.json +++ b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech Thunder.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Geeetech Thunder", "inherits": "fdm_process_Geeetech_HS_0.16", "from": "system", - "setting_id": "GP_Geeetech_015", + "setting_id": "QW9Fovxf237jeqvS", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech common.json b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech common.json index 6eb121cb9c3..6cf26a4edaf 100644 --- a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Geeetech common", "inherits": "fdm_process_geeetech_0.16", "from": "system", - "setting_id": "GP_Geeetech_014", + "setting_id": "MD7y5RFFIpuz2J5T", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.18mm Fine @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.18mm Fine @Geeetech common 0.6 nozzle.json index b4e7850e80f..039ed1c1d4c 100644 --- a/resources/profiles/Geeetech/process/0.18mm Fine @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.18mm Fine @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_016", + "setting_id": "a2zfSi1rzZrqtdSn", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.6 nozzle", diff --git a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech M1.json b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech M1.json index df21bcd0c2f..54a2ef4a10d 100644 --- a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech M1.json +++ b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech M1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Geeetech M1", "inherits": "fdm_process_Geeetech_HS_0.20", "from": "system", - "setting_id": "GP_Geeetech_046", + "setting_id": "hc7QEhbu0dKGXxO4", "instantiation": "true", "line_width": "0.40", "outer_wall_line_width": "0.40", diff --git a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech Thunder.json b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech Thunder.json index 017a9408980..9318a2f4f7a 100644 --- a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech Thunder.json +++ b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech Thunder.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Geeetech Thunder", "inherits": "fdm_process_Geeetech_HS_0.20", "from": "system", - "setting_id": "GP_Geeetech_018", + "setting_id": "LbbZZy7Mek5Zj75c", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech common.json b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech common.json index 6a3cb17d05d..d3b147b91fd 100644 --- a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Geeetech common", "inherits": "fdm_process_geeetech_0.20", "from": "system", - "setting_id": "GP_Geeetech_017", + "setting_id": "FAUiIEfWf5tHwkvt", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.20mm Strength @Geeetech common.json b/resources/profiles/Geeetech/process/0.20mm Strength @Geeetech common.json index 495b3a0b194..bb51b878a20 100644 --- a/resources/profiles/Geeetech/process/0.20mm Strength @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.20mm Strength @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.20mm Strength @Geeetech common", "inherits": "fdm_process_geeetech_0.20", "from": "system", - "setting_id": "GP_Geeetech_019", + "setting_id": "pUmli2ME3h4kTilQ", "instantiation": "true", "outer_wall_speed": "25", "sparse_infill_density": "25%", diff --git a/resources/profiles/Geeetech/process/0.24mm Draft @Geeetech common.json b/resources/profiles/Geeetech/process/0.24mm Draft @Geeetech common.json index 1233c990e64..4099caa1e47 100644 --- a/resources/profiles/Geeetech/process/0.24mm Draft @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.24mm Draft @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Geeetech common", "inherits": "fdm_process_geeetech_0.24", "from": "system", - "setting_id": "GP_Geeetech_020", + "setting_id": "5TpORjH7TwFfPTrG", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.24mm Fine @Geeetech common 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.24mm Fine @Geeetech common 0.8 nozzle.json index 593d773628c..604a5ecac4a 100644 --- a/resources/profiles/Geeetech/process/0.24mm Fine @Geeetech common 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.24mm Fine @Geeetech common 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine @Geeetech common 0.8 nozzle", "inherits": "fdm_process_geeetech_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_021", + "setting_id": "iwHQDV3U2llp3vzY", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.8 nozzle", diff --git a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech M1 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech M1 0.6 nozzle.json index 65f45da7a9c..ab304b4e36a 100644 --- a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech M1 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech M1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Geeetech M1 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_045", + "setting_id": "tO8DKxjoFp9qkGxc", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech Thunder 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech Thunder 0.6 nozzle.json index 14332fd04ba..71a3626a423 100644 --- a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech Thunder 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech Thunder 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Geeetech Thunder 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_023", + "setting_id": "m3SgitPjNHsB1f2r", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech common 0.6 nozzle.json index 1d232c640f5..b4c14f7055b 100644 --- a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_022", + "setting_id": "tIujZIJjTMwRmsbn", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.6 nozzle", diff --git a/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech M1.json b/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech M1.json index 8d563ec66ab..9977eecaf33 100644 --- a/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech M1.json +++ b/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech M1.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Geeetech M1", "inherits": "fdm_process_Geeetech_HS_0.25", "from": "system", - "setting_id": "GP_Geeetech_047", + "setting_id": "UlYQo4uJuEo2mYsD", "instantiation": "true", "line_width": "0.40", "outer_wall_line_width": "0.40", diff --git a/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech Thunder.json b/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech Thunder.json index e3ccdf67b1a..c18a3a8eedc 100644 --- a/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech Thunder.json +++ b/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech Thunder.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Geeetech Thunder", "inherits": "fdm_process_Geeetech_HS_0.25", "from": "system", - "setting_id": "GP_Geeetech_024", + "setting_id": "rZx2bMXMIj70jjlU", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.28mm Extra Draft @Geeetech common.json b/resources/profiles/Geeetech/process/0.28mm Extra Draft @Geeetech common.json index fe5811b8988..8e61bc1c558 100644 --- a/resources/profiles/Geeetech/process/0.28mm Extra Draft @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.28mm Extra Draft @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Geeetech common", "inherits": "fdm_process_geeetech_0.28", "from": "system", - "setting_id": "GP_Geeetech_025", + "setting_id": "flsrRhwKpNEQMjch", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech M1 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech M1 0.6 nozzle.json index e4e145a5e83..2093bc84fa3 100644 --- a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech M1 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech M1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Geeetech M1 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_048", + "setting_id": "r0yCFNbEdiV6uGeI", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech Thunder 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech Thunder 0.6 nozzle.json index b7637c3dc4a..83e96cd81c6 100644 --- a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech Thunder 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech Thunder 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Geeetech Thunder 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_027", + "setting_id": "eVjW0DNUMWsqV0fV", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech common 0.6 nozzle.json index 55d7713fa40..e4b5d345cc9 100644 --- a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_026", + "setting_id": "GmZ0axpYwkepgSuG", "instantiation": "true", "elefant_foot_compensation": "0.15", "compatible_printers": [ diff --git a/resources/profiles/Geeetech/process/0.30mm Strength @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.30mm Strength @Geeetech common 0.6 nozzle.json index 987ddf68943..008506764de 100644 --- a/resources/profiles/Geeetech/process/0.30mm Strength @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.30mm Strength @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_028", + "setting_id": "pq6q54Droc2vlNCq", "instantiation": "true", "wall_loops": "4", "sparse_infill_density": "25%", diff --git a/resources/profiles/Geeetech/process/0.32mm Optimal @Geeetech common 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.32mm Optimal @Geeetech common 0.8 nozzle.json index d2a27e72895..1330f44a9c1 100644 --- a/resources/profiles/Geeetech/process/0.32mm Optimal @Geeetech common 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.32mm Optimal @Geeetech common 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Geeetech common 0.8 nozzle", "inherits": "fdm_process_geeetech_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_029", + "setting_id": "tvTgGNKUD7Pyhew5", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.8 nozzle", diff --git a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech M1 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech M1 0.6 nozzle.json index 67c1f996a0d..c1982851912 100644 --- a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech M1 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech M1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Geeetech M1 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_049", + "setting_id": "7dLPmG2GiJcmnqlk", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech Thunder 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech Thunder 0.6 nozzle.json index 261d318f84f..137a634aea4 100644 --- a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech Thunder 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech Thunder 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Geeetech Thunder 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_031", + "setting_id": "YD2ptKncdCIqBqNQ", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech common 0.6 nozzle.json index 465354df954..8e2952e8583 100644 --- a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_030", + "setting_id": "K71Uw32oIj7UPbPH", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.6 nozzle", diff --git a/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech M1 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech M1 0.8 nozzle.json index f272a26ec27..48abce3b008 100644 --- a/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech M1 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech M1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Optimal @Geeetech M1 0.8 nozzle", "inherits": "fdm_process_Geeetech_HS_0.36_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_050", + "setting_id": "mcwDI7oc0HOIUaiI", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech Thunder 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech Thunder 0.8 nozzle.json index 529a6253853..44650ef1141 100644 --- a/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech Thunder 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech Thunder 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Optimal @Geeetech Thunder 0.8 nozzle", "inherits": "fdm_process_Geeetech_HS_0.36_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_032", + "setting_id": "vahGH49uW93BAABu", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.40mm Standard @Geeetech common 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.40mm Standard @Geeetech common 0.8 nozzle.json index 62e265339ce..889372119f9 100644 --- a/resources/profiles/Geeetech/process/0.40mm Standard @Geeetech common 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.40mm Standard @Geeetech common 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Geeetech common 0.8 nozzle", "inherits": "fdm_process_geeetech_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_033", + "setting_id": "wUcv6T33q7BHi6Qu", "instantiation": "true", "elefant_foot_compensation": "0.15", "compatible_printers": [ diff --git a/resources/profiles/Geeetech/process/0.42mm Extra Draft @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.42mm Extra Draft @Geeetech common 0.6 nozzle.json index 3f1c89a7ceb..beba0ec3670 100644 --- a/resources/profiles/Geeetech/process/0.42mm Extra Draft @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.42mm Extra Draft @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_034", + "setting_id": "kftQJ545l3lT5v3U", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.6 nozzle", diff --git a/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech M1 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech M1 0.8 nozzle.json index 6a6ccffa434..db7454eb109 100644 --- a/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech M1 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech M1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.44mm Draft @Geeetech M1 0.8 nozzle", "inherits": "fdm_process_Geeetech_HS_0.44_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_051", + "setting_id": "ekh9y1YlDb705tRt", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech Thunder 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech Thunder 0.8 nozzle.json index 4c19fc78447..15d8ba3940e 100644 --- a/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech Thunder 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech Thunder 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.44mm Draft @Geeetech Thunder 0.8 nozzle", "inherits": "fdm_process_Geeetech_HS_0.44_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_035", + "setting_id": "gCkw7KEvUTkCvdtV", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.48mm Draft @Geeetech common 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.48mm Draft @Geeetech common 0.8 nozzle.json index 5e807339e4f..2e8097871ea 100644 --- a/resources/profiles/Geeetech/process/0.48mm Draft @Geeetech common 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.48mm Draft @Geeetech common 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Geeetech common 0.8 nozzle", "inherits": "fdm_process_geeetech_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_036", + "setting_id": "Chzhvn6bHi5HjUJs", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.8 nozzle", diff --git a/resources/profiles/Geeetech/process/0.56mm Extra Draft @Geeetech common 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.56mm Extra Draft @Geeetech common 0.8 nozzle.json index 8309a5b5da8..c6d917875e2 100644 --- a/resources/profiles/Geeetech/process/0.56mm Extra Draft @Geeetech common 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.56mm Extra Draft @Geeetech common 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft @Geeetech common 0.8 nozzle", "inherits": "fdm_process_geeetech_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_037", + "setting_id": "iYCfOISMf21rpxvu", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.8 nozzle", diff --git a/resources/profiles/Ginger Additive.json b/resources/profiles/Ginger Additive.json index b27cf4a94c4..6ca48c71ece 100644 --- a/resources/profiles/Ginger Additive.json +++ b/resources/profiles/Ginger Additive.json @@ -1,6 +1,6 @@ { "name": "Ginger Additive", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "1", "description": "Ginger configuration", "machine_model_list": [ diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json b/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json index 8e9a78329fe..e47738f33a5 100644 --- a/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json +++ b/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json @@ -3,6 +3,7 @@ "name": "Ginger Generic PETG", "inherits": "fdm_filament_common", "from": "system", + "setting_id": "ue95N2e65rdp5K6c", "instantiation": "true", "filament_vendor": [ "Generic" diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json b/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json index e759ec1cdbd..4f063960865 100644 --- a/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json +++ b/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json @@ -3,6 +3,7 @@ "name": "Ginger Generic PLA", "inherits": "fdm_filament_common", "from": "system", + "setting_id": "Z1scjKDBFoDaTa2C", "instantiation": "true", "filament_vendor": [ "Generic" diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json index 9d108c4eea4..0d5f4e13195 100644 --- a/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json @@ -3,6 +3,7 @@ "name": "Ginger G1 1.2 nozzle", "renamed_from": "ginger G1 1.2 nozzle", "inherits": "Ginger_G1_common", + "setting_id": "XkyfjrZzk0nWQkog", "instantiation": "true", "printer_settings_id": "Ginger G1 1.2 nozzle", "max_layer_height": [ diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json index ef00e7c2f6a..75e99fe413f 100644 --- a/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json @@ -3,6 +3,7 @@ "name": "Ginger G1 3.0 nozzle", "renamed_from": "ginger G1 3.0 nozzle", "inherits": "Ginger_G1_common", + "setting_id": "dhUNr6odQIkoPSr5", "instantiation": "true", "printer_settings_id": "Ginger G1 3.0 nozzle", "max_layer_height": [ diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json index 446b35c55b8..bca5864028a 100644 --- a/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json @@ -3,6 +3,7 @@ "name": "Ginger G1 5.0 nozzle", "renamed_from": "ginger G1 5.0 nozzle", "inherits": "Ginger_G1_common", + "setting_id": "zexhNldsr0gASsVT", "instantiation": "true", "printer_settings_id": "Ginger G1 5.0 nozzle", "max_layer_height": [ diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json index 70d8e484585..abf41daf4e5 100644 --- a/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json @@ -3,6 +3,7 @@ "name": "Ginger G1 8.0 nozzle", "renamed_from": "ginger G1 8.0 nozzle", "inherits": "Ginger_G1_common", + "setting_id": "AcgyffYDZivYtKFi", "instantiation": "true", "printer_settings_id": "Ginger G1 8.0 nozzle", "max_layer_height": [ diff --git a/resources/profiles/Ginger Additive/process/0.60mm Standard.json b/resources/profiles/Ginger Additive/process/0.60mm Standard.json index 33a2b4bce9a..a04b50481c7 100644 --- a/resources/profiles/Ginger Additive/process/0.60mm Standard.json +++ b/resources/profiles/Ginger Additive/process/0.60mm Standard.json @@ -3,6 +3,7 @@ "name": "0.60mm Standard", "inherits": "fdm_process_common", "from": "User", + "setting_id": "DjZUwrFvdniWLKLX", "instantiation": "true", "accel_to_decel_enable": "0", "bottom_shell_layers": "0", diff --git a/resources/profiles/Ginger Additive/process/1.50mm Standard.json b/resources/profiles/Ginger Additive/process/1.50mm Standard.json index 307e510bda6..0f13fa4221c 100644 --- a/resources/profiles/Ginger Additive/process/1.50mm Standard.json +++ b/resources/profiles/Ginger Additive/process/1.50mm Standard.json @@ -3,6 +3,7 @@ "name": "1.50mm Standard", "inherits": "fdm_process_common", "from": "User", + "setting_id": "dgDdnVOmSOYGK6Az", "instantiation": "true", "accel_to_decel_enable": "0", "bottom_solid_infill_flow_ratio": "1", diff --git a/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json b/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json index 72f5e6a38e6..dbc32b030e4 100644 --- a/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json +++ b/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json @@ -3,6 +3,7 @@ "name": "1.80mm Vasemode", "inherits": "fdm_process_common", "from": "User", + "setting_id": "J6eZDCuu5egRTMlY", "instantiation": "true", "accel_to_decel_enable": "0", "bottom_solid_infill_flow_ratio": "1", diff --git a/resources/profiles/Ginger Additive/process/2.50mm Standard.json b/resources/profiles/Ginger Additive/process/2.50mm Standard.json index 1c253411aad..5b0aacb0495 100644 --- a/resources/profiles/Ginger Additive/process/2.50mm Standard.json +++ b/resources/profiles/Ginger Additive/process/2.50mm Standard.json @@ -3,6 +3,7 @@ "name": "2.50mm Standard", "inherits": "fdm_process_common", "from": "User", + "setting_id": "s1uGrnaX5CkNC1b6", "instantiation": "true", "accel_to_decel_enable": "0", "bottom_solid_infill_flow_ratio": "1", diff --git a/resources/profiles/Ginger Additive/process/4.00mm Standard.json b/resources/profiles/Ginger Additive/process/4.00mm Standard.json index b85b39b2ca2..e6c8e8267f2 100644 --- a/resources/profiles/Ginger Additive/process/4.00mm Standard.json +++ b/resources/profiles/Ginger Additive/process/4.00mm Standard.json @@ -3,6 +3,7 @@ "name": "4.00mm Standard", "inherits": "fdm_process_common", "from": "User", + "setting_id": "iDovRylIX6ufYedC", "instantiation": "true", "accel_to_decel_enable": "0", "brim_type": "outer_only", diff --git a/resources/profiles/InfiMech.json b/resources/profiles/InfiMech.json index 8df27776d75..7ae4c46fb4e 100644 --- a/resources/profiles/InfiMech.json +++ b/resources/profiles/InfiMech.json @@ -1,6 +1,6 @@ { "name": "InfiMech", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "1", "description": "InfiMech configurations", "machine_model_list": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech ABS @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech ABS @EX+APS.json index 32a7ef27bb9..ab07650434b 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech ABS @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech ABS @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech ABS @EX+APS", "inherits": "fdm_filament_abs @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3EdHfL9KE4oRVHB7", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PA-CF @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PA-CF @EX+APS.json index 7b0679e25fc..0173f7ee054 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PA-CF @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PA-CF @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech PA-CF @EX+APS", "inherits": "fdm_filament_pa @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6YMXdKicP2hGUUJn", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PC @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PC @EX+APS.json index 7b4d0b9aea8..c68955287b3 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PC @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PC @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech PC @EX+APS", "inherits": "fdm_filament_pc @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GsYpyooWb6ymAb36", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PETG @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PETG @EX+APS.json index d8d1db53d02..39d510f085b 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PETG @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PETG @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech PETG @EX+APS", "inherits": "fdm_filament_pet @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sNsRp3vHhcWAxp7d", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Basic @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Basic @EX+APS.json index 5487b7a746a..8d715771b99 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Basic @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Basic @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Basic @EX+APS", "inherits": "fdm_filament_pla @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UTrjyqqetOSYNZxJ", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Hyper @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Hyper @EX+APS.json index 801d26eb986..cbc94cceddf 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Hyper @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Hyper @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Hyper @EX+APS", "inherits": "fdm_filament_pla_Hyper @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "p08bW50lbzMjwL5B", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech TPU Basic @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech TPU Basic @EX+APS.json index 3ea2992a399..9632d002fb0 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech TPU Basic @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech TPU Basic @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech TPU Basic @EX+APS", "inherits": "fdm_filament_tpu @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fy9sPlaVkaXHBxbH", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech ABS @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech ABS @EX.json index b2abe19afcc..05b1f4e0175 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech ABS @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech ABS @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech ABS @EX", "inherits": "fdm_filament_abs @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e6st01mMFr98LVEH", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech PA-CF @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech PA-CF @EX.json index 09428fad050..3042fe20f84 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech PA-CF @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech PA-CF @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech PA-CF @EX", "inherits": "fdm_filament_pa @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qPCd5oTrCmZi63Ng", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech PC @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech PC @EX.json index 9d53ca348fc..b1c46585e08 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech PC @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech PC @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech PC @EX", "inherits": "fdm_filament_pc @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Uc2o223YSyShp7EI", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech PETG @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech PETG @EX.json index 031ed0818b4..47172fa13a2 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech PETG @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech PETG @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech PETG @EX", "inherits": "fdm_filament_pet @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5vqLJrKLKv40sT7y", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech PLA Basic @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech PLA Basic @EX.json index f25c8675783..071d0eb53cc 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech PLA Basic @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech PLA Basic @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Basic @EX", "inherits": "fdm_filament_pla @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bGOpriWvEFZOmqR4", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech PLA Hyper @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech PLA Hyper @EX.json index 90a3b94c1ac..1fab11094eb 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech PLA Hyper @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech PLA Hyper @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Hyper @EX", "inherits": "fdm_filament_pla_Hyper @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "y8A92Dw8EMplnZAM", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech TPU Basic @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech TPU Basic @EX.json index 66562942852..b72767fc585 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech TPU Basic @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech TPU Basic @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech TPU Basic @EX", "inherits": "fdm_filament_tpu @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vAMeXNwHNVMKYWz3", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech ABS @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech ABS @HSN.json index 075b6bf0037..202565b8194 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech ABS @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech ABS @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech ABS @HSN", "inherits": "fdm_filament_abs @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QnEhnvxibr6g1nou", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech PA-CF @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech PA-CF @HSN.json index d0602ff91b4..3f6524b54ca 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech PA-CF @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech PA-CF @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech PA-CF @HSN", "inherits": "fdm_filament_pa @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L1j3mDKXjE2RKO1B", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech PC @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech PC @HSN.json index 9eb1d2f8919..35a3314a905 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech PC @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech PC @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech PC @HSN", "inherits": "fdm_filament_pc @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HBNOABPFLninXsW6", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech PETG @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech PETG @HSN.json index 6a59dfe3d3f..1997c1b3753 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech PETG @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech PETG @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech PETG @HSN", "inherits": "fdm_filament_pet @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DJyFBjQ5n9n1UHv0", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech PLA @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech PLA @HSN.json index a39f79f4f41..f3118fe1d65 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech PLA @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech PLA @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA @HSN", "inherits": "fdm_filament_pla @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NWKMG5q4ITfHcYOD", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech PLA Hyper @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech PLA Hyper @HSN.json index 6e1ff9429ab..a7988eaa701 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech PLA Hyper @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech PLA Hyper @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Hyper @HSN", "inherits": "fdm_filament_pla_Hyper @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fAw5pB53L8ZT1Fkm", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech TPU @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech TPU @HSN.json index a0d73cb0703..098ed99ae0f 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech TPU @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech TPU @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech TPU @HSN", "inherits": "fdm_filament_tpu @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CvTHZpKuTaGS186F", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other ABS @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other ABS @HSN.json index 9380bf810bd..c7b6451fab9 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other ABS @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other ABS @HSN.json @@ -3,7 +3,7 @@ "name": "Other ABS @HSN", "inherits": "fdm_filament_abs_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IuZcFrVQ2rJoMDLP", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other PA-CF @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other PA-CF @HSN.json index 12f9d9d3ee1..fe5f2097d5f 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other PA-CF @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other PA-CF @HSN.json @@ -3,7 +3,7 @@ "name": "Other PA-CF @HSN", "inherits": "fdm_filament_pa_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4I0FW5meyC53Xf8n", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other PC @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other PC @HSN.json index 3eff7782068..e87712a2783 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other PC @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other PC @HSN.json @@ -3,7 +3,7 @@ "name": "Other PC @HSN", "inherits": "fdm_filament_pc_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vUuSuioOUXsg2P3p", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other PETG @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other PETG @HSN.json index b2f04320672..0a4f102aa38 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other PETG @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other PETG @HSN.json @@ -3,7 +3,7 @@ "name": "Other PETG @HSN", "inherits": "fdm_filament_pet_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lWYq9XssEyY3uWEe", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other PLA @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other PLA @HSN.json index 125354e1d43..c775f37bfc7 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other PLA @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other PLA @HSN.json @@ -3,7 +3,7 @@ "name": "Other PLA @HSN", "inherits": "fdm_filament_pla_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wOExDniXvR7CcF1w", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other PLA Hyper @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other PLA Hyper @HSN.json index 808cbc971c0..b3cc531849c 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other PLA Hyper @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other PLA Hyper @HSN.json @@ -3,7 +3,7 @@ "name": "Other PLA Hyper @HSN", "inherits": "fdm_filament_pla_Hyper_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "154azDg7YNNWCkNK", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other TPU @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other TPU @HSN.json index e2694a182af..adbf1cc254f 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other TPU @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other TPU @HSN.json @@ -3,7 +3,7 @@ "name": "Other TPU @HSN", "inherits": "fdm_filament_tpu_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0bU2fl92vCQobYnt", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic ABS.json b/resources/profiles/InfiMech/filament/InfiMech Generic ABS.json index 523d081eb3c..688f43673d4 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic ABS.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic ABS.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gtJ2ZoV8fxqqOXuv", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic PA-CF.json b/resources/profiles/InfiMech/filament/InfiMech Generic PA-CF.json index 7750ed8987b..74be5839571 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic PA-CF.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "k2NSIB3vVUoXGW9F", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic PC.json b/resources/profiles/InfiMech/filament/InfiMech Generic PC.json index 1c2fd28d78d..2d2223271c8 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic PC.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic PC.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "emj9YLXtmKmeoYJa", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic PETG.json b/resources/profiles/InfiMech/filament/InfiMech Generic PETG.json index 8af239c7477..4837c0eb9e9 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic PETG.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic PETG.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rhXq50q3u2YxNRcE", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic PLA.json b/resources/profiles/InfiMech/filament/InfiMech Generic PLA.json index 427e16f8dbc..0fa96a3fcae 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic PLA.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic PLA.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BHNIPk7Nbl7hXZY1", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic TPU.json b/resources/profiles/InfiMech/filament/InfiMech Generic TPU.json index 1dda222ac4e..f942042dfda 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic TPU.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic TPU.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pHS9IcwvsPCnkpaO", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech PLA Hyper.json b/resources/profiles/InfiMech/filament/InfiMech PLA Hyper.json index e27953a4d46..dee081317f7 100644 --- a/resources/profiles/InfiMech/filament/InfiMech PLA Hyper.json +++ b/resources/profiles/InfiMech/filament/InfiMech PLA Hyper.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Hyper", "inherits": "fdm_filament_pla_Hyper", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j86QMTif4fGujRbg", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/Other ABS.json b/resources/profiles/InfiMech/filament/Other ABS.json index b8bbb05171a..a120f2dda66 100644 --- a/resources/profiles/InfiMech/filament/Other ABS.json +++ b/resources/profiles/InfiMech/filament/Other ABS.json @@ -3,7 +3,7 @@ "name": "Other ABS", "inherits": "fdm_filament_abs_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nDLB3RZq23limiBn", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/Other PA-CF.json b/resources/profiles/InfiMech/filament/Other PA-CF.json index c55bffe5c4c..1829ec16bb8 100644 --- a/resources/profiles/InfiMech/filament/Other PA-CF.json +++ b/resources/profiles/InfiMech/filament/Other PA-CF.json @@ -3,7 +3,7 @@ "name": "Other PA-CF", "inherits": "fdm_filament_pa_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rgz4LjU9KyvbLhRQ", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/Other PC.json b/resources/profiles/InfiMech/filament/Other PC.json index 83558b2eb5b..dda6d2def74 100644 --- a/resources/profiles/InfiMech/filament/Other PC.json +++ b/resources/profiles/InfiMech/filament/Other PC.json @@ -3,7 +3,7 @@ "name": "Other PC", "inherits": "fdm_filament_pc_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VXkW5oukQdBX6B6T", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/Other PETG.json b/resources/profiles/InfiMech/filament/Other PETG.json index ee869fe5858..552e3e4fe7d 100644 --- a/resources/profiles/InfiMech/filament/Other PETG.json +++ b/resources/profiles/InfiMech/filament/Other PETG.json @@ -3,7 +3,7 @@ "name": "Other PETG", "inherits": "fdm_filament_pet_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "onLEWi8GYK0avard", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/Other PLA Hyper.json b/resources/profiles/InfiMech/filament/Other PLA Hyper.json index afa08fc4a28..4d1aa6c7429 100644 --- a/resources/profiles/InfiMech/filament/Other PLA Hyper.json +++ b/resources/profiles/InfiMech/filament/Other PLA Hyper.json @@ -3,7 +3,7 @@ "name": "Other PLA Hyper", "inherits": "fdm_filament_pla_Hyper_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Iop52BLp5ou8u4QG", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/Other PLA.json b/resources/profiles/InfiMech/filament/Other PLA.json index 1097ca85baa..aa1fa0a091e 100644 --- a/resources/profiles/InfiMech/filament/Other PLA.json +++ b/resources/profiles/InfiMech/filament/Other PLA.json @@ -3,7 +3,7 @@ "name": "Other PLA", "inherits": "fdm_filament_pla_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2Bl4sfgGJBjNMk37", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/Other TPU.json b/resources/profiles/InfiMech/filament/Other TPU.json index f73e56e7d4c..edbee9b8878 100644 --- a/resources/profiles/InfiMech/filament/Other TPU.json +++ b/resources/profiles/InfiMech/filament/Other TPU.json @@ -3,7 +3,7 @@ "name": "Other TPU", "inherits": "fdm_filament_tpu_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nqDc2q94Q2hwMi7B", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS 0.4 nozzle.json b/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS 0.4 nozzle.json index 6f61f93d2d9..149177562fb 100644 --- a/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS 0.4 nozzle.json +++ b/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "InfiMech EX+APS 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "v2iV5IUj5vAgHG4m", "instantiation": "true", "printer_model": "InfiMech EX+APS", "auxiliary_fan": "1", diff --git a/resources/profiles/InfiMech/machine/EX/InfiMech EX 0.4 nozzle.json b/resources/profiles/InfiMech/machine/EX/InfiMech EX 0.4 nozzle.json index 2e874b79d3c..2bf51ab6273 100644 --- a/resources/profiles/InfiMech/machine/EX/InfiMech EX 0.4 nozzle.json +++ b/resources/profiles/InfiMech/machine/EX/InfiMech EX 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "InfiMech EX 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "TBhac3KY549FaS4b", "instantiation": "true", "printer_model": "InfiMech EX", "auxiliary_fan": "1", diff --git a/resources/profiles/InfiMech/machine/HSN/InfiMech TX HSN 0.4 nozzle.json b/resources/profiles/InfiMech/machine/HSN/InfiMech TX HSN 0.4 nozzle.json index 5f5a1f10826..6cf6dde7525 100644 --- a/resources/profiles/InfiMech/machine/HSN/InfiMech TX HSN 0.4 nozzle.json +++ b/resources/profiles/InfiMech/machine/HSN/InfiMech TX HSN 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "InfiMech TX HSN 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "2pj2vUp9hYszVX7V", "instantiation": "true", "printer_model": "InfiMech TX Hardened Steel Nozzle", "nozzle_diameter": [ diff --git a/resources/profiles/InfiMech/machine/InfiMech TX 0.4 nozzle.json b/resources/profiles/InfiMech/machine/InfiMech TX 0.4 nozzle.json index 59387e4fe22..a8a419be618 100644 --- a/resources/profiles/InfiMech/machine/InfiMech TX 0.4 nozzle.json +++ b/resources/profiles/InfiMech/machine/InfiMech TX 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "InfiMech TX 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "1WqMGhjlF5v3sjBZ", "instantiation": "true", "printer_model": "InfiMech TX", "nozzle_diameter": [ diff --git a/resources/profiles/InfiMech/process/0.08mm Extra Fine @InfiMech TX.json b/resources/profiles/InfiMech/process/0.08mm Extra Fine @InfiMech TX.json index 86f73537a5d..23851a5b4ba 100644 --- a/resources/profiles/InfiMech/process/0.08mm Extra Fine @InfiMech TX.json +++ b/resources/profiles/InfiMech/process/0.08mm Extra Fine @InfiMech TX.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @InfiMech TX", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ic9slTaW3rLhRub7", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/InfiMech/process/0.12mm Fine @InfiMech TX.json b/resources/profiles/InfiMech/process/0.12mm Fine @InfiMech TX.json index 8cc75d66900..928d20ca277 100644 --- a/resources/profiles/InfiMech/process/0.12mm Fine @InfiMech TX.json +++ b/resources/profiles/InfiMech/process/0.12mm Fine @InfiMech TX.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @InfiMech TX", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "uxrcoAGs9bVdipGp", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/InfiMech/process/0.16mm Optimal @InfiMech TX.json b/resources/profiles/InfiMech/process/0.16mm Optimal @InfiMech TX.json index 165ce6b49ce..c3fb83348f7 100644 --- a/resources/profiles/InfiMech/process/0.16mm Optimal @InfiMech TX.json +++ b/resources/profiles/InfiMech/process/0.16mm Optimal @InfiMech TX.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @InfiMech TX", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP005", + "setting_id": "vI2nEncZzKIGjENk", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/0.20mm Standard @InfiMech TX.json b/resources/profiles/InfiMech/process/0.20mm Standard @InfiMech TX.json index b33db979463..0c5866b4297 100644 --- a/resources/profiles/InfiMech/process/0.20mm Standard @InfiMech TX.json +++ b/resources/profiles/InfiMech/process/0.20mm Standard @InfiMech TX.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @InfiMech TX", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MdPs0tFtMqPPDrQm", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/0.24mm Draft @InfiMech TX.json b/resources/profiles/InfiMech/process/0.24mm Draft @InfiMech TX.json index 67f83beecfc..2be875e76b9 100644 --- a/resources/profiles/InfiMech/process/0.24mm Draft @InfiMech TX.json +++ b/resources/profiles/InfiMech/process/0.24mm Draft @InfiMech TX.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @InfiMech TX", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JGkiYAwTWxn8PRc4", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/EX+APS/0.08mm Extra Fine @InfiMech EX+APS.json b/resources/profiles/InfiMech/process/EX+APS/0.08mm Extra Fine @InfiMech EX+APS.json index 10223e14871..751c5d1e331 100644 --- a/resources/profiles/InfiMech/process/EX+APS/0.08mm Extra Fine @InfiMech EX+APS.json +++ b/resources/profiles/InfiMech/process/EX+APS/0.08mm Extra Fine @InfiMech EX+APS.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @InfiMech EX+APS", "inherits": "fdm_process_common_EX+APS", "from": "system", - "setting_id": "GP004", + "setting_id": "Yk7YmXpq1uYqUhab", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/InfiMech/process/EX+APS/0.12mm Fine @InfiMech EX+APS.json b/resources/profiles/InfiMech/process/EX+APS/0.12mm Fine @InfiMech EX+APS.json index 26af0bdd8c5..9377f3fbaf9 100644 --- a/resources/profiles/InfiMech/process/EX+APS/0.12mm Fine @InfiMech EX+APS.json +++ b/resources/profiles/InfiMech/process/EX+APS/0.12mm Fine @InfiMech EX+APS.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @InfiMech EX+APS", "inherits": "fdm_process_common_EX+APS", "from": "system", - "setting_id": "GP004", + "setting_id": "psgRIR1JNT5btIOU", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/InfiMech/process/EX+APS/0.16mm Optimal @InfiMech EX+APS.json b/resources/profiles/InfiMech/process/EX+APS/0.16mm Optimal @InfiMech EX+APS.json index 6d8dcde9a90..783db122a4e 100644 --- a/resources/profiles/InfiMech/process/EX+APS/0.16mm Optimal @InfiMech EX+APS.json +++ b/resources/profiles/InfiMech/process/EX+APS/0.16mm Optimal @InfiMech EX+APS.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @InfiMech EX+APS", "inherits": "fdm_process_common_EX+APS", "from": "system", - "setting_id": "GP005", + "setting_id": "2d4xi9oMyBdvUQ7x", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/EX+APS/0.20mm Standard @InfiMech EX+APS.json b/resources/profiles/InfiMech/process/EX+APS/0.20mm Standard @InfiMech EX+APS.json index 2d1f574254a..df6dddd3605 100644 --- a/resources/profiles/InfiMech/process/EX+APS/0.20mm Standard @InfiMech EX+APS.json +++ b/resources/profiles/InfiMech/process/EX+APS/0.20mm Standard @InfiMech EX+APS.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @InfiMech EX+APS", "inherits": "fdm_process_common_EX+APS", "from": "system", - "setting_id": "GP004", + "setting_id": "bmQfzjvJVFT6Uu8i", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "0", diff --git a/resources/profiles/InfiMech/process/EX+APS/0.24mm Draft @InfiMech EX+APS.json b/resources/profiles/InfiMech/process/EX+APS/0.24mm Draft @InfiMech EX+APS.json index 3f0ff4af79a..896b777e14d 100644 --- a/resources/profiles/InfiMech/process/EX+APS/0.24mm Draft @InfiMech EX+APS.json +++ b/resources/profiles/InfiMech/process/EX+APS/0.24mm Draft @InfiMech EX+APS.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @InfiMech EX+APS", "inherits": "fdm_process_common_EX+APS", "from": "system", - "setting_id": "GP004", + "setting_id": "DVI9tXz54QGawSh0", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/EX/0.08mm Extra Fine @InfiMech EX.json b/resources/profiles/InfiMech/process/EX/0.08mm Extra Fine @InfiMech EX.json index 772967acf92..2a5c5dce992 100644 --- a/resources/profiles/InfiMech/process/EX/0.08mm Extra Fine @InfiMech EX.json +++ b/resources/profiles/InfiMech/process/EX/0.08mm Extra Fine @InfiMech EX.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @InfiMech EX", "inherits": "fdm_process_common_EX", "from": "system", - "setting_id": "GP004", + "setting_id": "2GzaC1bnTxIjUURE", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/InfiMech/process/EX/0.12mm Fine @InfiMech EX.json b/resources/profiles/InfiMech/process/EX/0.12mm Fine @InfiMech EX.json index f712214bcdc..3d8a15191a4 100644 --- a/resources/profiles/InfiMech/process/EX/0.12mm Fine @InfiMech EX.json +++ b/resources/profiles/InfiMech/process/EX/0.12mm Fine @InfiMech EX.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @InfiMech EX", "inherits": "fdm_process_common_EX", "from": "system", - "setting_id": "GP004", + "setting_id": "u05lUe2jjJo6AWUd", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/InfiMech/process/EX/0.16mm Optimal @InfiMech EX.json b/resources/profiles/InfiMech/process/EX/0.16mm Optimal @InfiMech EX.json index dfcf16a79f1..d95e84cedc0 100644 --- a/resources/profiles/InfiMech/process/EX/0.16mm Optimal @InfiMech EX.json +++ b/resources/profiles/InfiMech/process/EX/0.16mm Optimal @InfiMech EX.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @InfiMech EX", "inherits": "fdm_process_common_EX", "from": "system", - "setting_id": "GP005", + "setting_id": "2QMczcvFGi3AM0Jv", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/EX/0.20mm Standard @InfiMech EX.json b/resources/profiles/InfiMech/process/EX/0.20mm Standard @InfiMech EX.json index 891cbac77f1..00c2a2aadbc 100644 --- a/resources/profiles/InfiMech/process/EX/0.20mm Standard @InfiMech EX.json +++ b/resources/profiles/InfiMech/process/EX/0.20mm Standard @InfiMech EX.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @InfiMech EX", "inherits": "fdm_process_common_EX", "from": "system", - "setting_id": "GP004", + "setting_id": "bOAFWauAWvxn5Aj8", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "0", diff --git a/resources/profiles/InfiMech/process/EX/0.24mm Draft @InfiMech EX.json b/resources/profiles/InfiMech/process/EX/0.24mm Draft @InfiMech EX.json index 32d7dec91fa..ae7a814e2e5 100644 --- a/resources/profiles/InfiMech/process/EX/0.24mm Draft @InfiMech EX.json +++ b/resources/profiles/InfiMech/process/EX/0.24mm Draft @InfiMech EX.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @InfiMech EX", "inherits": "fdm_process_common_EX", "from": "system", - "setting_id": "GP004", + "setting_id": "nfn0CFpmsl3yuBXG", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/HSN/0.08mm Extra Fine @InfiMech TX HSN.json b/resources/profiles/InfiMech/process/HSN/0.08mm Extra Fine @InfiMech TX HSN.json index 403ad7fdd8d..239b1a35564 100644 --- a/resources/profiles/InfiMech/process/HSN/0.08mm Extra Fine @InfiMech TX HSN.json +++ b/resources/profiles/InfiMech/process/HSN/0.08mm Extra Fine @InfiMech TX HSN.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @InfiMech TX HSN", "inherits": "fdm_process_common_HSN", "from": "system", - "setting_id": "GP004", + "setting_id": "7q3pv13ASbe2Iad0", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/InfiMech/process/HSN/0.12mm Fine @InfiMech TX HSN.json b/resources/profiles/InfiMech/process/HSN/0.12mm Fine @InfiMech TX HSN.json index f6c5ead8f7f..764fc676a08 100644 --- a/resources/profiles/InfiMech/process/HSN/0.12mm Fine @InfiMech TX HSN.json +++ b/resources/profiles/InfiMech/process/HSN/0.12mm Fine @InfiMech TX HSN.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @InfiMech TX HSN", "inherits": "fdm_process_common_HSN", "from": "system", - "setting_id": "GP004", + "setting_id": "2ZdoZtUnCdDmnLwu", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/InfiMech/process/HSN/0.16mm Optimal @InfiMech TX HSN.json b/resources/profiles/InfiMech/process/HSN/0.16mm Optimal @InfiMech TX HSN.json index ef998119a69..546464ce492 100644 --- a/resources/profiles/InfiMech/process/HSN/0.16mm Optimal @InfiMech TX HSN.json +++ b/resources/profiles/InfiMech/process/HSN/0.16mm Optimal @InfiMech TX HSN.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @InfiMech TX HSN", "inherits": "fdm_process_common_HSN", "from": "system", - "setting_id": "GP005", + "setting_id": "CvcMTqcs64jEvpTU", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/HSN/0.20mm Standard @InfiMech TX HSN.json b/resources/profiles/InfiMech/process/HSN/0.20mm Standard @InfiMech TX HSN.json index 32366a7e54e..04b8b4c3dd6 100644 --- a/resources/profiles/InfiMech/process/HSN/0.20mm Standard @InfiMech TX HSN.json +++ b/resources/profiles/InfiMech/process/HSN/0.20mm Standard @InfiMech TX HSN.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @InfiMech TX HSN", "inherits": "fdm_process_common_HSN", "from": "system", - "setting_id": "GP004", + "setting_id": "RsDcCRFH96VXJdkK", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/HSN/0.24mm Draft @InfiMech TX HSN.json b/resources/profiles/InfiMech/process/HSN/0.24mm Draft @InfiMech TX HSN.json index be2cf278781..00f83a39ecd 100644 --- a/resources/profiles/InfiMech/process/HSN/0.24mm Draft @InfiMech TX HSN.json +++ b/resources/profiles/InfiMech/process/HSN/0.24mm Draft @InfiMech TX HSN.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @InfiMech TX HSN", "inherits": "fdm_process_common_HSN", "from": "system", - "setting_id": "GP004", + "setting_id": "T9uHAqamT2bXL0LV", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/Kingroon.json b/resources/profiles/Kingroon.json index 727cb4e0b23..0d0f98e7338 100644 --- a/resources/profiles/Kingroon.json +++ b/resources/profiles/Kingroon.json @@ -1,7 +1,7 @@ { "name": "Kingroon", "url": "https://kingroon.com/", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "1", "description": "Kingroon configuration files", "machine_model_list": [ diff --git a/resources/profiles/Kingroon/machine/Kingroon KLP1 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KLP1 0.4 nozzle.json index d4f377cb94d..8101c119eab 100644 --- a/resources/profiles/Kingroon/machine/Kingroon KLP1 0.4 nozzle.json +++ b/resources/profiles/Kingroon/machine/Kingroon KLP1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Kingroon KLP1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "V7Nb0x13KMPKlEKB", "instantiation": "true", "printer_model": "Kingroon KLP1", "default_filament_profile": "Generic PLA @System", diff --git a/resources/profiles/Kingroon/machine/Kingroon KP3S 3.0 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KP3S 3.0 0.4 nozzle.json index 6db5df200a3..8643f5224f1 100644 --- a/resources/profiles/Kingroon/machine/Kingroon KP3S 3.0 0.4 nozzle.json +++ b/resources/profiles/Kingroon/machine/Kingroon KP3S 3.0 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Kingroon KP3S 3.0 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "J2s9iNvu2UoaIKJY", "instantiation": "true", "printer_model": "Kingroon KP3S 3.0", "default_print_profile": "0.30mm Standard @Kingroon KP3S 3.0", diff --git a/resources/profiles/Kingroon/machine/Kingroon KP3S PRO S1 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KP3S PRO S1 0.4 nozzle.json index 84f267f7a50..1c38008996d 100644 --- a/resources/profiles/Kingroon/machine/Kingroon KP3S PRO S1 0.4 nozzle.json +++ b/resources/profiles/Kingroon/machine/Kingroon KP3S PRO S1 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Kingroon KP3S PRO S1 0.4 nozzle", "inherits": "fdm_machine_common", - "setting_id": "GM003", + "setting_id": "A4kpyp116R9be7ks", "instantiation": "true", "printer_model": "Kingroon KP3S PRO S1", "default_print_profile": "0.20mm Standard @Kingroon KP3S PRO S1", diff --git a/resources/profiles/Kingroon/machine/Kingroon KP3S PRO V2 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KP3S PRO V2 0.4 nozzle.json index b8473460545..04cb2afde4c 100644 --- a/resources/profiles/Kingroon/machine/Kingroon KP3S PRO V2 0.4 nozzle.json +++ b/resources/profiles/Kingroon/machine/Kingroon KP3S PRO V2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Kingroon KP3S PRO V2 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "mTLNFIFxtFsGkdyQ", "instantiation": "true", "printer_model": "Kingroon KP3S PRO V2", "default_filament_profile": "Generic PLA @System", diff --git a/resources/profiles/Kingroon/machine/Kingroon KP3S V1 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KP3S V1 0.4 nozzle.json index f25cbbe6d62..3ffa56d05b7 100644 --- a/resources/profiles/Kingroon/machine/Kingroon KP3S V1 0.4 nozzle.json +++ b/resources/profiles/Kingroon/machine/Kingroon KP3S V1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Kingroon KP3S V1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "hUDREW1HLsKF84Wi", "instantiation": "true", "printer_model": "Kingroon KP3S V1", "default_filament_profile": "Generic PLA @System", diff --git a/resources/profiles/Kingroon/process/0.08mm Standard @Kingroon KP3S PRO S1.json b/resources/profiles/Kingroon/process/0.08mm Standard @Kingroon KP3S PRO S1.json index 913280c0d8a..fab9b812590 100644 --- a/resources/profiles/Kingroon/process/0.08mm Standard @Kingroon KP3S PRO S1.json +++ b/resources/profiles/Kingroon/process/0.08mm Standard @Kingroon KP3S PRO S1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.08mm Standard @Kingroon KP3S PRO S1", "inherits": "fdm_process_common", + "setting_id": "0DvblEjz2NxcdZBB", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S PRO S1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KLP1.json b/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KLP1.json index e287ef2d30b..fd5cb328fdc 100644 --- a/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KLP1.json +++ b/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KLP1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Standard @Kingroon KLP1", "inherits": "fdm_process_common", + "setting_id": "JnhayooC0fiqPQ6B", "instantiation": "true", "compatible_printers": [ "Kingroon KLP1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KP3S PRO S1.json b/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KP3S PRO S1.json index 3e1db2c501b..c35f97507a3 100644 --- a/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KP3S PRO S1.json +++ b/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KP3S PRO S1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Standard @Kingroon KP3S PRO S1", "inherits": "fdm_process_common", + "setting_id": "usLnWrudOQEWM8mC", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S PRO S1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KLP1.json b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KLP1.json index d2d076a51f2..d00132d9b3b 100644 --- a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KLP1.json +++ b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KLP1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.20mm Standard @Kingroon KLP1", "inherits": "fdm_process_common", + "setting_id": "EVVIDKEABDis5XnL", "instantiation": "true", "compatible_printers": [ "Kingroon KLP1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO S1.json b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO S1.json index aa3831d3a04..3d31bd21220 100644 --- a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO S1.json +++ b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO S1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.20mm Standard @Kingroon KP3S PRO S1", "inherits": "fdm_process_common", + "setting_id": "t6R8DxQkbEHDGpK1", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S PRO S1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO V2.json b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO V2.json index 63b4b225b6b..03d51049953 100644 --- a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO V2.json +++ b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO V2.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.20mm Standard @Kingroon KP3S PRO V2", "inherits": "fdm_process_common", + "setting_id": "4DcIhXpMnDYKuSGa", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S PRO V2 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S V1.json b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S V1.json index fe61d3b24c6..f91fc639a04 100644 --- a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S V1.json +++ b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S V1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.20mm Standard @Kingroon KP3S V1", "inherits": "fdm_process_common", + "setting_id": "4sJmG8tu4LyGGDDo", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S V1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.30mm Standard @Kingroon KP3S 3.0.json b/resources/profiles/Kingroon/process/0.30mm Standard @Kingroon KP3S 3.0.json index 9f9f0757f2f..3e39ae2ddf1 100644 --- a/resources/profiles/Kingroon/process/0.30mm Standard @Kingroon KP3S 3.0.json +++ b/resources/profiles/Kingroon/process/0.30mm Standard @Kingroon KP3S 3.0.json @@ -3,6 +3,7 @@ "name": "0.30mm Standard @Kingroon KP3S 3.0", "inherits": "fdm_process_common", "from": "User", + "setting_id": "RJMTJGKp9m8XneEf", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S 3.0 0.4 nozzle" diff --git a/resources/profiles/LH.json b/resources/profiles/LH.json index 25b76308555..12f8c4cbda8 100644 --- a/resources/profiles/LH.json +++ b/resources/profiles/LH.json @@ -1,7 +1,7 @@ { "name": "LH", "url": "https://github.com/lhndo/LH-Stinger", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "LH 3D Printer Configuration", "machine_model_list": [ diff --git a/resources/profiles/LH/filament/LHS ABS.json b/resources/profiles/LH/filament/LHS ABS.json index 95cd7ccd73c..28fe82243d4 100644 --- a/resources/profiles/LH/filament/LHS ABS.json +++ b/resources/profiles/LH/filament/LHS ABS.json @@ -2,7 +2,7 @@ "name": "LHS ABS", "type": "filament", "filament_id": "LHF_abs", - "setting_id": "LHF_S_abs", + "setting_id": "EQxNYC7BdGEA2iiD", "from": "system", "instantiation": "true", "inherits": "fdm_filament_asa", diff --git a/resources/profiles/LH/filament/LHS ASA.json b/resources/profiles/LH/filament/LHS ASA.json index 9c8ed46093f..8d8de19dfa4 100644 --- a/resources/profiles/LH/filament/LHS ASA.json +++ b/resources/profiles/LH/filament/LHS ASA.json @@ -1,7 +1,7 @@ { "name": "LHS ASA", "filament_id": "LHF_asa", - "setting_id": "LHF_S_asa", + "setting_id": "hoq5bKHUb9DE1ezj", "type": "filament", "from": "system", "instantiation": "true", diff --git a/resources/profiles/LH/filament/LHS PC CF.json b/resources/profiles/LH/filament/LHS PC CF.json index 522214492fe..e565b5a9aba 100644 --- a/resources/profiles/LH/filament/LHS PC CF.json +++ b/resources/profiles/LH/filament/LHS PC CF.json @@ -3,7 +3,7 @@ "name": "LHS PC CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "LHF_S_pccf", + "setting_id": "FOQLD0UX6hUhJBQ0", "filament_id": "LHF_pccf", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/LH/filament/LHS PCTG.json b/resources/profiles/LH/filament/LHS PCTG.json index 7508a1fbd3b..a2593c22b73 100644 --- a/resources/profiles/LH/filament/LHS PCTG.json +++ b/resources/profiles/LH/filament/LHS PCTG.json @@ -2,7 +2,7 @@ "name": "LHS PCTG", "type": "filament", "filament_id": "LHF_pctg", - "setting_id": "LHF_S_pctg", + "setting_id": "dKWttiAQNwymKsIC", "from": "system", "instantiation": "true", "inherits": "fdm_filament_pla", diff --git a/resources/profiles/LH/filament/LHS PETG.json b/resources/profiles/LH/filament/LHS PETG.json index 4c50c13b4c2..2c960c477c4 100644 --- a/resources/profiles/LH/filament/LHS PETG.json +++ b/resources/profiles/LH/filament/LHS PETG.json @@ -2,7 +2,7 @@ "name": "LHS PETG", "type": "filament", "filament_id": "LHF_petg", - "setting_id": "LHF_S_petg", + "setting_id": "aZdY1M44ui7Rtj8r", "from": "system", "instantiation": "true", "inherits": "fdm_filament_pla", diff --git a/resources/profiles/LH/filament/LHS PLA.json b/resources/profiles/LH/filament/LHS PLA.json index 6e927484a8e..285fd76c137 100644 --- a/resources/profiles/LH/filament/LHS PLA.json +++ b/resources/profiles/LH/filament/LHS PLA.json @@ -2,7 +2,7 @@ "name": "LHS PLA", "type": "filament", "filament_id": "LHF_pla", - "setting_id": "LHF_S_pla", + "setting_id": "M8WSwqD1iQkQntpy", "from": "system", "instantiation": "true", "inherits": "fdm_filament_pla", diff --git a/resources/profiles/LH/filament/LHS TPU Foamy 78A.json b/resources/profiles/LH/filament/LHS TPU Foamy 78A.json index cb706c46de8..47e4c606c62 100644 --- a/resources/profiles/LH/filament/LHS TPU Foamy 78A.json +++ b/resources/profiles/LH/filament/LHS TPU Foamy 78A.json @@ -2,7 +2,7 @@ "name": "LHS TPU Foamy 78A", "type": "filament", "filament_id": "LHF_ftpuf", - "setting_id": "LHF_S_ftpuf", + "setting_id": "FWyg21qHmAKeihMn", "from": "system", "instantiation": "true", "inherits": "fdm_filament_tpu", diff --git a/resources/profiles/LH/filament/LHS TPU.json b/resources/profiles/LH/filament/LHS TPU.json index 463cd29b2b3..fc877eb0840 100644 --- a/resources/profiles/LH/filament/LHS TPU.json +++ b/resources/profiles/LH/filament/LHS TPU.json @@ -2,7 +2,7 @@ "name": "LHS TPU", "type": "filament", "filament_id": "LHF_ptpu_pl", - "setting_id": "LHF_S_ptpu_pl", + "setting_id": "ILgpZYIqYGH6mqdI", "from": "system", "instantiation": "true", "inherits": "fdm_filament_tpu", diff --git a/resources/profiles/LH/machine/LH Stinger 0.4 nozzle.json b/resources/profiles/LH/machine/LH Stinger 0.4 nozzle.json index 974b81d5fe6..623cde41d96 100644 --- a/resources/profiles/LH/machine/LH Stinger 0.4 nozzle.json +++ b/resources/profiles/LH/machine/LH Stinger 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "LH Stinger 0.4 nozzle", "inherits": "fdm_lh_common", "from": "system", - "setting_id": "LHS_m01_04", + "setting_id": "SXKv5qx80Qwsq8Zh", "instantiation": "true", "printer_model": "LH Stinger", "nozzle_diameter": [ diff --git a/resources/profiles/LH/machine/LH Stinger MMU 0.4 nozzle.json b/resources/profiles/LH/machine/LH Stinger MMU 0.4 nozzle.json index 3c8b400b87f..4fbf1bc51c6 100644 --- a/resources/profiles/LH/machine/LH Stinger MMU 0.4 nozzle.json +++ b/resources/profiles/LH/machine/LH Stinger MMU 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "LH Stinger MMU 0.4 nozzle", "inherits": "fdm_lh_mmu_common", "from": "system", - "setting_id": "LHS_m01_mmu_04", + "setting_id": "5WBp4QHbKuf93x9h", "instantiation": "true", "printer_model": "LH Stinger MMU", "nozzle_diameter": [ diff --git a/resources/profiles/LH/process/0.10mm HueForge @LH Stinger.json b/resources/profiles/LH/process/0.10mm HueForge @LH Stinger.json index c3a7924bff1..e98ffc8855b 100644 --- a/resources/profiles/LH/process/0.10mm HueForge @LH Stinger.json +++ b/resources/profiles/LH/process/0.10mm HueForge @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.10mm HueForge @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_hueforge", + "setting_id": "YbSn7A99XdQu18TS", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.14mm Detail @LH Stinger.json b/resources/profiles/LH/process/0.14mm Detail @LH Stinger.json index cad9a16e51e..a71ea3b0903 100644 --- a/resources/profiles/LH/process/0.14mm Detail @LH Stinger.json +++ b/resources/profiles/LH/process/0.14mm Detail @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.14mm Detail @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_detail", + "setting_id": "UDQOskW5wNQrbT7G", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.14mm Detail Strength @LH Stinger.json b/resources/profiles/LH/process/0.14mm Detail Strength @LH Stinger.json index e473db77077..f9b0f651c13 100644 --- a/resources/profiles/LH/process/0.14mm Detail Strength @LH Stinger.json +++ b/resources/profiles/LH/process/0.14mm Detail Strength @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.14mm Detail Strength @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_detail_strength", + "setting_id": "c3dgsHRrgdfhu5OQ", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm Daily @LH Stinger.json b/resources/profiles/LH/process/0.20mm Daily @LH Stinger.json index 78f152a487f..5f39a203146 100644 --- a/resources/profiles/LH/process/0.20mm Daily @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm Daily @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm Daily @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_daily", + "setting_id": "oCPHcikuQmP0q1et", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm MMU @LH Stinger.json b/resources/profiles/LH/process/0.20mm MMU @LH Stinger.json index e4a2616d100..79b45512792 100644 --- a/resources/profiles/LH/process/0.20mm MMU @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm MMU @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm MMU @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_mmu", + "setting_id": "g6RZV8hOSJZKm80i", "instantiation": "true", "compatible_printers": [ "LH Stinger MMU 0.4 nozzle" diff --git a/resources/profiles/LH/process/0.20mm PETG @LH Stinger.json b/resources/profiles/LH/process/0.20mm PETG @LH Stinger.json index 8582a7f0ac1..888cf384695 100644 --- a/resources/profiles/LH/process/0.20mm PETG @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm PETG @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm PETG @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_petg", + "setting_id": "K3dY4BJPW9HL0NQ2", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm Quiet @LH Stinger.json b/resources/profiles/LH/process/0.20mm Quiet @LH Stinger.json index d26b9efef81..7eb85b733ff 100644 --- a/resources/profiles/LH/process/0.20mm Quiet @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm Quiet @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm Quiet @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_quiet", + "setting_id": "pqEMaWAFWdh3iNwa", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm Solid @LH Stinger.json b/resources/profiles/LH/process/0.20mm Solid @LH Stinger.json index 4d1218db8b2..7bf78e8c7ca 100644 --- a/resources/profiles/LH/process/0.20mm Solid @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm Solid @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm Solid @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_solid", + "setting_id": "nV3S6yVyd68DnTX6", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm Speed @LH Stinger.json b/resources/profiles/LH/process/0.20mm Speed @LH Stinger.json index a56bf33a87c..989f58dbcdd 100644 --- a/resources/profiles/LH/process/0.20mm Speed @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm Speed @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_speed", + "setting_id": "evHukqVJGThDVg8e", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm Strength @LH Stinger.json b/resources/profiles/LH/process/0.20mm Strength @LH Stinger.json index 8d1929bb607..010b92c3099 100644 --- a/resources/profiles/LH/process/0.20mm Strength @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm Strength @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm Strength @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_strength", + "setting_id": "AfuFzuVgyfSZJZB8", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm TPU @LH Stinger.json b/resources/profiles/LH/process/0.20mm TPU @LH Stinger.json index 6893ec1e056..622bc5b361b 100644 --- a/resources/profiles/LH/process/0.20mm TPU @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm TPU @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm TPU @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_tpu", + "setting_id": "QIkswxTrtKlNxglR", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.25mm Vase Mode @LH Stinger.json b/resources/profiles/LH/process/0.25mm Vase Mode @LH Stinger.json index bc612fc5e95..edfbe05965e 100644 --- a/resources/profiles/LH/process/0.25mm Vase Mode @LH Stinger.json +++ b/resources/profiles/LH/process/0.25mm Vase Mode @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.25mm Vase Mode @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_vase_mode", + "setting_id": "tfGhpXLVB51jD4SA", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LONGER.json b/resources/profiles/LONGER.json index 397f95b1576..723bb43e91c 100644 --- a/resources/profiles/LONGER.json +++ b/resources/profiles/LONGER.json @@ -1,6 +1,6 @@ { "name": "LONGER", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "LONGER configurations", "machine_model_list": [ diff --git a/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10 Plus.json b/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10 Plus.json index 13934c00a9c..c27280bf49b 100644 --- a/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10 Plus.json +++ b/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10 Plus.json @@ -3,7 +3,7 @@ "name": "Generic PETG @LONGER LK10 Plus", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFLLKPG", + "setting_id": "F6pgS8fPQFnN4R0n", "filament_id": "GFLLK10PPETG", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10.json b/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10.json index d0a31c8e7c2..48343c508d9 100644 --- a/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10.json +++ b/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10.json @@ -3,7 +3,7 @@ "name": "Generic PETG @LONGER LK10", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFLLK10G", + "setting_id": "hWuf5kvAA5dXSd8f", "filament_id": "GFLLK10PETG", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10 Plus.json b/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10 Plus.json index 47da2fce9be..7eccd144bd9 100644 --- a/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10 Plus.json +++ b/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10 Plus.json @@ -3,7 +3,7 @@ "name": "Generic PLA @LONGER LK10 Plus", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFLLKPPL", + "setting_id": "N4pabxIYPI8KHgVp", "filament_id": "GFLLK10PPLA", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10.json b/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10.json index f76a0d7e348..fe91a5388b0 100644 --- a/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10.json +++ b/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10.json @@ -3,7 +3,7 @@ "name": "Generic PLA @LONGER LK10", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFLLK10P", + "setting_id": "BLf7EiZ9yayoKwJy", "filament_id": "GFLLK10PLA", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/LONGER/machine/LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 (0.2 nozzle).json index d4e8936a409..93a11e4a666 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 (0.2 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "rCXyXcyjM0JIZfa4", "instantiation": "true", "printer_model": "LONGER LK10", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 (0.4 nozzle).json index ac6b7339997..ce8f8b95802 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 (0.4 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "IzX3jf8hyO1eSOVE", "instantiation": "true", "printer_model": "LONGER LK10", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 (0.6 nozzle).json index ee0a634ca8c..a99639d18d3 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 (0.6 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "imHXw1uvIFhG4ZrL", "instantiation": "true", "printer_model": "LONGER LK10", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 (0.8 nozzle).json index e5342944d6a..0493d30520c 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 (0.8 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "WhICa7WcreZhBx0N", "instantiation": "true", "printer_model": "LONGER LK10", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.2 nozzle).json index 234f4953add..fd586f6a7cd 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PMsJm19Fmd1izzf9", "instantiation": "true", "printer_model": "LONGER LK10 Plus", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.4 nozzle).json index e5a63805a88..95a282c1a24 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Fs8OHF8JceLEAO1v", "instantiation": "true", "printer_model": "LONGER LK10 Plus", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.6 nozzle).json index da4bbfeb22c..8c10b81e1b4 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "XUaskaVS0J50HBTq", "instantiation": "true", "printer_model": "LONGER LK10 Plus", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.8 nozzle).json index 617f9b5014d..91ef8d02de4 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "KPqFqYPrJVyfImNw", "instantiation": "true", "printer_model": "LONGER LK10 Plus", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.2 nozzle).json index d04f6ad2f9a..c101b0c35c0 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "4rewUDpVDckN1RBz", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.4 nozzle).json index c25ba51dc4e..a077e6a5982 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "aCQD3S06UiljFHkP", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.6 nozzle).json index cbea2e29bd0..4739e2d546e 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "NyfHJWm3vAvBSATt", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.8 nozzle).json index b29fadeec3d..72ff1430024 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "LZxLjR6G6gSN921g", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.2 nozzle).json index 378135d3a4d..ba1f4882766 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "pt5mXbn5H8EkwLFe", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.4 nozzle).json index 62cb4dabea5..f92eaaebe5a 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "Yxle7KV6zK9QemgL", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.6 nozzle).json index 39ade43ec2f..78ca5e931e8 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "MkIzLl9LYtPfzuVF", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.8 nozzle).json index b936a23793f..5e51af595e2 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "NehCN4FIKD5qtHej", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.2 nozzle).json index f345e83e48d..d601bd8415b 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "gRMFIR7alPbvKMuP", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.4 nozzle).json index 4d9ea483c40..85cf793c32f 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "o86PZBwDDp2IxFn5", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.6 nozzle).json index 8e96401c559..d36f6dfa69b 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "bVCJXyf7dCBOWdON", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.8 nozzle).json index 11b739a2ada..caa31764316 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "lnVVFnprz98VIxhr", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.2 nozzle).json index 09f45490e7d..cebf5200cc1 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "6sOCelWbIuJAhryj", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.4 nozzle).json index 3accdb9368f..9c952062a17 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "jZV4VLKS1DWHuYYx", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.6 nozzle).json index 902840089bf..6878c10b5ab 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "YZAdp0npeHTgnOjO", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.8 nozzle).json index 70932c0ccf9..afeefc3587e 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "TFOKRXKTxUNRsu7D", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.2 nozzle).json index 44e815f6b27..664cbb100d6 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "mZIIl7NskpqH9WI5", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.4 nozzle).json index 9c14c57a806..b4dc7f9765b 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "sSQK16zVLSlw8Ndb", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.6 nozzle).json index adbd86ba95e..d80b9915357 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "medK5QfuPW1ZOFQv", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.8 nozzle).json index 6d5fdd918cb..9cd2f93bda9 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "eSuXIvImpT95xawb", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.2 nozzle).json index 2a4b6d381f9..a5529b84038 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "i4dTKSvcd0Bk6tA5", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.4 nozzle).json index daf678d2327..f49f108d239 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "qRe2lkPbt13Bv69D", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.6 nozzle).json index c560def78e6..e3a57456dbe 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "6FEmRj0kD8k24QIB", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.8 nozzle).json index 85a1ec49105..62335b8ced3 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "nijhyst18zcMDzEk", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.2 nozzle).json index 9e58546efaf..9137d7fa0e7 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "gPVvPA8bDwW9DFcY", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.4 nozzle).json index 9b192a2b940..da94cf13b59 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "1DSx31aPS987vOJL", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.6 nozzle).json index c6fc7317111..69468eb99bc 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "5e6XIC5yJJeNvNFs", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.8 nozzle).json index d433b344cac..8722668ac9a 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "x3hfZSXRXMiFcjqX", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.2 nozzle).json index cbebdac810f..c4f29be5042 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "z8Ok2rmAXISepqJU", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.4 nozzle).json index 6b861a4af91..5cdfa09d5ad 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "lYhyAGil93rEYJHT", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.6 nozzle).json index 83f94d30da8..8ba9483343d 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "cwSLuhMTckFzqPpe", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.8 nozzle).json index 7a60b5c3b09..015e6e2284f 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "IproQ7VtfvhPKflQ", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.2 nozzle).json index 0e9827399c6..724913127de 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "YeH8GaO7aIQ7QR1g", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.4 nozzle).json index 13272d28ec3..eab4deac706 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "qzwdIE3o2jUNflDv", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.6 nozzle).json index d8ab4e65d00..29de5b31e01 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "IDwXrEpPnjyHRueg", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.8 nozzle).json index 8faf82ad450..521087ddaee 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "IspkL6JDGiT3nUzD", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.2 nozzle).json index fb96d17dd38..30ce2e73143 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "9za3LNV8qjTQiTCD", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.4 nozzle).json index ef772f066b2..432972ecf32 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "1BC6FRmc5xu3TN13", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.6 nozzle).json index 5e21eca79e8..c98b1bbc7d8 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "CKR9x6EET6aXSUNt", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.8 nozzle).json index e8e377e8db3..1757d9384b3 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "qt5zTPvnQvwWMWfz", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.2 nozzle).json index 6fefd2adb24..d40546ce0db 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "jY1Uwp6qOb7vIlGo", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.4 nozzle).json index f85e0466093..6c66fa3a3ae 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "ofbXgcSsiTmuMmVr", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.6 nozzle).json index 7cb580537e4..6f997ec3c3a 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "bbiXfNYWq1fY0rsX", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.8 nozzle).json index 00c94c317d7..c9b15090066 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "PskBX42xJfVOlpNu", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.2 nozzle).json index 10bb4e5dcd9..248da7c8732 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "oRoJ2OjDZcoiRv15", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.4 nozzle).json index 8886d1c0b23..e513a7ad787 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "gxDpJ3et9rfFpdb7", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.6 nozzle).json index 8408d0026fd..56f2ed8bc72 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "ndi75zSZ9Bgt4CL0", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.8 nozzle).json index 6aa685ed41d..f5705060853 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "WIPNrthnFLnO3Gcj", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/Lulzbot.json b/resources/profiles/Lulzbot.json index 9d4c5617f9f..31836580f0a 100644 --- a/resources/profiles/Lulzbot.json +++ b/resources/profiles/Lulzbot.json @@ -1,7 +1,7 @@ { "name": "Lulzbot", "url": "https://ohai.lulzbot.com/group/taz-6/", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Lulzbot configurations", "machine_model_list": [ diff --git a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm ABS.json b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm ABS.json index f053100a73b..c91c38c8e9d 100644 --- a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm ABS.json +++ b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm ABS.json @@ -3,7 +3,7 @@ "name": "Lulzbot 2.85mm ABS", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XwsWBVH2xIwyRMm4", "filament_id": "GFB99", "instantiation": "true", "filament_diameter": [ diff --git a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PETG.json b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PETG.json index 17456c9b6d2..748d8de25b5 100644 --- a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PETG.json +++ b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PETG.json @@ -3,7 +3,7 @@ "name": "Lulzbot 2.85mm PETG", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSG99", + "setting_id": "7aS9fdn94lEOU1gJ", "filament_id": "GFG99", "instantiation": "true", "filament_diameter": [ diff --git a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PLA.json b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PLA.json index 4e6b697d110..23547bfafc8 100644 --- a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PLA.json +++ b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PLA.json @@ -3,7 +3,7 @@ "name": "Lulzbot 2.85mm PLA", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSL99", + "setting_id": "1pyzsOWeVPCxWlqQ", "filament_id": "GFL99", "instantiation": "true", "filament_diameter": [ diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5 0.5 nozzle.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5 0.5 nozzle.json index 008425504bb..cc1224b6352 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5 0.5 nozzle.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Lulzbot Taz 4 or 5 0.5 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "LZ004", + "setting_id": "vX6cl42xwlXUf05S", "instantiation": "true", "printer_model": "Lulzbot Taz 4 or 5", "default_print_profile": "0.25mm Standard @Lulzbot Taz 4 or 5", diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz 6 0.5 nozzle.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz 6 0.5 nozzle.json index 4571884aab4..4a7aa978fba 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz 6 0.5 nozzle.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz 6 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Lulzbot Taz 6 0.5 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "LZ006", + "setting_id": "xwPUM4RYNg01eOO6", "instantiation": "true", "printer_model": "Lulzbot Taz 6", "default_print_profile": "0.25mm Standard @Lulzbot Taz 6", diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Common.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Common.json index 868ed80184a..976d59626e3 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Common.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Common.json @@ -3,7 +3,6 @@ "name": "Lulzbot Taz Pro Common", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "LZPC001", "instantiation": "false", "printer_model": "Lulzbot Taz Pro Common", "printable_area": [ diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual 0.5 nozzle.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual 0.5 nozzle.json index dc6dee71787..dccf5c21a91 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual 0.5 nozzle.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Lulzbot Taz Pro Dual 0.5 nozzle", "inherits": "Lulzbot Taz Pro Common", "from": "system", - "setting_id": "LZPD001", + "setting_id": "sRWzLKWRYOU1YBQX", "instantiation": "true", "single_extruder_multi_material": "0", "extruders_count": "2", diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S 0.5 nozzle.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S 0.5 nozzle.json index c2a8352f838..fc67318616c 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S 0.5 nozzle.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Lulzbot Taz Pro S 0.5 nozzle", "inherits": "Lulzbot Taz Pro Common", "from": "system", - "setting_id": "LZPS001", + "setting_id": "MkF306AK6QFO2mo6", "instantiation": "true", "single_extruder_multi_material": "1", "extruders_count": "1", diff --git a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 4 or 5.json b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 4 or 5.json index 5a49c4601b1..67202d04739 100644 --- a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 4 or 5.json +++ b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 4 or 5.json @@ -3,7 +3,7 @@ "name": "0.18mm High Detail @Lulzbot Taz 4 or 5", "inherits": "0.25mm Standard @Lulzbot Taz 4 or 5", "from": "system", - "setting_id": "LZH04", + "setting_id": "N4f0GCg9YjwFjfZu", "instantiation": "true", "layer_height": "0.18", "compatible_printers": [ diff --git a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 6.json b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 6.json index a393c1739c1..e5eec9e7acd 100644 --- a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 6.json +++ b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 6.json @@ -3,7 +3,7 @@ "name": "0.18mm High Detail @Lulzbot Taz 6", "inherits": "0.25mm Standard @Lulzbot Taz 6", "from": "system", - "setting_id": "LZH06", + "setting_id": "A4aKPhCe7QB4fAar", "instantiation": "true", "layer_height": "0.18", "compatible_printers": [ diff --git a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro Dual.json b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro Dual.json index 8f8e449f0b8..a466fb0f869 100644 --- a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro Dual.json +++ b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro Dual.json @@ -3,7 +3,7 @@ "name": "0.18mm High Detail @Lulzbot Taz Pro Dual", "inherits": "0.25mm Standard @Lulzbot Taz Pro Dual", "from": "system", - "setting_id": "LZHPD01", + "setting_id": "6zkx7ADmjD4qJb2h", "instantiation": "true", "layer_height": "0.18", "compatible_printers": [ diff --git a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro S.json b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro S.json index 5ce353b06a3..a8f3c361e48 100644 --- a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro S.json +++ b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro S.json @@ -3,7 +3,7 @@ "name": "0.18mm High Detail @Lulzbot Taz Pro S", "inherits": "0.25mm Standard @Lulzbot Taz Pro S", "from": "system", - "setting_id": "LZHPS01", + "setting_id": "nfwNBrhULXlS9fQ1", "instantiation": "true", "layer_height": "0.18", "compatible_printers": [ diff --git a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 4 or 5.json b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 4 or 5.json index eba3f9ab3fe..8114e206de5 100644 --- a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 4 or 5.json +++ b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 4 or 5.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @Lulzbot Taz 4 or 5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "LZS04", + "setting_id": "7AJRQW7g8u7CnKhZ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 6.json b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 6.json index f34ccb655e3..5cf84c27917 100644 --- a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 6.json +++ b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 6.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @Lulzbot Taz 6", "inherits": "fdm_process_common", "from": "system", - "setting_id": "LZS06", + "setting_id": "K4uIiLjmRJfy0GZv", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro Dual.json b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro Dual.json index 62a568031a6..f6f88cee34a 100644 --- a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro Dual.json +++ b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro Dual.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @Lulzbot Taz Pro Dual", "inherits": "fdm_process_common", "from": "system", - "setting_id": "LZSPD01", + "setting_id": "jEDhBnfwOyj5oEO8", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro S.json b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro S.json index 19078fac11d..05bf1ecca03 100644 --- a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro S.json +++ b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro S.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @Lulzbot Taz Pro S", "inherits": "fdm_process_common", "from": "system", - "setting_id": "LZSPS01", + "setting_id": "uAws1KNEUyrcJTSy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/M3D.json b/resources/profiles/M3D.json index d2ad7e14780..cb24edb8866 100644 --- a/resources/profiles/M3D.json +++ b/resources/profiles/M3D.json @@ -1,6 +1,6 @@ { "name": "M3D", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Configuration for M3D printers", "machine_model_list": [ diff --git a/resources/profiles/M3D/machine/M3D Enabler D8500 MM.json b/resources/profiles/M3D/machine/M3D Enabler D8500 MM.json index bb4ad54b07e..6c9d35786ca 100644 --- a/resources/profiles/M3D/machine/M3D Enabler D8500 MM.json +++ b/resources/profiles/M3D/machine/M3D Enabler D8500 MM.json @@ -3,7 +3,7 @@ "name": "M3D Enabler D8500 MM", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "M3D_D8500_MM_04", + "setting_id": "AEagqO0H5lE3ndsg", "instantiation": "true", "printer_model": "M3D Enabler D8500 MM Model", "printer_variant": "0.4", diff --git a/resources/profiles/M3D/process/0.15mm MM @D8500.json b/resources/profiles/M3D/process/0.15mm MM @D8500.json index db62fc37e5f..d7bcbadab85 100644 --- a/resources/profiles/M3D/process/0.15mm MM @D8500.json +++ b/resources/profiles/M3D/process/0.15mm MM @D8500.json @@ -3,6 +3,7 @@ "name": "0.15mm MM @D8500", "inherits": "fdm_process_common", "from": "system", + "setting_id": "vVl13K18loFa1fgv", "instantiation": "true", "compatible_printers": [ "M3D Enabler D8500 MM" diff --git a/resources/profiles/M3D/process/0.20mm MM @D8500.json b/resources/profiles/M3D/process/0.20mm MM @D8500.json index c611c1b0d24..8dab066799b 100644 --- a/resources/profiles/M3D/process/0.20mm MM @D8500.json +++ b/resources/profiles/M3D/process/0.20mm MM @D8500.json @@ -3,6 +3,7 @@ "name": "0.20mm MM @D8500", "inherits": "fdm_process_common", "from": "system", + "setting_id": "sW4h3MpFpgMeE1pl", "instantiation": "true", "compatible_printers": [ "M3D Enabler D8500 MM" diff --git a/resources/profiles/MagicMaker.json b/resources/profiles/MagicMaker.json index 87327300d42..aa542ca7f6b 100644 --- a/resources/profiles/MagicMaker.json +++ b/resources/profiles/MagicMaker.json @@ -1,6 +1,6 @@ { "name": "MagicMaker", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "MagicMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/MagicMaker/filament/MM Generic PEEK.json b/resources/profiles/MagicMaker/filament/MM Generic PEEK.json index 6f379789f49..75b905476ee 100644 --- a/resources/profiles/MagicMaker/filament/MM Generic PEEK.json +++ b/resources/profiles/MagicMaker/filament/MM Generic PEEK.json @@ -3,7 +3,7 @@ "name": "MM Generic PEEK", "inherits": "fdm_filament_peek", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iznBAOK0m6dO7SCh", "filament_id": "GFG99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json index fe2abaa957f..59f622953b8 100644 --- a/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MM BoneKing 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "iZNIPSUR3fQERgnv", "instantiation": "true", "printer_model": "MM BoneKing", "default_print_profile": "0.10mm Fine @MM BoneKing", diff --git a/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json index b6c652b9fd5..c1b219aae03 100644 --- a/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MM hj SK 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "lqwfkkjWuhZa5W1i", "instantiation": "true", "printer_model": "MM hj SK", "default_print_profile": "0.10mm Fine @MM hj SK", diff --git a/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json index 060438bee21..fdfc49385a8 100644 --- a/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MM hqs SF 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "9fUSbg5O1brpyJX5", "instantiation": "true", "printer_model": "MM hqs SF", "default_print_profile": "0.10mm Fine @MM hqs SF", diff --git a/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json index 930fb4c2b2c..9760c8382b6 100644 --- a/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MM hqs hj 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "2MC7ljWsyIfNcoCS", "instantiation": "true", "printer_model": "MM hqs hj", "default_print_profile": "0.10mm Fine @MM hqs hj", diff --git a/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json index 07cdaf7f0fd..7c71afe855f 100644 --- a/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MM slb 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "A0I3dDAbwNC059c6", "instantiation": "true", "printer_model": "MM slb", "default_print_profile": "0.10mm Fine @MM slb", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json index 5c77ff05e5c..d980bd9ffa1 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JoLMVPh4bNahqirV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json index e0c982f3bba..a27ed5c8acd 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "m6Y453vyMDxFz4c7", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json index ff191d531f2..263c3c7e02b 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @MM hqs SF", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QI9sXxzUoh2A8c0S", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json index 6855c2ab929..f04d1862e16 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @MM hqs hj", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vCIBhcj3X7d07y9G", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json index 9a2d82ef09e..740aa73f40c 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @MM slb", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BLrg8vEj3xZyxNTo", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json index 2790f4de2b3..fab1e63f1df 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine Fast @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fIzlKlmcI4pDKviy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json index 1c61ec7db08..f7cbb71edac 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine Fast @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "xngBXACjTNqOZNyB", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json index 6c078e0f87c..e24e6c7fd3e 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine Fast @MM hqs SF", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wHOzdPcMWYZNhny2", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json index 7523e1b7b88..ad71011496c 100644 --- a/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine BestFast @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PVbARB8V8JUBbIZG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json index ee86047d1dc..ffabaed0920 100644 --- a/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine SuperFast @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gR34Ioeioizl1UXy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json index 238cc171719..2c252a73e3f 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ON1x9dQTQTgGNLCw", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json index 14d63d3bec5..be5f7455720 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JoTnXrNSnHKraaeB", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json index 848a6a020c4..5e8078a0cae 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MM hqs SF", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "J9s3XNTCUjsYusKD", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json index 3c2ea9e071b..1fa581bbdeb 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MM hqs hj", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MPfzxLi2GBioXdOp", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json index fbc282df251..59d77973599 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MM slb", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ivz7U0RTrX558HQ4", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json index e72b260ab02..b3e9571756d 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard Fast @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "OZKDJHIsKAZtJTeq", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json index a952e298616..20ab75cbc9c 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard Fast @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "RL1Irvbsm9Fh3jNz", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json index 536a4752284..bb0eeafbc17 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard Fast @MM hqs sf", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TkBYOyBebm3pMHrl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json index 4fc9d38a7b9..318575eb72b 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QuoLlC961atuxMnn", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json index 9f0745a8ba4..19ac9c25a5c 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aXpG4y73oeV4p4by", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json index 0092b733d89..e5cc84d0fba 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @MM hqs SF", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lZ3guqhwMGxBFtIh", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json index f4715e7d9d7..1a3d053cd2c 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @MM hqs hj", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "yBdZW946qhSKDU4w", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json index 13a5481de14..fdf6c572e66 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @MM slb", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Clfnw7cqNtWmzjB1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json index a3dd245f341..ef49cf7d48e 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft Fast @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "g2unBNIOfILyLrLQ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json index b4c75c79f12..44889482385 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft Fast @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bVabJjzFcaYFQ77o", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json index 14442f236f2..adb7fe1465b 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft Fast @MM hqs SF", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "G2b2NRdM3geucH0v", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Mellow.json b/resources/profiles/Mellow.json index 678fb934800..f0b81c832c7 100644 --- a/resources/profiles/Mellow.json +++ b/resources/profiles/Mellow.json @@ -1,6 +1,6 @@ { "name": "Mellow", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Mellow Printer Profiles", "machine_model_list": [ diff --git a/resources/profiles/Mellow/machine/M1 0.2 nozzle.json b/resources/profiles/Mellow/machine/M1 0.2 nozzle.json index 43d9c7605d8..ee7b465e236 100644 --- a/resources/profiles/Mellow/machine/M1 0.2 nozzle.json +++ b/resources/profiles/Mellow/machine/M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "M1 0.2 nozzle", "inherits": "fdm_common_M1", "from": "system", - "setting_id": "m1_m002", + "setting_id": "PJ1AEctT0fuqipaq", "instantiation": "true", "printer_model": "M1", "nozzle_diameter": [ diff --git a/resources/profiles/Mellow/machine/M1 0.4 nozzle.json b/resources/profiles/Mellow/machine/M1 0.4 nozzle.json index 9c6f9b7a5ea..7268629864b 100644 --- a/resources/profiles/Mellow/machine/M1 0.4 nozzle.json +++ b/resources/profiles/Mellow/machine/M1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "M1 0.4 nozzle", "inherits": "fdm_common_M1", "from": "system", - "setting_id": "m1_m001", + "setting_id": "5UmVLLJJmKvIlfQG", "instantiation": "true", "printer_model": "M1", "nozzle_diameter": [ diff --git a/resources/profiles/Mellow/machine/M1 0.6 nozzle.json b/resources/profiles/Mellow/machine/M1 0.6 nozzle.json index 76cf92bd973..e546c5337b8 100644 --- a/resources/profiles/Mellow/machine/M1 0.6 nozzle.json +++ b/resources/profiles/Mellow/machine/M1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "M1 0.6 nozzle", "inherits": "fdm_common_M1", "from": "system", - "setting_id": "m1_m003", + "setting_id": "yHEi0y1nBaexIbTL", "instantiation": "true", "printer_model": "M1", "nozzle_diameter": [ diff --git a/resources/profiles/Mellow/machine/M1 0.8 nozzle.json b/resources/profiles/Mellow/machine/M1 0.8 nozzle.json index 172b599b7db..742999b30e5 100644 --- a/resources/profiles/Mellow/machine/M1 0.8 nozzle.json +++ b/resources/profiles/Mellow/machine/M1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "M1 0.8 nozzle", "inherits": "fdm_common_M1", "from": "system", - "setting_id": "m1_m004", + "setting_id": "vw2dEA9cwpGfNXv3", "instantiation": "true", "printer_model": "M1", "nozzle_diameter": [ diff --git a/resources/profiles/Mellow/process/0.08mm Extra Fine @M1.json b/resources/profiles/Mellow/process/0.08mm Extra Fine @M1.json index 25027f8220b..ece2a6165df 100644 --- a/resources/profiles/Mellow/process/0.08mm Extra Fine @M1.json +++ b/resources/profiles/Mellow/process/0.08mm Extra Fine @M1.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p001", + "setting_id": "eancI3korAAbrT0H", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Mellow/process/0.12mm Fine @M1.json b/resources/profiles/Mellow/process/0.12mm Fine @M1.json index e4658ecbbb6..5c66d0fa50f 100644 --- a/resources/profiles/Mellow/process/0.12mm Fine @M1.json +++ b/resources/profiles/Mellow/process/0.12mm Fine @M1.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p002", + "setting_id": "P7QW1RovYFArn99A", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Mellow/process/0.16mm Optimal @M1.json b/resources/profiles/Mellow/process/0.16mm Optimal @M1.json index 6c4b41c3285..95740aaa3c0 100644 --- a/resources/profiles/Mellow/process/0.16mm Optimal @M1.json +++ b/resources/profiles/Mellow/process/0.16mm Optimal @M1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p003", + "setting_id": "E6qD120IMsut2kax", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Mellow/process/0.20mm Standard @M1.json b/resources/profiles/Mellow/process/0.20mm Standard @M1.json index 28ddb60e435..abe66241ab1 100644 --- a/resources/profiles/Mellow/process/0.20mm Standard @M1.json +++ b/resources/profiles/Mellow/process/0.20mm Standard @M1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p004", + "setting_id": "i3eplL8lCrSToFGE", "instantiation": "true", "layer_height": "0.2", "compatible_printers": [ diff --git a/resources/profiles/Mellow/process/0.24mm Draft @M1.json b/resources/profiles/Mellow/process/0.24mm Draft @M1.json index dc71cff1dc7..a93e1b47d85 100644 --- a/resources/profiles/Mellow/process/0.24mm Draft @M1.json +++ b/resources/profiles/Mellow/process/0.24mm Draft @M1.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p005", + "setting_id": "CeIfJ33O1WX5GeEl", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/Mellow/process/0.28mm Extra Draft @M1.json b/resources/profiles/Mellow/process/0.28mm Extra Draft @M1.json index bb3a9fa9792..d09421b3277 100644 --- a/resources/profiles/Mellow/process/0.28mm Extra Draft @M1.json +++ b/resources/profiles/Mellow/process/0.28mm Extra Draft @M1.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p006", + "setting_id": "2vvrxWecrgcPDwhW", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Mellow/process/0.32mm Extra Draft @M1.json b/resources/profiles/Mellow/process/0.32mm Extra Draft @M1.json index 17287148955..67a705fc96a 100644 --- a/resources/profiles/Mellow/process/0.32mm Extra Draft @M1.json +++ b/resources/profiles/Mellow/process/0.32mm Extra Draft @M1.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p007", + "setting_id": "yjnb7R1H07rZtYGA", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Mellow/process/0.40mm Extra Draft @M1.json b/resources/profiles/Mellow/process/0.40mm Extra Draft @M1.json index 87be3080ba6..b4ba3613a87 100644 --- a/resources/profiles/Mellow/process/0.40mm Extra Draft @M1.json +++ b/resources/profiles/Mellow/process/0.40mm Extra Draft @M1.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p008", + "setting_id": "jLh7ECuiNBupMltK", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Mellow/process/0.56mm Extra Draft @M1.json b/resources/profiles/Mellow/process/0.56mm Extra Draft @M1.json index 48e506f5814..fa6c8189395 100644 --- a/resources/profiles/Mellow/process/0.56mm Extra Draft @M1.json +++ b/resources/profiles/Mellow/process/0.56mm Extra Draft @M1.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p009", + "setting_id": "PvZVhrjt2zCKZ5NU", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/OpenEYE.json b/resources/profiles/OpenEYE.json index e8f05e8fd72..e29674323e4 100644 --- a/resources/profiles/OpenEYE.json +++ b/resources/profiles/OpenEYE.json @@ -1,7 +1,7 @@ { "name": "OpenEYE", "url": "http://www.openeye.tech", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "OpenEYE Printers Configurations", "machine_model_list": [ diff --git a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.2 nozzle.json b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.2 nozzle.json index aa31199f549..7596470f684 100644 --- a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.2 nozzle.json +++ b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OpenEYE Peacock V2 0.2 nozzle", "inherits": "OpenEYE Peacock V2 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "9a6m3CnRwHifJXhE", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.4 nozzle.json b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.4 nozzle.json index 4aad3d8c4da..8a3ce9de777 100644 --- a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.4 nozzle.json +++ b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.4 nozzle.json @@ -46,6 +46,6 @@ "180", "180" ], - "setting_id": "GM001", + "setting_id": "iJqPJqKBFJvagyMn", "type": "machine" } diff --git a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.6 nozzle.json b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.6 nozzle.json index 0bfe44e08e9..af75b57f299 100644 --- a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.6 nozzle.json +++ b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "OpenEYE Peacock V2 0.6 nozzle", "inherits": "OpenEYE Peacock V2 0.4 nozzle", "from": "system", - "setting_id": "GM003", + "setting_id": "Ol08fxiiKMYXYxPp", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.8 nozzle.json b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.8 nozzle.json index bd61775da4b..099f45d80d2 100644 --- a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.8 nozzle.json +++ b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "OpenEYE Peacock V2 0.8 nozzle", "inherits": "OpenEYE Peacock V2 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "6DsYY53Z6bYd5szH", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle.json b/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle.json index 8813125f054..8f85b3cbc39 100644 --- a/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle", "inherits": "fdm_process_openeye_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP139", + "setting_id": "yzZvIRi5lQjYBhlL", "instantiation": "true", "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", "default_acceleration": "8000", diff --git a/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2.json index ffe6e605b74..11d8039c384 100644 --- a/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.08_nozzle_0.4", "from": "system", - "setting_id": "GP136", + "setting_id": "xwKLqiFWCrUGldma", "instantiation": "true", "default_acceleration": "4000", "gap_infill_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle.json b/resources/profiles/OpenEYE/process/0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle.json index 4947e954b35..2857d7b5ef2 100644 --- a/resources/profiles/OpenEYE/process/0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle", "inherits": "fdm_process_openeye_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP123", + "setting_id": "rnKBfxEW7XHh12sh", "instantiation": "true", "default_acceleration": "8000", "initial_layer_speed": "40", diff --git a/resources/profiles/OpenEYE/process/0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle.json b/resources/profiles/OpenEYE/process/0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle.json index 22241f59210..b3c19430b76 100644 --- a/resources/profiles/OpenEYE/process/0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle", "inherits": "fdm_process_openeye_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP140", + "setting_id": "fqgA9GWd3xHRa5hs", "instantiation": "true", "default_acceleration": "8000", "initial_layer_speed": "40", diff --git a/resources/profiles/OpenEYE/process/0.12mm Fine @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.12mm Fine @OpenEYE Peacock V2.json index 9e7b370f541..ad8d29a70d2 100644 --- a/resources/profiles/OpenEYE/process/0.12mm Fine @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.12mm Fine @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.12_nozzle_0.4", "from": "system", - "setting_id": "GP142", + "setting_id": "U8RMnKyefKwyyEqs", "instantiation": "true", "bottom_shell_layers": "7", "default_acceleration": "4000", diff --git a/resources/profiles/OpenEYE/process/0.16mm Balanced Quality @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.16mm Balanced Quality @OpenEYE Peacock V2.json index e898178e451..dc027c20eac 100644 --- a/resources/profiles/OpenEYE/process/0.16mm Balanced Quality @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.16mm Balanced Quality @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.16mm Balanced Quality @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.16_nozzle_0.4", "from": "system", - "setting_id": "GP174", + "setting_id": "PBks1gcyPcxRhGtr", "instantiation": "true", "description": "High quality profile for 0.16mm layer height, prioritizing print quality and strength.", "default_acceleration": "4000", diff --git a/resources/profiles/OpenEYE/process/0.16mm Standard @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.16mm Standard @OpenEYE Peacock V2.json index 797f3d1171c..768427590bf 100644 --- a/resources/profiles/OpenEYE/process/0.16mm Standard @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.16mm Standard @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.16_nozzle_0.4", "from": "system", - "setting_id": "GP143", + "setting_id": "gArD4KZxMZuJnIUM", "instantiation": "true", "description": "Standard profile for 0.16mm layer height, prioritizing speed.", "default_acceleration": "8000", diff --git a/resources/profiles/OpenEYE/process/0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle.json b/resources/profiles/OpenEYE/process/0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle.json index 9d0b0722578..04b89f0bc76 100644 --- a/resources/profiles/OpenEYE/process/0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle", "inherits": "fdm_process_openeye_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP137", + "setting_id": "EITxuIXk5oMAUbWS", "instantiation": "true", "description": "High quality profile for 0.6mm nozzle, prioritizing print quality and strength.", "bridge_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.20mm Balanced Strength @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.20mm Balanced Strength @OpenEYE Peacock V2.json index 7857a53630c..bfed4e843fa 100644 --- a/resources/profiles/OpenEYE/process/0.20mm Balanced Strength @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.20mm Balanced Strength @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Balanced Strength @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.20_nozzle_0.4", "from": "system", - "setting_id": "GP173", + "setting_id": "G98ptq5O00Dv04YG", "instantiation": "true", "description": "High quality profile for 0.2mm layer height, prioritizing strength and print quality.", "bottom_shell_layers": "4", diff --git a/resources/profiles/OpenEYE/process/0.20mm Standard @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.20mm Standard @OpenEYE Peacock V2.json index 077f964866a..bc244025ee8 100644 --- a/resources/profiles/OpenEYE/process/0.20mm Standard @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.20mm Standard @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.20_nozzle_0.4", "from": "system", - "setting_id": "GP124", + "setting_id": "cONwYqNMrRynsMR1", "instantiation": "true", "description": "Standard profile for 0.4mm nozzle, prioritizing speed.", "default_acceleration": "8000", diff --git a/resources/profiles/OpenEYE/process/0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle.json b/resources/profiles/OpenEYE/process/0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle.json index 4a5c8259664..6729e35a2b9 100644 --- a/resources/profiles/OpenEYE/process/0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle", "inherits": "fdm_process_openeye_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP138", + "setting_id": "f21HvEQ2fofjVX5a", "instantiation": "true", "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", "bridge_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle.json b/resources/profiles/OpenEYE/process/0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle.json index 75dda8a2c61..29642f1c58e 100644 --- a/resources/profiles/OpenEYE/process/0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle", "inherits": "fdm_process_openeye_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP146", + "setting_id": "U3qj2P5b6g0bo2MV", "instantiation": "true", "description": "Strength profile for 0.6mm nozzle, prioritizing strength.", "bridge_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.24mm Standard @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.24mm Standard @OpenEYE Peacock V2.json index 1539d6bbcb3..8358dcc909e 100644 --- a/resources/profiles/OpenEYE/process/0.24mm Standard @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.24mm Standard @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.24_nozzle_0.4", "from": "system", - "setting_id": "GP144", + "setting_id": "G27ubepZXkYPQ0IW", "instantiation": "true", "default_acceleration": "8000", "initial_layer_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle.json b/resources/profiles/OpenEYE/process/0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle.json index 8c01bfaa82b..1bb810e39f9 100644 --- a/resources/profiles/OpenEYE/process/0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle", "inherits": "fdm_process_openeye_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP125", + "setting_id": "o3HerJQnqHZDinoN", "instantiation": "true", "description": "Standard profile for 0.6mm nozzle, prioritizing speed.", "bridge_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle.json b/resources/profiles/OpenEYE/process/0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle.json index 7fc3978dd10..41d575cfa20 100644 --- a/resources/profiles/OpenEYE/process/0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle", "inherits": "fdm_process_openeye_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP149", + "setting_id": "ABm7CjdRKhvk1yYQ", "instantiation": "true", "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", "bridge_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle.json b/resources/profiles/OpenEYE/process/0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle.json index dc2336f4f7b..5581a2801e0 100644 --- a/resources/profiles/OpenEYE/process/0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle", "inherits": "fdm_process_openeye_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP126", + "setting_id": "SDp0weOnDWdnApMb", "instantiation": "true", "description": "Standard profile for 0.8mm nozzle, prioritizing speed.", "bridge_speed": "50", diff --git a/resources/profiles/OrcaArena.json b/resources/profiles/OrcaArena.json index 43b9a4fd682..1a31ac393e5 100644 --- a/resources/profiles/OrcaArena.json +++ b/resources/profiles/OrcaArena.json @@ -1,7 +1,7 @@ { "name": "Orca Arena Printer", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Orca Arena configuration files", "machine_model_list": [ diff --git a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.2 nozzle.json index 513b41d499e..a945d9670b3 100644 --- a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena ABS @Arena X1C 0.2 nozzle", "inherits": "Arena ABS @base", "from": "system", - "setting_id": "GFSB00_00", + "setting_id": "kFPuOcy1vVSJ2mta", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.8 nozzle.json index 2f13a902246..684e0c76615 100644 --- a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena ABS @Arena X1C 0.8 nozzle", "inherits": "Arena ABS @base", "from": "system", - "setting_id": "GFSB00_01", + "setting_id": "RVxzC2TDEBPCExLD", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C.json index 92e3db9e335..8a1664b6736 100644 --- a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena ABS @Arena X1C", "inherits": "Arena ABS @base", "from": "system", - "setting_id": "GFSB00", + "setting_id": "25fcPM16xLDCkzr9", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaArena/filament/Arena PA-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PA-CF @Arena X1C.json index 24604989b50..a5d716494b2 100644 --- a/resources/profiles/OrcaArena/filament/Arena PA-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PA-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PA-CF @Arena X1C", "inherits": "Arena PA-CF @base", "from": "system", - "setting_id": "GFSN00", + "setting_id": "HNAQ7QxxEkFzVR8R", "instantiation": "true", "filament_max_volumetric_speed": [ "8" diff --git a/resources/profiles/OrcaArena/filament/Arena PAHT-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PAHT-CF @Arena X1C.json index aeb0543ae8d..0300ca2dc16 100644 --- a/resources/profiles/OrcaArena/filament/Arena PAHT-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PAHT-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PAHT-CF @Arena X1C", "inherits": "Arena PAHT-CF @base", "from": "system", - "setting_id": "GFSN04", + "setting_id": "J9pZk6FWEksKLUB5", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.2 nozzle.json index 0923b290bf5..77a1302f5b7 100644 --- a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PC @Arena X1C 0.2 nozzle", "inherits": "Arena PC @base", "from": "system", - "setting_id": "GFSC00_02", + "setting_id": "avNV1IruWQnbpEm8", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.6 nozzle.json index 891d93a3a1f..ab6bbd4be8d 100644 --- a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PC @Arena X1C 0.6 nozzle", "inherits": "Arena PC @base", "from": "system", - "setting_id": "GFSC00_01", + "setting_id": "X8makbgEAsBKm4lw", "instantiation": "true", "nozzle_temperature": [ "260" diff --git a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.8 nozzle.json index 1a9f1e47cee..d488a9d565d 100644 --- a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PC @Arena X1C 0.8 nozzle", "inherits": "Arena PC @base", "from": "system", - "setting_id": "GFSC00_00", + "setting_id": "wjNXBZ089sWoa8Bq", "instantiation": "true", "nozzle_temperature": [ "260" diff --git a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C.json index 9004fa5c971..347da1786fd 100644 --- a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PC @Arena X1C", "inherits": "Arena PC @base", "from": "system", - "setting_id": "GFSC00", + "setting_id": "jKE8fewlDCfLj8hK", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle" diff --git a/resources/profiles/OrcaArena/filament/Arena PET-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PET-CF @Arena X1C.json index 6f4760481d4..445a497ba2f 100644 --- a/resources/profiles/OrcaArena/filament/Arena PET-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PET-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PET-CF @Arena X1C", "inherits": "Arena PET-CF @base", "from": "system", - "setting_id": "GFST01", + "setting_id": "vvn0qtZmexMRlvSa", "instantiation": "true", "slow_down_for_layer_cooling": [ "1" diff --git a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.2 nozzle.json index 1b085f0ad59..978aa7da5c1 100644 --- a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PETG Basic @Arena X1C 0.2 nozzle", "inherits": "Arena PETG Basic @base", "from": "system", - "setting_id": "GFSG00_00", + "setting_id": "YgBVLL3GABpMUZPw", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.8 nozzle.json index eeb3f2df913..c80683d6252 100644 --- a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PETG Basic @Arena X1C 0.8 nozzle", "inherits": "Arena PETG Basic @base", "from": "system", - "setting_id": "GFSG00_02", + "setting_id": "vBx9KPtRfLbcUlTQ", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C.json index f8ce3447f8f..f965e4c23e0 100644 --- a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PETG Basic @Arena X1C", "inherits": "Arena PETG Basic @base", "from": "system", - "setting_id": "GFSG00_01", + "setting_id": "XjxkHJgoLNpyqW0L", "instantiation": "true", "filament_max_volumetric_speed": [ "14" diff --git a/resources/profiles/OrcaArena/filament/Arena PETG-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PETG-CF @Arena X1C.json index fd53a401ff3..d61c48e0387 100644 --- a/resources/profiles/OrcaArena/filament/Arena PETG-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PETG-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PETG-CF @Arena X1C", "inherits": "Arena PETG-CF @base", "from": "system", - "setting_id": "GFSG50_01", + "setting_id": "hfQeDi2sXB62WWoA", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.2 nozzle.json index 590f4997f29..c058de273c3 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Basic @Arena X1C 0.2 nozzle", "inherits": "Arena PLA Basic @base", "from": "system", - "setting_id": "GFSA00_00", + "setting_id": "BWfmscHWlV8kxaNX", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.8 nozzle.json index 2d37b64a282..72e58d1e7d2 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Basic @Arena X1C 0.8 nozzle", "inherits": "Arena PLA Basic @base", "from": "system", - "setting_id": "GFSA00_01", + "setting_id": "zIaP3iJH2bV6zJ1K", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C.json index 9dbb908c629..1349b98af5f 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Basic @Arena X1C", "inherits": "Arena PLA Basic @base", "from": "system", - "setting_id": "GFSA00", + "setting_id": "dNZmk299IbO0lt5Y", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Impact @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Impact @Arena X1C.json index 51eeb13c513..f6cd738e887 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Impact @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Impact @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Impact @Arena X1C", "inherits": "Arena PLA Impact @base", "from": "system", - "setting_id": "GFSA03", + "setting_id": "o2s2ESxiXnPZgTZF", "instantiation": "true", "filament_max_volumetric_speed": [ "23.2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Marble @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Marble @Arena X1C.json index cbd3cb4c73f..ebd3ede9bc2 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Marble @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Marble @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Marble @Arena X1C", "inherits": "Arena PLA Marble @base", "from": "system", - "setting_id": "GFSA07_00", + "setting_id": "NLvXFDqqD8fkl2DQ", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.2 nozzle.json index aa4bbce94a9..ba0fbb94f51 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Matte @Arena X1C 0.2 nozzle", "inherits": "Arena PLA Matte @base", "from": "system", - "setting_id": "GFSA01_00", + "setting_id": "O9zpg6YuyCcpMus8", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.8 nozzle.json index d78739aad6c..ff11119f04d 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Matte @Arena X1C 0.8 nozzle", "inherits": "Arena PLA Matte @base", "from": "system", - "setting_id": "GFSA01_01", + "setting_id": "ZsVcDebY4q4ATzvV", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C.json index 7cb2f02ce2a..ff59b798d9e 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Matte @Arena X1C", "inherits": "Arena PLA Matte @base", "from": "system", - "setting_id": "GFSA01", + "setting_id": "DsJ6QdsKJ94kiS00", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C 0.2 nozzle.json index 853ce895d89..6b48c775d49 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Metal @Arena X1C 0.2 nozzle", "inherits": "Arena PLA Metal @base", "from": "system", - "setting_id": "GFSA02_01", + "setting_id": "7bHXeFGhlQAf6noa", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C.json index 0576d86aa1c..90cf39e5c16 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Metal @Arena X1C", "inherits": "Arena PLA Metal @base", "from": "system", - "setting_id": "GFSA02", + "setting_id": "OOesW9LPen32issX", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C 0.2 nozzle.json index f1dff42a182..1dc212bf5ae 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Silk @Arena X1C 0.2 nozzle", "inherits": "Arena PLA Silk @base", "from": "system", - "setting_id": "GFSA05_00", + "setting_id": "Ey8IICwCrqLfYxdQ", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C.json index 612fbdb06cf..e02108fb925 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Silk @Arena X1C", "inherits": "Arena PLA Silk @base", "from": "system", - "setting_id": "GFSA05_01", + "setting_id": "MtrNeG05EHC47Wn1", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Sparkle @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Sparkle @Arena X1C.json index 7ffb0abcb1c..e8291a318de 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Sparkle @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Sparkle @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Sparkle @Arena X1C", "inherits": "Arena PLA Sparkle @base", "from": "system", - "setting_id": "GFSA08_00", + "setting_id": "mAZuRQdAzLNFTf0w", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C 0.2 nozzle.json index 0cceacab045..3f89beb675c 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Tough @Arena X1C 0.2 nozzle", "inherits": "Arena PLA Tough @base", "from": "system", - "setting_id": "GFSA09_00", + "setting_id": "mQik38fn05zlMAWl", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C.json index 46ffd6380b7..bd2161f9528 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Tough @Arena X1C", "inherits": "Arena PLA Tough @base", "from": "system", - "setting_id": "GFSA09_02", + "setting_id": "DyhePXtlMpQcl6kP", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C 0.8 nozzle.json index 09a573095a6..90068529653 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA-CF @Arena X1C 0.8 nozzle", "inherits": "Arena PLA-CF @base", "from": "system", - "setting_id": "GFSA50_02", + "setting_id": "kCQ3oHXlyrHr3Kax", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C.json index 1438d93b1c3..8f1b1acef7b 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA-CF @Arena X1C", "inherits": "Arena PLA-CF @base", "from": "system", - "setting_id": "GFSA50_01", + "setting_id": "imDeceOg0WvrRwKo", "instantiation": "true", "filament_max_volumetric_speed": [ "15" diff --git a/resources/profiles/OrcaArena/filament/Arena Support G @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena Support G @Arena X1C.json index d13ae79bed8..d596e08c752 100644 --- a/resources/profiles/OrcaArena/filament/Arena Support G @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena Support G @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena Support G @Arena X1C", "inherits": "Arena Support G @base", "from": "system", - "setting_id": "GFSS01", + "setting_id": "XZT2nAJHs6F4QIeo", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C 0.2 nozzle.json index 3364771c85a..cf1aa57677b 100644 --- a/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena Support W @Arena X1C 0.2 nozzle", "inherits": "Arena Support W @base", "from": "system", - "setting_id": "GFSS00_00", + "setting_id": "5pMWRVIJS8vOcR4S", "instantiation": "true", "filament_max_volumetric_speed": [ "0.5" diff --git a/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C.json index f0d4be436bc..bafd568f3fe 100644 --- a/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena Support W @Arena X1C", "inherits": "Arena Support W @base", "from": "system", - "setting_id": "GFSS00", + "setting_id": "hsvJ5i28mIHRGfat", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena TPU 95A @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena TPU 95A @Arena X1C.json index 09c645bdcad..7ffdb61eb82 100644 --- a/resources/profiles/OrcaArena/filament/Arena TPU 95A @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena TPU 95A @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena TPU 95A @Arena X1C", "inherits": "Arena TPU 95A @base", "from": "system", - "setting_id": "GFSU00", + "setting_id": "pjdiz15hZ4VHQCSe", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS @0.2 nozzle.json index 2b8f47bfc4e..37062950e4d 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic ABS @0.2 nozzle", "inherits": "OrcaArena Generic ABS @base", "from": "system", - "setting_id": "GFSB99_00", + "setting_id": "o9UpKuDWgaJT7sM5", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS.json index 5a9569bf6cc..773f58289e8 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic ABS", "inherits": "OrcaArena Generic ABS @base", "from": "system", - "setting_id": "GFSB99", + "setting_id": "5aN0QkAneu6yEWZh", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA @0.2 nozzle.json index 6ca633dbcb4..2d3f9a50260 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic ASA @0.2 nozzle", "inherits": "OrcaArena Generic ASA @base", "from": "system", - "setting_id": "GFSB98_00", + "setting_id": "rV2Uymwz7aoouqiN", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA.json index fd0a01f4847..d092b1f64d4 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic ASA", "inherits": "OrcaArena Generic ASA @base", "from": "system", - "setting_id": "GFSB98", + "setting_id": "8KdojTD3bygYDxwh", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PA-CF.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PA-CF.json index 450fe75872f..caf87f47e91 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PA-CF.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "XHOpI9EFQmYoJ3Sy", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PA.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PA.json index fbca796a40d..2f4438a82bd 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PA.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PA.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN98", + "setting_id": "IintLqJOecQcKmA8", "filament_id": "GFN99", "instantiation": "true", "required_nozzle_HRC": [ diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PC @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PC @0.2 nozzle.json index 77183eea9a8..0a268697765 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PC @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PC @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PC @0.2 nozzle", "inherits": "OrcaArena Generic PC @base", "from": "system", - "setting_id": "GFSC99_00", + "setting_id": "THS8jolD0RsYaFzY", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PC.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PC.json index a56573104bf..024e76e0bc6 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PC.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PC.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PC", "inherits": "OrcaArena Generic PC @base", "from": "system", - "setting_id": "GFSC99", + "setting_id": "WCiW1Yi88MEZIO2h", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG @0.2 nozzle.json index 54567841dcd..375031f137c 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PETG @0.2 nozzle", "inherits": "OrcaArena Generic PETG @base", "from": "system", - "setting_id": "GFSG99_01", + "setting_id": "jcoeFJFmDil7U667", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG-CF @Arena X1C.json index 83aec4fcb94..0a6e9a9dbca 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PETG-CF @Arena X1C", "inherits": "OrcaArena Generic PETG-CF @base", "from": "system", - "setting_id": "GFSG50", + "setting_id": "2OI2L2q50nSxam2z", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG.json index bd5b7ce336e..8771a7b609f 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PETG", "inherits": "OrcaArena Generic PETG @base", "from": "system", - "setting_id": "GFSG99", + "setting_id": "1hFOFT9YOdnKBw1d", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA @0.2 nozzle.json index d10e09f1619..261cd931f6f 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PLA @0.2 nozzle", "inherits": "OrcaArena Generic PLA @base", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "V1TMYgbxBLgciFa2", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA Silk.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA Silk.json index 75b1cb2ce0f..3b6b96bb722 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA Silk.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA Silk.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PLA Silk", "inherits": "OrcaArena Generic PLA Silk @base", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "WRy8oYxZ542SX6jO", "instantiation": "true", "filament_max_volumetric_speed": [ "7.5" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA-CF.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA-CF.json index 9bdb6ec4688..4a04e963602 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA-CF.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PLA-CF", "inherits": "OrcaArena Generic PLA-CF @base", "from": "system", - "setting_id": "GFSL98", + "setting_id": "qHV6B5JvmdtAQeNs", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA.json index 89107d56cdf..2a3aef423ce 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PLA", "inherits": "OrcaArena Generic PLA @base", "from": "system", - "setting_id": "GFSL99", + "setting_id": "jGG0BiyRGgPDP8rB", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA @0.2 nozzle.json index 322b967ee5e..8892aac57f6 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PVA @0.2 nozzle", "inherits": "OrcaArena Generic PVA @base", "from": "system", - "setting_id": "GFSS99_00", + "setting_id": "N6p6wvNCjR4Lv0WC", "instantiation": "true", "filament_max_volumetric_speed": [ "0.5" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA.json index 218e6d34ab3..42a68b5fee8 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PVA", "inherits": "OrcaArena Generic PVA @base", "from": "system", - "setting_id": "GFSS99", + "setting_id": "Qh5TOtrBfOFul0OC", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic TPU.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic TPU.json index d4d216ef46f..a1451c04fde 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic TPU.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic TPU.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSR99", + "setting_id": "uPHnZUr5Sb16uKZm", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C 0.2 nozzle.json index 509a2bd9675..a81e899e43f 100644 --- a/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Arena X1C 0.2 nozzle", "inherits": "PolyLite PLA @Arena X1C", "from": "system", - "setting_id": "GFSL25", + "setting_id": "6Mw8tOe4xZHhhwmm", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C.json b/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C.json index f194b8d358e..91c86c236a4 100644 --- a/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Arena X1C", "inherits": "PolyLite PLA @base", "from": "system", - "setting_id": "GFSL19", + "setting_id": "5MUcuvGZJvFIbeIf", "instantiation": "true", "filament_max_volumetric_speed": [ "15" diff --git a/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C 0.2 nozzle.json index 83728d133d1..18d145f14b5 100644 --- a/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA @Arena X1C 0.2 nozzle", "inherits": "PolyTerra PLA @Arena X1C", "from": "system", - "setting_id": "GFSL24", + "setting_id": "IAZOaMNJd9httELA", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C.json b/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C.json index e01c784ca41..49b9b9412fa 100644 --- a/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA @Arena X1C", "inherits": "PolyTerra PLA @base", "from": "system", - "setting_id": "GFSL18", + "setting_id": "XZzZCDJvw8Ofj1E4", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.2 nozzle.json b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.2 nozzle.json index dd279b8cfc1..06517d190bc 100644 --- a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Orca Arena X1 Carbon 0.2 nozzle", "inherits": "Orca Arena X1 Carbon 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "Sq2AU4u5YdGoPkKZ", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.4 nozzle.json b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.4 nozzle.json index f8f1a1ab22a..e6007fdb929 100644 --- a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.4 nozzle.json +++ b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Orca Arena X1 Carbon 0.4 nozzle", "inherits": "fdm_bbl_3dp_001_common", "from": "system", - "setting_id": "GM001", + "setting_id": "EXhiG8uJ1EHskisx", "instantiation": "true", "printer_model": "Orca Arena X1 Carbon", "default_filament_profile": [ diff --git a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.6 nozzle.json b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.6 nozzle.json index 4f49b8d7956..6da86ae949d 100644 --- a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Orca Arena X1 Carbon 0.6 nozzle", "inherits": "Orca Arena X1 Carbon 0.4 nozzle", "from": "system", - "setting_id": "GM005", + "setting_id": "MBPA7PIjLzEUebvk", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.8 nozzle.json b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.8 nozzle.json index e835097520e..6b96d2648b8 100644 --- a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Orca Arena X1 Carbon 0.8 nozzle", "inherits": "Orca Arena X1 Carbon 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "cU6agIrtxdHgoA0X", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json index 55b10ff8658..c523f9d118f 100644 --- a/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Arena X1C 0.2 nozzle", "inherits": "fdm_process_arena_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "8hA0aiO1Qtv9IfeR", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json b/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json index 58170773875..7eeb047bade 100644 --- a/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Arena X1C", "inherits": "fdm_process_arena_0.08", "from": "system", - "setting_id": "GP001", + "setting_id": "t6ZUh6RIxH5i7Ju0", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json index 5df28b47375..3cd96eb8344 100644 --- a/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Arena X1C 0.2 nozzle", "inherits": "fdm_process_arena_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "AnDHc3M6fQLAl6VE", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json index 78037e2e56f..738a5b15e5a 100644 --- a/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Arena X1C 0.2 nozzle", "inherits": "fdm_process_arena_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "Z4u3mxJ72aSZDIxB", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json b/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json index e3a4c22358e..0e4eb56c4b6 100644 --- a/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Arena X1C", "inherits": "fdm_process_arena_0.12", "from": "system", - "setting_id": "GP002", + "setting_id": "orfsZJWNnKXKdxaZ", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json index 2925b1b5f74..83870674185 100644 --- a/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Arena X1C 0.2 nozzle", "inherits": "fdm_process_arena_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "GO4dmyDkhygncuJZ", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json index 0b6a31ed0ce..aaa79777077 100644 --- a/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Arena X1C 0.2 nozzle", "inherits": "fdm_process_arena_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "MVY5JxFxbdSUWTOW", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json b/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json index 30e9fc7744e..48b9a73569b 100644 --- a/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Arena X1C", "inherits": "fdm_process_arena_0.16", "from": "system", - "setting_id": "GP003", + "setting_id": "KGSeKT36RuDzR3E6", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json index 5fd8f7356a9..17870034562 100644 --- a/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "IbPMWoSXjuZxo5po", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.6 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json b/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json index 2fd3148e2f0..08900994219 100644 --- a/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json @@ -3,7 +3,7 @@ "name": "0.20mm Arena Support W @Arena X1C", "inherits": "fdm_process_arena_0.20", "from": "system", - "setting_id": "GP008", + "setting_id": "GbnCSaKZmIxFJiQU", "instantiation": "true", "enable_support": "1", "support_interface_top_layers": "3", diff --git a/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json b/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json index f4a52fdc418..8065a312e50 100644 --- a/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Arena X1C", "inherits": "fdm_process_arena_0.20", "from": "system", - "setting_id": "GP004", + "setting_id": "vKHHMGciyRPz96ys", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json b/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json index 45191cfadcc..1341747d287 100644 --- a/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json @@ -3,7 +3,7 @@ "name": "0.20mm Strength @Arena X1C", "inherits": "fdm_process_arena_0.20", "from": "system", - "setting_id": "GP013", + "setting_id": "FjVoPLBVhhfkZcti", "instantiation": "true", "outer_wall_speed": "60", "wall_loops": "6", diff --git a/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json b/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json index ad4d86daf6a..1032f70b45e 100644 --- a/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Arena X1C", "inherits": "fdm_process_arena_0.24", "from": "system", - "setting_id": "GP005", + "setting_id": "A3tBfYESL5BUa6az", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json index 3c0911de5ba..6533c7b6a16 100644 --- a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "EHZbaCSjWI2NuLBb", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.6 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json index 2b79fc72eba..444689ccb0e 100644 --- a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Arena X1C 0.8 nozzle", "inherits": "fdm_process_arena_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "YUmFXao5txOnlhO6", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.8 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json b/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json index 302da6382ff..c2f4fb1869f 100644 --- a/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Arena X1C", "inherits": "fdm_process_arena_0.28", "from": "system", - "setting_id": "GP006", + "setting_id": "Q03WAuYXUC4h4Vyk", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.30mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.30mm Standard @Arena X1C 0.6 nozzle.json index 04b8053a6b4..356a1c63a67 100644 --- a/resources/profiles/OrcaArena/process/0.30mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.30mm Standard @Arena X1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "QXic13ZwbeezBFC3", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.6 nozzle" diff --git a/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json index e690dc9c904..24710670e88 100644 --- a/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP036", + "setting_id": "Fta7TXvjXtW72vf2", "instantiation": "true", "wall_loops": "4", "sparse_infill_density": "25%", diff --git a/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json index 2009a871c96..a0673a65ec4 100644 --- a/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Arena X1C 0.8 nozzle", "inherits": "fdm_process_arena_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "B1M42JYHlcp5aUoq", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.8 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json index 7b92f50cfae..486db25408f 100644 --- a/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "N5ONn0pY2DO8xlFq", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.6 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.40mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.40mm Standard @Arena X1C 0.8 nozzle.json index b27d89bccd6..9037e5dda07 100644 --- a/resources/profiles/OrcaArena/process/0.40mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.40mm Standard @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Arena X1C 0.8 nozzle", "inherits": "fdm_process_arena_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "4YeU7BBwA2jQJhyO", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.8 nozzle" diff --git a/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json index d611416d2ec..cfe7f6cdc52 100644 --- a/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "aKOq8cZ3LHNl61tR", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.6 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json index ee0659a5d91..c3346b84fd4 100644 --- a/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Arena X1C 0.8 nozzle", "inherits": "fdm_process_arena_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "ZcviTCabCemJLEEa", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.8 nozzle", diff --git a/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json index 179c263f392..a33f4875ce2 100644 --- a/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Arena X1C 0.8 nozzle", "inherits": "fdm_process_arena_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "tqiu1hNVhXEsBBig", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.8 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary.json b/resources/profiles/OrcaFilamentLibrary.json index 2793d510f05..cd9abd8b0dd 100644 --- a/resources/profiles/OrcaFilamentLibrary.json +++ b/resources/profiles/OrcaFilamentLibrary.json @@ -1,6 +1,6 @@ { "name": "OrcaFilamentLibrary", - "version": "02.04.00.02", + "version": "02.04.00.03", "force_update": "0", "description": "Orca Filament Library", "filament_list": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PA-CF @System.json index 1fd91c38713..cf10b790793 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PA-CF @System.json @@ -3,7 +3,7 @@ "name": "AliZ PA-CF @System", "inherits": "AliZ PA-CF @base", "from": "system", - "setting_id": "AliZGFSA04", + "setting_id": "swYTbQ8tIa0jDyig", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG @System.json index eb98c2bebe8..44abbccf929 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG @System.json @@ -3,7 +3,7 @@ "name": "AliZ PETG @System", "inherits": "AliZ PETG @base", "from": "system", - "setting_id": "AliZGFSA04", + "setting_id": "CjFEZncKH2LZ7Mp5", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @System.json index 073ff49dff8..f461787c2db 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @System.json @@ -3,6 +3,6 @@ "name": "AliZ PETG-CF @System", "inherits": "AliZ PETG-CF @base", "from": "system", - "setting_id": "AliZGFSG50", + "setting_id": "555sCo8kTz4YA1pw", "instantiation": "true" } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @System.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @System.json index 4c50624cf69..0df530eee41 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @System.json @@ -3,7 +3,7 @@ "name": "AliZ PETG-Metal @System", "inherits": "AliZ PETG-Metal @base", "from": "system", - "setting_id": "AliZGFSG50", + "setting_id": "IGZMIStlTq0zC1uf", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PLA @System.json index 2a15c795811..64e720de5dc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PLA @System.json @@ -3,7 +3,7 @@ "name": "AliZ PLA @System", "inherits": "AliZ PLA @base", "from": "system", - "setting_id": "AliZGFSA04", + "setting_id": "VX7vgZ1EKA6FYoud", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @System.json index bce1e7204d8..30b5938bd1d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @System.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @System", "inherits": "Bambu ABS @base", "from": "system", - "setting_id": "OGFSB00", + "setting_id": "iXiD2dx3qXFVPHRi", "instantiation": "true", "fan_max_speed": [ "60" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @System.json index 1e7931ce940..2a0c04401e4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @System.json @@ -3,7 +3,7 @@ "name": "Bambu ABS-GF @System", "inherits": "Bambu ABS-GF @base", "from": "system", - "setting_id": "OGFSB50_00", + "setting_id": "mxgv6vFKgwBAF1Gw", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @System.json index 9e0a8457e5f..d94e4e4d834 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @System.json @@ -3,7 +3,7 @@ "name": "Bambu ASA @System", "inherits": "Bambu ASA @base", "from": "system", - "setting_id": "OGFSB01_00", + "setting_id": "NEYuPnFvaHGhAdpD", "instantiation": "true", "fan_min_speed": [ "25" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @System.json index 1d5027b4319..38ff8539e33 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @System.json @@ -3,7 +3,7 @@ "name": "Bambu ASA-Aero @System", "inherits": "Bambu ASA-Aero @base", "from": "system", - "setting_id": "OGFSB02_00", + "setting_id": "Z1SeI4Lll9gz2USx", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @System.json index 0f13cbfe12b..2185830aa63 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu ASA-CF @System", "inherits": "Bambu ASA-CF @base", "from": "system", - "setting_id": "OGFSB51_00", + "setting_id": "SsFpqlvxTjHLQXaI", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @System.json index 191e1dad740..cadf540846f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PA-CF @System", "inherits": "Bambu PA-CF @base", "from": "system", - "setting_id": "OGFSN00", + "setting_id": "XTve0TGrHzrMdBnZ", "instantiation": "true", "nozzle_temperature_initial_layer": [ "290" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @System.json index 3365706a91d..2d7a0843b36 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PA6-CF @System", "inherits": "Bambu PA6-CF @base", "from": "system", - "setting_id": "OGFSN05_02", + "setting_id": "gVuTMuWZIYCBze5M", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @System.json index 69ba4d9769e..337bcfae2c0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PA6-GF @System", "inherits": "Bambu PA6-GF @base", "from": "system", - "setting_id": "OGFSN08_00", + "setting_id": "tH7iGIF05H81n9Ap", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @System.json index 37142291ee3..c751602c7ad 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PAHT-CF @System", "inherits": "Bambu PAHT-CF @base", "from": "system", - "setting_id": "OGFSN04", + "setting_id": "x7uF6OpFuWDEyTXQ", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @System.json index e418d4b9773..2de9e190d26 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @System.json @@ -3,7 +3,7 @@ "name": "Bambu PC @System", "inherits": "Bambu PC @base", "from": "system", - "setting_id": "OGFSC00", + "setting_id": "piqS3ekvyUfN9dgG", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @System.json index bf7df1f0b02..a3abfb5bd5e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @System.json @@ -3,7 +3,7 @@ "name": "Bambu PC FR @System", "inherits": "Bambu PC FR @base", "from": "system", - "setting_id": "OGFSC01_00", + "setting_id": "m7TaVFWJZUqzf0rP", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @System.json index 276889589b8..629ba1b3c88 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PET-CF @System", "inherits": "Bambu PET-CF @base", "from": "system", - "setting_id": "OGFST01", + "setting_id": "n97P7KBaImDlK41v", "instantiation": "true", "reduce_fan_stop_start_freq": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @System.json index 31f9c87332e..0eb5c7c4609 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @System.json @@ -3,7 +3,7 @@ "name": "Bambu PETG Basic @System", "inherits": "Bambu PETG Basic @base", "from": "system", - "setting_id": "OGFSG00_01", + "setting_id": "CCfgYCmjECjEC2ZS", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @System.json index ab39220bb14..ac9a5c3db07 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PETG HF @System", "inherits": "Bambu PETG HF @base", "from": "system", - "setting_id": "OGFSG02_00", + "setting_id": "yftn2hhK5OuD6W3o", "instantiation": "true", "fan_cooling_layer_time": [ "20" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @System.json index e7a4ab92b75..990343ec8e7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @System.json @@ -3,7 +3,7 @@ "name": "Bambu PETG Translucent @System", "inherits": "Bambu PETG Translucent @base", "from": "system", - "setting_id": "OGFSG01_00", + "setting_id": "qUW9pYQ6aYUpMb2I", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @System.json index 79f83a60b75..2474c3c9da3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PETG-CF @System", "inherits": "Bambu PETG-CF @base", "from": "system", - "setting_id": "OGFSG50_01", + "setting_id": "jQJcpezqrMLc3PM0", "instantiation": "true", "fan_cooling_layer_time": [ "30" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @System.json index ac07c31d481..511914839a5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Aero @System", "inherits": "Bambu PLA Aero @base", "from": "system", - "setting_id": "OGFSA11_01", + "setting_id": "R499nyjJA5r7khOd", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @System.json index 4aa6901b74a..04ae179bcc6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Basic @System", "inherits": "Bambu PLA Basic @base", "from": "system", - "setting_id": "OGFSA00", + "setting_id": "zkc85XTKi4cb6cOw", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @System.json index dbbdc3926c8..15adc3e70f9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Dynamic @System", "inherits": "Bambu PLA Dynamic @base", "from": "system", - "setting_id": "OGFSA13_00", + "setting_id": "NZkeYlElza4KiVEo", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @System.json index 60b063f4d75..69dc00e4e1d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Galaxy @System", "inherits": "Bambu PLA Galaxy @base", "from": "system", - "setting_id": "OGFSA15_00", + "setting_id": "O21mHwtRSSE6HEfS", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @System.json index 290a4e442ed..62b7248f327 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Glow @System", "inherits": "Bambu PLA Glow @base", "from": "system", - "setting_id": "OGFSA12_00", + "setting_id": "BiwTTWJCMV2qcaF1", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @System.json index 081109620c5..342d7667f85 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Impact @System", "inherits": "Bambu PLA Impact @base", "from": "system", - "setting_id": "OGFSA03", + "setting_id": "1qdr65SvIErZzxN3", "instantiation": "true", "filament_max_volumetric_speed": [ "23.2" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @System.json index 4e48f57fb38..0573904f7f9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Marble @System", "inherits": "Bambu PLA Marble @base", "from": "system", - "setting_id": "OGFSA07_00", + "setting_id": "oNGmbbdba2aULYwQ", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @System.json index 4691b05146a..bb359354b1b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Matte @System", "inherits": "Bambu PLA Matte @base", "from": "system", - "setting_id": "OGFSA01", + "setting_id": "POQTCsM5qwSXswgr", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @System.json index bef9200db6e..7a1a9661d8c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Metal @System", "inherits": "Bambu PLA Metal @base", "from": "system", - "setting_id": "OGFSA02", + "setting_id": "7w5T6uXXrwLzQb5D", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @System.json index d1551cdac49..8114f025861 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Silk @System", "inherits": "Bambu PLA Silk @base", "from": "system", - "setting_id": "OGFSA05_01", + "setting_id": "urdS8L3VweWtD0bW", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @System.json index fda0d26d25e..c58e4dbc958 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Silk+ @System", "inherits": "Bambu PLA Silk+ @base", "from": "system", - "setting_id": "OGFSA06_00", + "setting_id": "zsVhjbZLne5ejStD", "instantiation": "true", "supertack_plate_temp": [ "35" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @System.json index eb61c722ed0..e766cc69bc0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Sparkle @System", "inherits": "Bambu PLA Sparkle @base", "from": "system", - "setting_id": "OGFSA08_00", + "setting_id": "nSp6ub9WA5JHbtWd", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @System.json index f97e8f8de49..98ac23e383a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Tough @System", "inherits": "Bambu PLA Tough @base", "from": "system", - "setting_id": "OGFSA09_02", + "setting_id": "ZxjDjF5XAaoeOobw", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @System.json index 28308d0e7f2..4c48b3349b8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Wood @System", "inherits": "Bambu PLA Wood @base", "from": "system", - "setting_id": "OGFSA16_00", + "setting_id": "FJKP4YybAXlqyiRm", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @System.json index 6c22da21234..a677e25a268 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA-CF @System", "inherits": "Bambu PLA-CF @base", "from": "system", - "setting_id": "OGFSA50_01", + "setting_id": "JKf6MqhbAM6NRWNY", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @System.json index 3fc9da6fa6b..4200478407a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PPA-CF @System", "inherits": "Bambu PPA-CF @base", "from": "system", - "setting_id": "OGFSN06_00", + "setting_id": "NEjBweIYKppi6T0Q", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @System.json index 4bc6c18b10d..b0f82e6b71f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @System.json @@ -3,7 +3,7 @@ "name": "Bambu PVA @System", "inherits": "Bambu PVA @base", "from": "system", - "setting_id": "OGFSS04_00", + "setting_id": "Eb9Y2xbVDpjuptrv", "instantiation": "true", "nozzle_temperature": [ "240" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @System.json index 66d00a82b5a..8ebc375bfc8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support For PA/PET @System", "inherits": "Bambu Support For PA/PET @base", "from": "system", - "setting_id": "OGFSS03_00", + "setting_id": "mCBL1pC0zpJgldvZ", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @System.json index ecaa46dd401..062522f7ccd 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support For PLA @System", "inherits": "Bambu Support For PLA @base", "from": "system", - "setting_id": "OGFSS02_02", + "setting_id": "EwkurYYKRtkXvAVY", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @System.json index 883a683ecbe..06af8de8630 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support For PLA/PETG @System", "inherits": "Bambu Support For PLA/PETG @base", "from": "system", - "setting_id": "OGFSS05_00", + "setting_id": "0DgThBMi9bjVyuOg", "instantiation": "true", "eng_plate_temp": [ "60" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @System.json index 8850a48df78..9233ede34d7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support G @System", "inherits": "Bambu Support G @base", "from": "system", - "setting_id": "OGFSS01", + "setting_id": "9W0SIxe7p768jkfE", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @System.json index edbb956b7ce..5902330b254 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support W @System", "inherits": "Bambu Support W @base", "from": "system", - "setting_id": "OGFSS00", + "setting_id": "3nHpt1cLFgd9DAiF", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @System.json index 17988b06164..3e998e0cc41 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support for ABS @System", "inherits": "Bambu Support for ABS @base", "from": "system", - "setting_id": "OGFSS06_00", + "setting_id": "5fy5QeiH5NyGq69r", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @System.json index a9f0036bc62..5973e084b3d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @System.json @@ -3,7 +3,7 @@ "name": "Bambu TPU 95A @System", "inherits": "Bambu TPU 95A @base", "from": "system", - "setting_id": "OGFSU00", + "setting_id": "LVi6dblW9n9rnSNJ", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @System.json index 515cdcbea38..ffa696521a7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @System.json @@ -3,7 +3,7 @@ "name": "Bambu TPU 95A HF @System", "inherits": "Bambu TPU 95A HF @base", "from": "system", - "setting_id": "OGFSU00_00", + "setting_id": "WGZWLSIr7CI2UMB5", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS @System.json index 0601318b97e..d64cf89771c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS @System.json @@ -3,7 +3,7 @@ "name": "COEX ABS @System", "inherits": "COEX ABS @base", "from": "system", - "setting_id": "COXABS01", + "setting_id": "i5h7v70QQ9wy4NYt", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS PRIME @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS PRIME @System.json index 8c412509968..67445118fce 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS PRIME @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS PRIME @System.json @@ -3,7 +3,7 @@ "name": "COEX ABS PRIME @System", "inherits": "COEX ABS PRIME @base", "from": "system", - "setting_id": "CXABSP09", + "setting_id": "vmdyGfZuHpvvozwb", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ASA PRIME @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ASA PRIME @System.json index 42173eb0347..5ce76b57529 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ASA PRIME @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ASA PRIME @System.json @@ -3,7 +3,7 @@ "name": "COEX ASA PRIME @System", "inherits": "COEX ASA PRIME @base", "from": "system", - "setting_id": "CXASAP04", + "setting_id": "lh6T3We3AQa45aKJ", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX PA6-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX PA6-CF @System.json index ff3b4e77fe5..630d146e4c4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX PA6-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX PA6-CF @System.json @@ -3,7 +3,7 @@ "name": "COEX NYLEX PA6-CF @System", "inherits": "COEX NYLEX PA6-CF @base", "from": "system", - "setting_id": "CXPACF23", + "setting_id": "sAQi35NOKJrl1Sre", "instantiation": "true", "filament_max_volumetric_speed": [ "11" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX UNFILLED @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX UNFILLED @System.json deleted file mode 100644 index 5462c9b3980..00000000000 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX UNFILLED @System.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "filament", - "name": "COEX NYLEX PA6-CF @System", - "inherits": "COEX NYLEX PA6-CF @base", - "from": "system", - "setting_id": "CXPAUN21", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "11" - ], - "filament_long_retractions_when_cut": [ - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil" - ], - "compatible_printers": [] -} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PCTG PRIME @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PCTG PRIME @System.json index 3e23c9ce822..7b5ce84f447 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PCTG PRIME @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PCTG PRIME @System.json @@ -3,7 +3,7 @@ "name": "COEX PCTG PRIME @System", "inherits": "COEX PCTG PRIME @base", "from": "system", - "setting_id": "CXPCTG15", + "setting_id": "tacudYmqOs7dg3if", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PETG @System.json index fffdece7ca9..0771bbc9411 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PETG @System.json @@ -3,7 +3,7 @@ "name": "COEX PETG @System", "inherits": "COEX PETG @base", "from": "system", - "setting_id": "CXPETG13", + "setting_id": "lbxaL0svepWiafit", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA @System.json index 4e2f74f8dc9..2b624e25fbf 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA @System.json @@ -3,7 +3,7 @@ "name": "COEX PLA @System", "inherits": "COEX PLA @base", "from": "system", - "setting_id": "C0XPLA02", + "setting_id": "f1S6sfscdACvBAkV", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA PRIME @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA PRIME @System.json index f2fa914be8c..56eed0fe795 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA PRIME @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA PRIME @System.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @System", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "C0XPLA08", + "setting_id": "CM2zZh3KXZnT0YEu", "instantiation": "true", "filament_max_volumetric_speed": [ "15" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA+Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA+Silk @System.json index 6779ea56c2e..7eb37845fa7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA+Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA+Silk @System.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @System", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "C0XPLS03", + "setting_id": "jiNaW1hx0ChKRApF", "instantiation": "true", "filament_max_volumetric_speed": [ "15" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 30D @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 30D @System.json index 0345eccb99b..e68daf7313a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 30D @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 30D @System.json @@ -3,7 +3,7 @@ "name": "COEX TPE 30D @System", "inherits": "COEX TPE 30D @base", "from": "system", - "setting_id": "C0X30D20", + "setting_id": "8J6j9sU1tkqpTVas", "instantiation": "true", "filament_max_volumetric_speed": [ "3.5" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 40D @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 40D @System.json index fc29c8b09b4..bfd56d195d1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 40D @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 40D @System.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @System", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "C0X40D18", + "setting_id": "5O6zPyLhGADPnBCP", "instantiation": "true", "filament_max_volumetric_speed": [ "5.5" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 60D @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 60D @System.json index 46c056d616c..91c6f9f5c72 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 60D @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 60D @System.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @System", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "C0X60D19", + "setting_id": "LXdsCIX0yX1qesC1", "instantiation": "true", "filament_max_volumetric_speed": [ "6.5" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPU 60A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPU 60A @System.json index c027be84661..6405a601f28 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPU 60A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPU 60A @System.json @@ -3,7 +3,7 @@ "name": "COEX TPU 60A @System", "inherits": "COEX TPU 60A @base", "from": "system", - "setting_id": "C0X60A17", + "setting_id": "7CQX9fvYjknjiwmQ", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS @System.json index bb6f1ebd946..6f46fb74dda 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS @System.json @@ -3,7 +3,6 @@ "name": "DREMC ABS @System", "inherits": "DREMC ABS @base", "from": "system", - "setting_id": "DREMC003", "instantiation": "false", "compatible_printers": [] } \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS+ @System.json index 1eb4fcd0762..e9279cc5bae 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS+ @System.json @@ -3,7 +3,6 @@ "name": "DREMC ABS+ @System", "inherits": "DREMC ABS+ @base", "from": "system", - "setting_id": "DREMC004", "instantiation": "false", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS-GF @System.json index 73ffb7f3633..f5cde22b774 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS-GF @System.json @@ -3,7 +3,7 @@ "name": "DREMC ABS-GF @System", "inherits": "DREMC ABS-GF @base", "from": "system", - "setting_id": "DREMC009", + "setting_id": "eWq555EPhD9cVAPL", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA @System.json index b4026708dab..6a11bbe8ced 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA @System.json @@ -3,7 +3,6 @@ "name": "DREMC ASA @System", "inherits": "DREMC ASA @base", "from": "system", - "setting_id": "DREMC005", "instantiation": "false", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA CF @System.json index dd81c1f531b..68143125936 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA CF @System.json @@ -3,7 +3,6 @@ "name": "DREMC ASA CF @System", "inherits": "DREMC ASA CF @base", "from": "system", - "setting_id": "DREMC012_00", "instantiation": "false", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA GF @System.json index c751f9e86c2..e40cd71479c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA GF @System.json @@ -3,7 +3,6 @@ "name": "DREMC ASA GF @System", "inherits": "DREMC ASA GF @base", "from": "system", - "setting_id": "DREMC013_00", "instantiation": "false", "compatible_printers": [] } \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA12-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA12-CF @System.json index a187a36efde..0cecab4c3c0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA12-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA12-CF @System.json @@ -3,7 +3,6 @@ "name": "DREMC PA12-CF @System", "inherits": "DREMC PA12-CF @base", "from": "system", - "setting_id": "DREMC007", "instantiation": "false", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA6-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA6-CF @System.json index 00ee3751c51..61b28cdb4da 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA6-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA6-CF @System.json @@ -3,7 +3,7 @@ "name": "DREMC PA6-CF @System", "inherits": "DREMC PA6-CF @base", "from": "system", - "setting_id": "DREMC006", + "setting_id": "GPnfqyRGptMQSsGP", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PET-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PET-CF @System.json index 5b277a22afe..80100b072f0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PET-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PET-CF @System.json @@ -3,7 +3,6 @@ "name": "DREMC PET-CF @System", "inherits": "DREMC PET-CF @base", "from": "system", - "setting_id": "DREMC008", "instantiation": "false", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PETG @System.json index e5c8e669cbc..04cfb223391 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PETG @System.json @@ -3,7 +3,6 @@ "name": "DREMC PETG @System", "inherits": "DREMC PETG @base", "from": "system", - "setting_id": "DREMC002", "instantiation": "false", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA HS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA HS @System.json index b2b78aa204f..a2b96c18626 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA HS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA HS @System.json @@ -3,7 +3,6 @@ "name": "DREMC PLA+ HS @System", "inherits": "DREMC PLA+ @base", "from": "system", - "setting_id": "DREMC011", "instantiation": "false", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA+ @System.json index 116ce2393fa..71ff24bb1b2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA+ @System.json @@ -3,7 +3,6 @@ "name": "DREMC PLA+ @System", "inherits": "DREMC PLA+ @base", "from": "system", - "setting_id": "DREMC001", "instantiation": "false", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PPA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PPA-CF @System.json index a8b216a7ccd..32edda19c3e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PPA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PPA-CF @System.json @@ -3,7 +3,7 @@ "name": "DREMC PPA-CF @System", "inherits": "DREMC PPA-CF @base", "from": "system", - "setting_id": "DREMC010", + "setting_id": "flUD84NuiAfCit8z", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC TPU 95A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC TPU 95A @System.json index 7645654b4e5..3b58f57d252 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC TPU 95A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC TPU 95A @System.json @@ -3,7 +3,6 @@ "name": "DREMC TPU 95A @System", "inherits": "DREMC TPU 95A @base", "from": "system", - "setting_id": "DREMC010", "instantiation": "false", "filament_max_volumetric_speed": [ "6" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas ASA @System.json index 7cc7ea7eeab..24fdb45be88 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas ASA @System.json @@ -3,7 +3,7 @@ "name": "Elas ASA @System", "inherits": "Elas ASA @base", "from": "system", - "setting_id": "OGFSB01_00", + "setting_id": "xSqkEuXy5sktDx9b", "instantiation": "true", "fan_min_speed": [ "25" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PETG Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PETG Basic @System.json index bdff2ca67b6..0c93f675620 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PETG Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PETG Basic @System.json @@ -3,7 +3,7 @@ "name": "Elas PETG Basic @System", "inherits": "Elas PETG Basic @base", "from": "system", - "setting_id": "OGFSG00_01", + "setting_id": "zS9x67Qf9TSYFmu2", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Basic @System.json index cb36d744d48..158bbfcec76 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Basic @System.json @@ -3,7 +3,7 @@ "name": "Elas PLA Basic @System", "inherits": "Elas PLA Basic @base", "from": "system", - "setting_id": "OGFSA00", + "setting_id": "ClTJxM5nECKvGVNe", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Pro @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Pro @System.json index 6ce30a33b42..c2a18c6495d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Pro @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Pro @System.json @@ -3,7 +3,7 @@ "name": "Elas PLA Pro @System", "inherits": "Elas PLA Pro @base", "from": "system", - "setting_id": "OGFSA00", + "setting_id": "M6lezmKWfkgoj0V0", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ABS @System.json index cee17f94ce1..51121cf6fcd 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ABS @System.json @@ -3,7 +3,7 @@ "name": "Elegoo ABS @System", "inherits": "Elegoo ABS @base", "from": "system", - "setting_id": "OEABSS00", + "setting_id": "UKRDINWkDngjN16F", "instantiation": "true", "renamed_from": "Elegoo ABS", "fan_max_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA @System.json index e5b2e66a103..6bd0ca95fd2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA @System.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @System", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "OEASAS00", + "setting_id": "mpSVVs77BAdKmtP6", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA-CF @System.json index 67881a11521..13266c87b55 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA-CF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA-CF @System", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "OEASACFS00", + "setting_id": "XT1aUl4pe9t0Ijwg", "instantiation": "true", "renamed_from": "Elegoo ASA-CF", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PAHT-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PAHT-CF @System.json index 1f9c14d50df..d7dd19c086b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PAHT-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PAHT-CF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PAHT-CF @System", "inherits": "Elegoo PAHT @base", "from": "system", - "setting_id": "OEPAHTCFS00", + "setting_id": "S073oXCeOlTEqh6L", "instantiation": "true", "renamed_from": "Elegoo PAHT-CF", "close_fan_the_first_x_layers": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC @System.json index 79c73d44005..8d2dcf83b70 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PC @System", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "OEPCS00", + "setting_id": "NlNHcKHlkiq8khIf", "instantiation": "true", "renamed_from": "Elegoo PC", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC-FR @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC-FR @System.json index 22dcd15ad79..1fecee514cd 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC-FR @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC-FR @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PC-FR @System", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "OEPCFRS00", + "setting_id": "JcopkaXZ7YyLjIcw", "instantiation": "true", "renamed_from": "Elegoo PC-FR", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PET-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PET-CF @System.json index 215dd7fb678..0c1c4265b76 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PET-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PET-CF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PET-CF @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETCFS00", + "setting_id": "oloKoC4Bs8dXatMU", "instantiation": "true", "renamed_from": "Elegoo PET-CF", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG @System.json index 00b3abe6ba1..621945f0277 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETGS00", + "setting_id": "4PLHMrDEDw4HLTve", "instantiation": "true", "renamed_from": "Elegoo PETG", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG HF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG HF @System.json index 65ca9560b01..35b941684a8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG HF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG HF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG HF @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OERPETGHFS00", + "setting_id": "d6gNuzrG00SXvMth", "instantiation": "true", "renamed_from": "Elegoo PETG HF", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json index 56220644d99..09d32605c0c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETGPROS00", + "setting_id": "fdfCAYQEoYa9DN6I", "instantiation": "true", "pressure_advance": [ "0.1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG Translucent @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG Translucent @System.json index 90944b22566..0346a8eef01 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG Translucent @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG Translucent @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETGTRANSS00", + "setting_id": "80Auuv3K7l8IptF3", "instantiation": "true", "renamed_from": "Elegoo PETG Translucent", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-CF @System.json index 262967a7a33..81e5b99afcb 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-CF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETGCFS00", + "setting_id": "bXRJMaXxB3V49x7R", "instantiation": "true", "renamed_from": "Elegoo PETG-CF", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-GF @System.json index bcd79021f7f..48cd287ba69 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-GF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETGFS00", + "setting_id": "9NXaejLGh1VFX8bg", "instantiation": "true", "renamed_from": "Elegoo PETG-GF", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA @System.json index c806611a420..6120c0ac977 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAS00", + "setting_id": "jiwZ5eoW1vHoJv9K", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Basic @System.json index d305fe60b2f..cdff566915d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Basic @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLABASICS00", + "setting_id": "qHDFHECwAInvpuk2", "instantiation": "true", "renamed_from": "Elegoo PLA Basic", "nozzle_temperature": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Galaxy @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Galaxy @System.json index 702ca4fbf21..68746954629 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Galaxy @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Galaxy @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAGALAXYS00", + "setting_id": "WXEEksjWsTbRyCPh", "instantiation": "true", "renamed_from": "Elegoo PLA Galaxy", "fan_min_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Glow @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Glow @System.json index b5442c93cf6..1cd70e904bf 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Glow @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Glow @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Glow @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAGLOWS00", + "setting_id": "yFdF2YmEMeCHiPxl", "instantiation": "true", "renamed_from": "Elegoo PLA Glow", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Marble @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Marble @System.json index b9dc7206879..825a6c0dd91 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Marble @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Marble @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAMARBLES00", + "setting_id": "kq7NS8IhIV4cBI1C", "instantiation": "true", "renamed_from": "Elegoo PLA Marble", "fan_min_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Matte @System.json index 6432e78e81f..e1361a4b5b3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Matte @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAMS00", + "setting_id": "UykE255l5V0oS0Ca", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA PRO @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA PRO @System.json index 5f1a94a7446..3526f87a693 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA PRO @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA PRO @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAPROS00", + "setting_id": "62GiUVVZd8kx21vw", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Silk @System.json index dcd0aaceb46..475354ca02d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Silk @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLASS00", + "setting_id": "VkXguNj79KADxuYn", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Sparkle @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Sparkle @System.json index 98efe996aab..fc4070bbe79 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Sparkle @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Sparkle @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLASPARKLES00", + "setting_id": "VwZIFCojZLQLPrI1", "instantiation": "true", "renamed_from": "Elegoo PLA Sparkle", "fan_min_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Translucent2 @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Translucent2 @System.json index 7fd5c824167..178976527f4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Translucent2 @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Translucent2 @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Translucent2 @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLATRA2S00", + "setting_id": "q0koYRlO9X8xLXPM", "instantiation": "true", "renamed_from": "Elegoo PLA Translucent2", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Wood @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Wood @System.json index 10a3680fe99..abae441db56 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Wood @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Wood @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAWOODS00", + "setting_id": "pMgazYJG8tyTpAVE", "instantiation": "true", "renamed_from": "Elegoo PLA Wood", "fan_min_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA+ @System.json index 4074a97c006..b2bd83416d6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA+ @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAPLUSS00", + "setting_id": "q7NpDtaD9dTq1HIZ", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA-CF @System.json index ba130a46b53..4ec26c71ba0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA-CF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLACFS00", + "setting_id": "cYxM93L2KZBnAuWu", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json index 8cfea007489..e593e9d9447 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json @@ -3,7 +3,7 @@ "name": "Elegoo Rapid PETG @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OERPETGS00", + "setting_id": "uUQSVOvP8tAaDqvB", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json index 7913e35ff38..cea129f1254 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json @@ -3,7 +3,7 @@ "name": "Elegoo Rapid PLA+ @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OERPLAPLUSS00", + "setting_id": "HZ4nP67iAG7a243e", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid TPU 95A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid TPU 95A @System.json index 9465a56d7aa..2006a6494b4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid TPU 95A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid TPU 95A @System.json @@ -3,7 +3,7 @@ "name": "Elegoo Rapid TPU 95A @System", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "OERTPU95AS00", + "setting_id": "WXLuO112bsdM37MI", "instantiation": "true", "renamed_from": "Elegoo Rapid TPU 95A", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo TPU 95A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo TPU 95A @System.json index 9c19595a56e..fb4260fae0e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo TPU 95A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo TPU 95A @System.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @System", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "OETPU95AS00", + "setting_id": "SLcn59fIZPDl2brJ", "instantiation": "true", "renamed_from": "Elegoo TPU 95A", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ABS @System.json index 775c51a78ef..6d5dd368bf8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ABS @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP017", - "setting_id": "GFSEP017_00", + "setting_id": "R1lkPc60BdFq6i2Z", "name": "Eolas Prints ABS @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ASA @System.json index c747f8b9e7b..8446ca6746e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ASA @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP018", - "setting_id": "GFSEP018_00", + "setting_id": "JFXFsEzqXxNqxnsL", "name": "Eolas Prints ASA @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG @System.json index 1a263780835..104dd1e567e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP010", - "setting_id": "GFSEP010_00", + "setting_id": "u9fzEmHRAACOHT6J", "name": "Eolas Prints PETG @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG Transition @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG Transition @System.json index 234899a38e4..8e1aa056286 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG Transition @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG Transition @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP012", - "setting_id": "GFSEP012_00", + "setting_id": "BY3z4yKW9PQZwgto", "name": "Eolas Prints PETG Transition @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG UV Resistant @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG UV Resistant @System.json index 399ae3fe721..8c4c299849c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG UV Resistant @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG UV Resistant @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP011", - "setting_id": "GFSEP011_00", + "setting_id": "eexjO9xiesNROPCK", "name": "Eolas Prints PETG UV Resistant @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Antibacterial @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Antibacterial @System.json index 0e4988d1df6..9ce7087dd2f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Antibacterial @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Antibacterial @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP008", - "setting_id": "GFSEP008_00", + "setting_id": "LAihILsSxo3djWjq", "name": "Eolas Prints PLA Antibacterial @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA High Speed @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA High Speed @System.json index 09b4d99bc08..2f7d92c7996 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA High Speed @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA High Speed @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP005", - "setting_id": "GFSEP005_00", + "setting_id": "5g69jS4PRY0PbXvI", "name": "Eolas Prints PLA High Speed @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 850 @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 850 @System.json index 3a09d931d77..7200a7d6313 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 850 @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 850 @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP006", - "setting_id": "GFSEP006_00", + "setting_id": "jdjLUTsIovrt3UAF", "name": "Eolas Prints PLA INGEO 850 @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 870 @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 870 @System.json index 79f29d41512..4df9130980a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 870 @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 870 @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP007", - "setting_id": "GFSEP007_00", + "setting_id": "AafBj7XbFWaNhKHu", "name": "Eolas Prints PLA INGEO 870 @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Matte @System.json index c4fbbff30d5..4b14da901c7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Matte @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP002", - "setting_id": "GFSEP002_00", + "setting_id": "7LiJHuwirgABvbUa", "name": "Eolas Prints PLA Matte @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Neon @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Neon @System.json index 460cf3f291e..b40ce2310bd 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Neon @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Neon @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP004", - "setting_id": "GFSEP004_00", + "setting_id": "sKgUBhF3VvETDkwg", "name": "Eolas Prints PLA Neon @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Premium @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Premium @System.json index 9a33a77f98b..b2455b02e30 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Premium @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Premium @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP001", - "setting_id": "GFSEP001_00", + "setting_id": "O2Ur7FIG2YlVEyZp", "name": "Eolas Prints PLA Premium @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Silk @System.json index db76c2d9831..843cf72fc5c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Silk @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP003", - "setting_id": "GFSEP003_00", + "setting_id": "WN0GdqBsjhvnyDmG", "name": "Eolas Prints PLA Silk @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Transition @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Transition @System.json index 7aad5b1d070..90e0b8d2f44 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Transition @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Transition @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP009", - "setting_id": "GFSEP009_00", + "setting_id": "o3RoG3NGSBlyBkfZ", "name": "Eolas Prints PLA Transition @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex 93A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex 93A @System.json index cc7a405901a..c7b9c261800 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex 93A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex 93A @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP013", - "setting_id": "GFSEP013_00", + "setting_id": "bQPvp6BCMzcG8FOi", "name": "Eolas Prints TPU Flex 93A @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D53 @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D53 @System.json index 1839098e36c..c5a9a84ac30 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D53 @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D53 @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP014", - "setting_id": "GFSEP014_00", + "setting_id": "XIFP4KMuMtXF5bjQ", "name": "Eolas Prints TPU Flex D53 @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D60 UV Resistant @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D60 UV Resistant @System.json index 0a6ef062711..169d681f394 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D60 UV Resistant @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D60 UV Resistant @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP015", - "setting_id": "GFSEP015_00", + "setting_id": "rJmsm0zjvsk9Dy0G", "name": "Eolas Prints TPU D60 UV Resistant @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Transition @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Transition @System.json index 3adc16bcf6f..f5cd2eb40c6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Transition @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Transition @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP016", - "setting_id": "GFSEP016_00", + "setting_id": "CM24KGoHLt0yLH93", "name": "Eolas Prints TPU Transition @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast ABS @System.json index 3d4ac6a90e2..fe0c46bc560 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast ABS @System.json @@ -3,7 +3,7 @@ "name": "FDplast ABS @System", "inherits": "FDplast ABS @base", "from": "system", - "setting_id": "ABS01_00", + "setting_id": "jRvfHo7ROCdAndIE", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast HIPS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast HIPS @System.json index f6da344cd24..5db4e01d786 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast HIPS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast HIPS @System.json @@ -3,7 +3,7 @@ "name": "FDplast HIPS @System", "inherits": "FDplast HIPS @base", "from": "system", - "setting_id": "HIPS01_00", + "setting_id": "SQrCu9aglj2GsMNb", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PETG @System.json index e1e250eafc6..4f9d09ee680 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PETG @System.json @@ -3,7 +3,7 @@ "name": "FDplast PETG @System", "inherits": "FDplast PETG @base", "from": "system", - "setting_id": "PET01_00", + "setting_id": "RlwAEGcf1S6VzDXv", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PLA @System.json index fa1ad2602e5..2c3943b64ee 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PLA @System.json @@ -3,7 +3,7 @@ "name": "FDplast PLA @System", "inherits": "FDplast PLA @base", "from": "system", - "setting_id": "PLA01_00", + "setting_id": "wqCDOOv5DMTIOYnB", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast SBS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast SBS @System.json index c0375e09746..5cb3b5f6f47 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast SBS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast SBS @System.json @@ -3,7 +3,7 @@ "name": "FDplast SBS @System", "inherits": "FDplast SBS @base", "from": "system", - "setting_id": "SBS01_00", + "setting_id": "nIOyJYqe73PKlkmS", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast TPU @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast TPU @System.json index 7bc6bb4fcb0..f88e36dd616 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast TPU @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast TPU @System.json @@ -3,7 +3,7 @@ "name": "FDplast TPU @System", "inherits": "FDplast TPU @base", "from": "system", - "setting_id": "TPU01_00", + "setting_id": "xHtQLOzDScRSbr1f", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PA @System.json index d2991dc99ac..bea08bf527b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PA @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PA @System", "from": "system", - "setting_id": "FILL3D006SYS", + "setting_id": "IX32M9Hib9UlDHuW", "instantiation": "true", "inherits": "FILL3D PA @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG @System.json index 95ed3311454..6600d5fc362 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PETG @System", "from": "system", - "setting_id": "FILL3D003SYS", + "setting_id": "f8kKGdxNz45g3xtZ", "instantiation": "true", "inherits": "FILL3D PETG @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG CF @System.json index a5e54be1cac..093e6d0ba87 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG CF @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PETG CF @System", "from": "system", - "setting_id": "FILL3D007SYS", + "setting_id": "MqNSM5lYck0H1Uyd", "instantiation": "true", "inherits": "FILL3D PETG CF @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Basic @System.json index 698fc219c4d..cbe0c934f2d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Basic @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PLA Basic @System", "from": "system", - "setting_id": "FILL3D002SYS", + "setting_id": "b8Gq0WEZwF3Ty1As", "instantiation": "true", "inherits": "FILL3D PLA Basic @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Turbo @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Turbo @System.json index 235ffc90a4b..6fa7fe27388 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Turbo @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Turbo @System.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "FILL3D001SYS", + "setting_id": "eWB0sfzKjOAnz8iy", "name": "FILL3D PLA Turbo @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PP @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PP @System.json index 995aeb304ef..8a4e89650e5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PP @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PP @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PP @System", "from": "system", - "setting_id": "FILL3D004SYS", + "setting_id": "7FAQwU4JwTfuaGa1", "instantiation": "true", "inherits": "FILL3D PP @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PPCF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PPCF @System.json index 087a168b3af..313b3ff01be 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PPCF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PPCF @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PPCF @System", "from": "system", - "setting_id": "FILL3D005SYS", + "setting_id": "CuI1vfvq3rjnqXQq", "instantiation": "true", "inherits": "FILL3D PPCF @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Lima.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Lima.json index 8a5b7c62c4e..f63b93f11f0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Lima.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Lima.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Amarillo Lima", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "QuJY74Af8ssl9uuB", "filament_id": "FILAR0047", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Radiante.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Radiante.json index 80b1befd65d..75b1bda3c7d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Radiante.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Radiante.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Amarillo Radiante", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "aFO2PDBIQqvNlH9p", "filament_id": "FILAR0048", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Boreal.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Boreal.json index eaf601bb403..ccb0abfbfed 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Boreal.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Boreal.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Azul Boreal", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "JQsOaH7Zcs0cLLPY", "filament_id": "FILAR0049", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Francia.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Francia.json index d1aeed176dd..135bea1c450 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Francia.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Francia.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Azul Francia", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "O24dTvHOzlbikvmq", "filament_id": "FILAR0050", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Imperial.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Imperial.json index 06ce3516e10..af4921a5a87 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Imperial.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Imperial.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Azul Imperial", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "JAUmcvfO2lnmxGj5", "filament_id": "FILAR0051", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Blanco Antartida.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Blanco Antartida.json index e5e2fdbf9f6..19ece09a319 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Blanco Antartida.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Blanco Antartida.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Blanco Antartida", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "dd4fL2ztjz4UiTaG", "filament_id": "FILAR0052", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cian.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cian.json index 379a12065ff..cc9e4d7422b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cian.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cian.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Cian", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "kQFbBS3nxU7M2yPa", "filament_id": "FILAR0053", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Coral.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Coral.json index 15962cc994c..779c773a3e4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Coral.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Coral.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Coral", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "fspbgXmAOWjFBQqh", "filament_id": "FILAR0054", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cristal.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cristal.json index fa13ab3ae9d..00b2b360f5a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cristal.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cristal.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Cristal", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "MnA2FnHdIuViwo41", "filament_id": "FILAR0055", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Ceniza.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Ceniza.json index 59d7b64ed44..194848d1bb5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Ceniza.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Ceniza.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Gris Ceniza", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "oYjDczRs4U1JdteC", "filament_id": "FILAR0056", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Plata.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Plata.json index 9c0668a87b8..bfba887890d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Plata.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Plata.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Gris Plata", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "eCJ5aFcQ00m97U35", "filament_id": "FILAR0057", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Magenta.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Magenta.json index e832faadb60..a7bb2ee141f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Magenta.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Magenta.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Magenta", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "CEOhwBE63SWwuh6P", "filament_id": "FILAR0058", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Negro Azabache.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Negro Azabache.json index 18daa0e204d..6e51c8b2756 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Negro Azabache.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Negro Azabache.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Negro Azabache", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "OPZin7y48ZEeiH8D", "filament_id": "FILAR0059", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Rojo Carmesi.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Rojo Carmesi.json index 54eece5902c..dc573cba915 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Rojo Carmesi.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Rojo Carmesi.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Rojo Carmesi", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "ok1h38XzyQXPBIMM", "filament_id": "FILAR0060", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Amarillo Lirio.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Amarillo Lirio.json index 11344db00ce..6ba4cbfb87e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Amarillo Lirio.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Amarillo Lirio.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Amarillo Lirio", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "sZEY2QrlLsDkgZin", "filament_id": "FILAR0022", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Azul Francia.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Azul Francia.json index 165e6d9fe1a..ffc1c97a5ad 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Azul Francia.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Azul Francia.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Azul Francia", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "kOF3UfqKVqWKFwiH", "filament_id": "FILAR0026", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Antartida.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Antartida.json index e207e068486..a5bfa7d2d2d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Antartida.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Antartida.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Blanco Antartida", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "9KxtnS1WoUAgH323", "filament_id": "FILAR0017", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Calido.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Calido.json index f196d4d2e7e..2f03fc3ce8b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Calido.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Calido.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Blanco Calido", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "pAToQatK3PVTMHrW", "filament_id": "FILAR0018", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Bronce.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Bronce.json index 11a2fb85f15..58eafa2f7c5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Bronce.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Bronce.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Bronce", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "bJuNDmVGIF0TXvkk", "filament_id": "FILAR0001", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cafe con Leche.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cafe con Leche.json index 44f7dedd856..3e98bc7ebf1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cafe con Leche.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cafe con Leche.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Cafe con Leche", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "vlPu3T66cQhIr5nl", "filament_id": "FILAR0006", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Carpincho.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Carpincho.json index 8cc2fd5f359..276d339eaec 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Carpincho.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Carpincho.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Carpincho", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "dNsCH2BVjuq3jrN7", "filament_id": "FILAR0009", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Celeste Cielo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Celeste Cielo.json index a0355fb9187..9294b3e0d54 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Celeste Cielo.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Celeste Cielo.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Celeste Cielo", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "baAQZuzRZD0nwmqH", "filament_id": "FILAR0027", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cobre.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cobre.json index 3acabfaa121..4fd0d180f71 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cobre.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cobre.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Cobre", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "BpYgVH5d3LOdib3U", "filament_id": "FILAR0003", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Dorado.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Dorado.json index 17e58030bff..77c31289ffd 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Dorado.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Dorado.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Dorado", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "KHIdy0oNw9YYDNOD", "filament_id": "FILAR0029", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Ceniza.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Ceniza.json index bb220782125..acd8b8c9a02 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Ceniza.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Ceniza.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Gris Ceniza", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "LBpWNtHWPyZi96wr", "filament_id": "FILAR0025", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Pizarra.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Pizarra.json index 5fb961188ef..1bf3af9593c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Pizarra.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Pizarra.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Gris Pizarra", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "SeePXOShT3cge6TS", "filament_id": "FILAR0024", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Plata.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Plata.json index 98b1a7fef0b..1cb23756fb1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Plata.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Plata.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Gris Plata", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "B6HABCdHSblZS7lQ", "filament_id": "FILAR0002", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Manteca.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Manteca.json index 5ae126efbae..00dbe089e43 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Manteca.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Manteca.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Manteca", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "tR4io22VQO0J8UsV", "filament_id": "FILAR0007", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Marron Oxido.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Marron Oxido.json index 3813ddee5a7..bcd1b5ffb44 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Marron Oxido.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Marron Oxido.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Marron Oxido", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "r9eviTeCeTW4rLuz", "filament_id": "FILAR0008", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Naranja Tigre.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Naranja Tigre.json index 563d8bb3e97..ca76d328c13 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Naranja Tigre.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Naranja Tigre.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Naranja Tigre", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "zLZxXa78e1oiYWSg", "filament_id": "FILAR0020", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Negro Azabache.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Negro Azabache.json index 44b5e7ee430..06082ff8c6d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Negro Azabache.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Negro Azabache.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Negro Azabache", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "glc7ip75qjodcceS", "filament_id": "FILAR0019", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Oro.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Oro.json index bc5150bf301..9cb39d21357 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Oro.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Oro.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Oro", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "hCv43F2tNJagwzC7", "filament_id": "FILAR0028", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Piel.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Piel.json index a422bfc092b..b18da8d2e89 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Piel.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Piel.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Piel", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "6ZwTYvV27Oj3l33v", "filament_id": "FILAR0012", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rojo de Carreras.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rojo de Carreras.json index b9d6a2f2574..516ceb83f96 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rojo de Carreras.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rojo de Carreras.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Rojo de Carreras", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "5dINxIgy0kMYYNDT", "filament_id": "FILAR0021", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Amaranto.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Amaranto.json index aa0b5179dfa..512340cfdf7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Amaranto.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Amaranto.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Rosa Amaranto", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "wgxgJfhOa2ZPikRH", "filament_id": "FILAR0010", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Flamenco.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Flamenco.json index 8e7f67b108b..afe39634fe7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Flamenco.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Flamenco.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Rosa Flamenco", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "FhROwdLMSz3cyRZo", "filament_id": "FILAR0011", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Tabaco.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Tabaco.json index b2e973a0fee..05e71143ca8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Tabaco.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Tabaco.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Tabaco", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "6ax7ka7LBHqhBigT", "filament_id": "FILAR0005", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Titanio.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Titanio.json index bb95f95a113..fe005120453 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Titanio.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Titanio.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Titanio", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "ZRedeSWJhUayeJLw", "filament_id": "FILAR0004", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde FilAr.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde FilAr.json index 8512127f184..da619c819ae 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde FilAr.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde FilAr.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Verde FilAr", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "SYWoimklLqx5O2Xh", "filament_id": "FILAR0013", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Manzana.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Manzana.json index 2f7f30801e1..ac3fae3303f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Manzana.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Manzana.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Verde Manzana", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "FlPRrQEcKnVKwJDM", "filament_id": "FILAR0014", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Oliva.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Oliva.json index 85b31f128ca..a1e594b8407 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Oliva.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Oliva.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Verde Oliva", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "eWAcT15sDLZeV2uS", "filament_id": "FILAR0016", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Pixel.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Pixel.json index c9d98b27502..c6932f6b22e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Pixel.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Pixel.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Verde Pixel", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "Z7toK1R2GuzHVgfo", "filament_id": "FILAR0015", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Violeta Jacaranda.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Violeta Jacaranda.json index cee7b7a2e1a..819187e0fe2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Violeta Jacaranda.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Violeta Jacaranda.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Violeta Jacaranda", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "4VO2Qb2cTXQ1TJv2", "filament_id": "FILAR0023", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Amarillo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Amarillo.json index 4ba42631515..e6e4811b6cc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Amarillo.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Amarillo.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Amarillo", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "f8DPrkYuTUPJ3cru", "filament_id": "FILAR0030", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Azul.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Azul.json index ea4fe63a2b7..d752c695554 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Azul.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Azul.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Azul", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "QMBocqysEed86R9y", "filament_id": "FILAR0031", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Beige.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Beige.json index bee307127d2..3d4c2eb19a9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Beige.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Beige.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Beige", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "XoilIv3HqpDTVRwv", "filament_id": "FILAR0032", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Blanco.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Blanco.json index 20ddf69fd66..d08673007a4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Blanco.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Blanco.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Blanco", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "xkotTQheAIUUhPd7", "filament_id": "FILAR0033", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Bordo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Bordo.json index 9a74f6e8198..8277b745457 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Bordo.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Bordo.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Bordo", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "zV2dKrknk0ThDv36", "filament_id": "FILAR0034", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Celeste Cielo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Celeste Cielo.json index ba363ff6de2..fadf1b26ff3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Celeste Cielo.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Celeste Cielo.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Celeste Cielo", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "UZW4F0aVz1TqstYi", "filament_id": "FILAR0035", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Chocolate.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Chocolate.json index 996657bd0fa..f184b6be291 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Chocolate.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Chocolate.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Chocolate", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "DdW1XKqqRuLM1cAd", "filament_id": "FILAR0036", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Gris.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Gris.json index c12616b93a7..b2740bc3b48 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Gris.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Gris.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Gris", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "6OtKg1UxWuNCqsZy", "filament_id": "FILAR0037", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Marron.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Marron.json index 646fdc68a78..b3190c28d96 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Marron.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Marron.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Marron", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "lKOXMY37q8WpMdBA", "filament_id": "FILAR0038", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Naranja.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Naranja.json index ea32b090a0b..b3fabc3603a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Naranja.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Naranja.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Naranja", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "MabNpNP8G9RqEruP", "filament_id": "FILAR0039", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Negro.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Negro.json index 2c210c4da6b..d46222cad56 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Negro.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Negro.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Negro", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "Jwrm1uuCo7UjvgWn", "filament_id": "FILAR0040", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Piel.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Piel.json index 1d6e17e8415..49fd32c1acd 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Piel.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Piel.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Piel", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "ifbCS3WypTUa1JHr", "filament_id": "FILAR0041", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rojo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rojo.json index dd48e730f3c..63a280b0c4b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rojo.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rojo.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Rojo", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "ak2QX0IS74Nmtyex", "filament_id": "FILAR0042", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rosa.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rosa.json index b04a0e32f81..78208657c8f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rosa.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rosa.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Rosa", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "GrEXuL6TYue238MK", "filament_id": "FILAR0043", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Uva.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Uva.json index ddfc5c4ad7b..860ac8347d7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Uva.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Uva.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Uva", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "PK1CsK7AS1p1IJaR", "filament_id": "FILAR0044", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Verde.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Verde.json index 9cb05a6ac10..7f49cb138e5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Verde.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Verde.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Verde", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "rsLi8jr62hHPgERG", "filament_id": "FILAR0045", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Violeta.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Violeta.json index 77c330fd196..f60b17b69e3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Violeta.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Violeta.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Violeta", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "z2Pk06JzY9Tr1WjQ", "filament_id": "FILAR0046", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @System.json index fbab73234da..f0a11fcd6d5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @System.json @@ -3,7 +3,7 @@ "name": "FusRock ABS-GF @System", "inherits": "FusRock ABS-GF @base", "from": "system", - "setting_id": "OGFSB50_00", + "setting_id": "c2ahYHRLD2RYnPSp", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json index 3a1345d1adb..fa4788b45a5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "W0LP8Ah5MHMzogvV", "filament_id": "OGFB99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json index 11f6376feb7..a4e10439c2e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "bcsNcj4DzLb4K5zN", "filament_id": "OGFB98", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic BVOH @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic BVOH @System.json index 46e27937076..96c3dc4f345 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic BVOH @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic BVOH @System.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @System", "inherits": "fdm_filament_bvoh", "from": "system", - "setting_id": "OGFSS97_00", + "setting_id": "oUpbqz3uzQqND5DG", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic CoPE @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic CoPE @System.json index 021ce7f46df..dbf10cf3f56 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic CoPE @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic CoPE @System.json @@ -3,7 +3,7 @@ "name": "Generic CoPE @System", "inherits": "fdm_filament_cope", "from": "system", - "setting_id": "OGFSC99_00", + "setting_id": "KlHtaJU2GM0uaRGM", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic EVA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic EVA @System.json index a9d9193c5e3..6caf96f6b18 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic EVA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic EVA @System.json @@ -3,7 +3,7 @@ "name": "Generic EVA @System", "inherits": "fdm_filament_eva", "from": "system", - "setting_id": "OGFSR99_00", + "setting_id": "cFGhkhQKiFilQ9gZ", "instantiation": "true", "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic HIPS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic HIPS @System.json index d1508fc78a2..44cedfc8106 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic HIPS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic HIPS @System.json @@ -3,7 +3,7 @@ "name": "Generic HIPS @System", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "OGFSS98_00", + "setting_id": "A7gedcxip65DXKuf", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json index c600d50c857..2cf8b79680a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "9DoeedUBMRPSCyu2", "filament_id": "OGFN99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json index 34ad48d3d0d..f7b9df437a4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "rchW8WI6gcXuAE0V", "filament_id": "OGFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json index 6370c1f0666..fd5c80443c3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "LNjv9LwZnbu7ZASC", "filament_id": "OGFC99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PCTG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PCTG @System.json index 8d6465b80d8..967c5627cb8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PCTG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PCTG @System.json @@ -3,7 +3,7 @@ "name": "Generic PCTG @System", "inherits": "fdm_filament_pctg", "from": "system", - "setting_id": "OGFSG97_00", + "setting_id": "21dhMVBuVwR2lzIX", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PE @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PE @System.json index e84390f8149..844ee902df9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PE @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PE @System.json @@ -3,7 +3,7 @@ "name": "Generic PE @System", "inherits": "fdm_filament_pe", "from": "system", - "setting_id": "OGFSP99_00", + "setting_id": "8HpfeTNwthJ7L0XE", "instantiation": "true", "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PE-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PE-CF @System.json index 29cb34df14b..27ee56eb4b7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PE-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PE-CF @System.json @@ -3,7 +3,7 @@ "name": "Generic PE-CF @System", "inherits": "fdm_filament_pe", "from": "system", - "setting_id": "OGFSP98_00", + "setting_id": "prroSXONXxaahNkq", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json index 13ba96ddaa5..2eb975f56c8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "YiQZfhL6hH0giSHL", "filament_id": "OGFG99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG HF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG HF @System.json index 8c1ae57f7fb..e402cdf7757 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG HF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG HF @System.json @@ -3,7 +3,7 @@ "name": "Generic PETG HF @System", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "OGFSG96_00", + "setting_id": "wNH8CohYIh9y6ayx", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG-CF @System.json index ffca207af16..5ee99ffed99 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG-CF @System.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @System", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "OGFSG50", + "setting_id": "aRVqy4a3X1UTIKem", "instantiation": "true", "fan_cooling_layer_time": [ "30" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PHA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PHA @System.json index 0a902eb9140..dab52192612 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PHA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PHA @System.json @@ -3,7 +3,7 @@ "name": "Generic PHA @System", "inherits": "fdm_filament_pha", "from": "system", - "setting_id": "OGFSR98_00", + "setting_id": "kks2z4JbypqY68RW", "instantiation": "true", "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA @System.json index aacb99a19da..c018544fa5f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "RcBNzytWgwRrwXXz", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json index 57f15195f49..041ff59c44e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json @@ -3,7 +3,7 @@ "name": "Generic PLA High Speed @System", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "OGFSL95_00", + "setting_id": "L9wOwDxavVR7vrL7", "filament_id": "OGFL95", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Matte @System.json index 4cdb2c4846e..d3a6d4813ce 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Matte @System.json @@ -3,7 +3,7 @@ "name": "Generic PLA Matte @System", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "OGFSL99_02", + "setting_id": "RFs9eCKYOMUSmvZf", "instantiation": "true", "filament_max_volumetric_speed": [ "11" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Silk @System.json index 8e13dd1763a..700b80761f8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Silk @System.json @@ -4,7 +4,7 @@ "renamed_from": "Generic Silk PLA @System", "inherits": "fdm_filament_pla_silk", "from": "system", - "setting_id": "OGFSL99_01", + "setting_id": "oPkXDCBrTQB3SRm4", "instantiation": "true", "filament_max_volumetric_speed": [ "7.5" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json index 3e348fdd1c3..d6a80ed8ee2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "l2LkEql1SVH0iRqY", "filament_id": "OGFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP @System.json index c88006c88aa..e2c16e704f6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP @System.json @@ -3,7 +3,7 @@ "name": "Generic PP @System", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "OGFSP97_00", + "setting_id": "yos4oScjK83JuXJV", "instantiation": "true", "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-CF @System.json index cafce705e3f..65420e9daea 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-CF @System.json @@ -3,7 +3,7 @@ "name": "Generic PP-CF @System", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "OGFSP96_00", + "setting_id": "TDHYN3fs5wwakgsM", "instantiation": "true", "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-GF @System.json index 3d527b88726..931ee4b7b37 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-GF @System.json @@ -3,7 +3,7 @@ "name": "Generic PP-GF @System", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "OGFSP97_03", + "setting_id": "xfVrCZ7ySzkpdzX0", "instantiation": "true", "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-CF @System.json index 98a23795320..a5fdd90f9cc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-CF @System.json @@ -3,7 +3,7 @@ "name": "Generic PPA-CF @System", "inherits": "fdm_filament_ppa", "from": "system", - "setting_id": "OGFSN97_00", + "setting_id": "rZpVQIyltFNiQyW3", "instantiation": "true", "fan_max_speed": [ "35" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json index 70e6aff59c3..9ebf9cb6562 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json @@ -3,7 +3,7 @@ "name": "Generic PPA-GF @System", "inherits": "fdm_filament_ppa", "from": "system", - "setting_id": "OGFSN96_00", + "setting_id": "yJCAFLt5wstMgMAY", "filament_id": "OGFN96", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json index 058498e3588..e1cf8643d15 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "1dlLnJKh1HzQCZVJ", "filament_id": "OGFS99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic SBS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic SBS @System.json index 7d33bdac382..082c4dd4bf2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic SBS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic SBS @System.json @@ -3,7 +3,7 @@ "name": "Generic SBS @System", "inherits": "fdm_filament_sbs", "from": "system", - "setting_id": "OGFSL99", + "setting_id": "fjVWcIfxaOAZHNU1", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json index 71ee3d22f1f..be4543b662d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "D6O8IcmSe8WGqOvb", "filament_id": "OGFU99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @System.json index cb1c48538e4..1df792355bd 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @System.json @@ -3,7 +3,7 @@ "name": "GreenGate3D PETG @System", "inherits": "GreenGate3D PETG @base", "from": "system", - "setting_id": "OGG3S00", + "setting_id": "I7HaLYHVMkN4Jo1V", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT ABS @System.json index a70a247b5ed..91b364d5eb3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT ABS @System.json @@ -3,7 +3,7 @@ "name": "NIT ABS @System", "inherits": "NIT ABS @base", "from": "system", - "setting_id": "ABS01_00", + "setting_id": "mmt7wKFsMPBRZSeX", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PETG @System.json index 101dd620581..efecf83176f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PETG @System.json @@ -3,7 +3,7 @@ "name": "NIT PETG @System", "inherits": "NIT PETG @base", "from": "system", - "setting_id": "PET01_00", + "setting_id": "f07BWDWp7pnA3YI2", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PLA @System.json index b5ac1f810f1..c804a384d66 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PLA @System.json @@ -3,7 +3,7 @@ "name": "NIT PLA @System", "inherits": "NIT PLA @base", "from": "system", - "setting_id": "PLA01_00", + "setting_id": "Bb0fr6cpCxR5lOpU", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Numakers/Numakers PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/Numakers PLA+ @System.json index 7d6e811b771..6a778ae1e86 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Numakers/Numakers PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/Numakers PLA+ @System.json @@ -3,7 +3,7 @@ "name": "Numakers PLA+ @System", "inherits": "Numakers PLA+ @base", "from": "system", - "setting_id": "ONMK00", + "setting_id": "SS0Oh47g7sp3IvRA", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @System.json index bcd92c69886..79b7602f02c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @System.json @@ -3,7 +3,7 @@ "name": "Overture ABS Basic @System", "inherits": "Overture ABS Basic @base", "from": "system", - "setting_id": "OVABS08", + "setting_id": "7ne4ExJvVczKYHOi", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ASA @System.json index 3486270813e..673ca2ff444 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ASA @System.json @@ -3,7 +3,7 @@ "name": "Overture ASA @System", "inherits": "Overture ASA @base", "from": "system", - "setting_id": "OGFOT009", + "setting_id": "GjumRFbEzyUItmha", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Air PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Air PLA @System.json index ef3dd2601e3..0448822d338 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Air PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Air PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @System", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "OGFOT006", + "setting_id": "FINUSn8gz6nVXMLU", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Easy PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Easy PLA @System.json index 396d71a6815..f5a2e37f8e2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Easy PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Easy PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @System", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "OGFOT003", + "setting_id": "luYNb9RmaDS1wMB5", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @System.json index 18345b3e050..ec82c504a94 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture Matte PLA @System", "inherits": "Overture Matte PLA @base", "from": "system", - "setting_id": "OGFSL05_00", + "setting_id": "QgAzYZdGd3FQ6yIF", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @System.json index ff06febcf22..497683a974e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture PLA @System", "inherits": "Overture PLA @base", "from": "system", - "setting_id": "OGFSL04_05", + "setting_id": "uSRi3J4c47reOsqv", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA Pro @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA Pro @System.json index 916c386e366..63f7e2ecce6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA Pro @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA Pro @System.json @@ -3,7 +3,7 @@ "name": "Overture PLA Pro @System", "inherits": "Overture PLA Pro @base", "from": "system", - "setting_id": "OGFOT001", + "setting_id": "pynx7PjoLrNXAj6f", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Rock PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Rock PLA @System.json index d6f630803ce..bf0cfbba05b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Rock PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Rock PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @System", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "OGFOT004", + "setting_id": "W22L3Vb1E4K0waZK", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Silk PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Silk PLA @System.json index fe59ce6c19d..70d91bdd6c2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Silk PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Silk PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @System", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "OGFOT002", + "setting_id": "n2SqDdp5PE48ucOS", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Super PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Super PLA+ @System.json index e91e6ccfedd..e6e6dc480d6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Super PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Super PLA+ @System.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @System", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "OGFOT005", + "setting_id": "rFuAYJDK1dZ19PaZ", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @System.json index a3f19530b62..06cb9f6186f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @System.json @@ -3,7 +3,7 @@ "name": "Overture TPU @System", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "OGFOT008", + "setting_id": "ZbdiQn66qeBwzOJY", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @System.json index 5b0c2dd01c6..6b21c132e43 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PA12-CF @System", "inherits": "Fiberon PA12-CF @base", "from": "system", - "setting_id": "OGFSL52_00", + "setting_id": "DfSR5s7vw3ybFiVc", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @System.json index 05524e3fcbe..16be49cf182 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-CF @System", "inherits": "Fiberon PA6-CF @base", "from": "system", - "setting_id": "OGFSL50_00", + "setting_id": "QKvGfZNCeG0GVTTK", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @System.json index 6386d2bfb48..31dc9b0596f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-GF @System", "inherits": "Fiberon PA6-GF @base", "from": "system", - "setting_id": "OGFSL51_00", + "setting_id": "XWAJ7Lf0AdyQMnG0", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @System.json index db7ee4b0b61..725245fee2e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PA612-CF @System", "inherits": "Fiberon PA612-CF @base", "from": "system", - "setting_id": "OGFSL53_00", + "setting_id": "hllt8pc9lbhAqHOb", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @System.json index 62d45dcd52d..05c587f4292 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PET-CF @System", "inherits": "Fiberon PET-CF @base", "from": "system", - "setting_id": "OGFSL54_00", + "setting_id": "1yLcgRWt6LMlWyqN", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @System.json index 1799bf4e922..f6b8ea64686 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PETG-ESD @System", "inherits": "Fiberon PETG-ESD @base", "from": "system", - "setting_id": "OGFSL06_00", + "setting_id": "YAXl9K9A7DKsU1yU", "instantiation": "true", "filament_cost": [ "29.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @System.json index 7a40c19f4eb..e4912cc46c6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PETG-rCF @System", "inherits": "Fiberon PETG-rCF @base", "from": "system", - "setting_id": "OGFSL55_00", + "setting_id": "vwILb2DBGZpjNIov", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma CoPE @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma CoPE @System.json index 5fc606849a9..cbc27619e7d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma CoPE @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma CoPE @System.json @@ -3,7 +3,7 @@ "name": "Panchroma CoPE @System", "inherits": "Panchroma CoPE @base", "from": "system", - "setting_id": "OGFSPM016", + "setting_id": "6dj97PxQneOH6dAh", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA @System.json index 40ff9c990bb..f43166330d6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA @System", "inherits": "Panchroma PLA @base", "from": "system", - "setting_id": "OGFSPM001", + "setting_id": "N9Iv6n4e22ZTLiDa", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Celestial @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Celestial @System.json index 8581c7cbb39..8afc2c094c3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Celestial @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Celestial @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Celestial @System", "inherits": "Panchroma PLA Celestial @base", "from": "system", - "setting_id": "OGFSPM008", + "setting_id": "wZtp5wigxgoyrUYD", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Galaxy @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Galaxy @System.json index 8a4e2b5fcdc..66ce6665480 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Galaxy @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Galaxy @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Galaxy @System", "inherits": "Panchroma PLA Galaxy @base", "from": "system", - "setting_id": "OGFSPM007", + "setting_id": "OFqVtp8Ph7Rv4NxJ", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Glow @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Glow @System.json index c96f2bf8f61..a1116f8262f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Glow @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Glow @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Glow @System", "inherits": "Panchroma PLA Glow @base", "from": "system", - "setting_id": "OGFSPM010", + "setting_id": "WWhhCznk2myreFox", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Luminous @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Luminous @System.json index 3626215821b..268193eb017 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Luminous @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Luminous @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Luminous @System", "inherits": "Panchroma PLA Luminous @base", "from": "system", - "setting_id": "OGFSPM011", + "setting_id": "PMbPN3GQUo55qcZe", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Marble @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Marble @System.json index d610c4e7510..aca60729272 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Marble @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Marble @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Marble @System", "inherits": "Panchroma PLA Marble @base", "from": "system", - "setting_id": "OGFSPM003", + "setting_id": "2MsuI9iRdnQWUItW", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Matte @System.json index a4ad621bcd8..1973c329f3d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Matte @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Matte @System", "inherits": "Panchroma PLA Matte @base", "from": "system", - "setting_id": "GFSPM002", + "setting_id": "odemoI8EABzijzd6", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Metallic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Metallic @System.json index eeb2e5a74a5..127c573fe5e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Metallic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Metallic @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Metallic @System", "inherits": "Panchroma PLA Metallic @base", "from": "system", - "setting_id": "OGFSPM012", + "setting_id": "lXSb7YuhA2jYvk44", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Neon @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Neon @System.json index 80794c33668..2c9b88f0ddf 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Neon @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Neon @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Neon @System", "inherits": "Panchroma PLA Neon @base", "from": "system", - "setting_id": "OGFSPM013", + "setting_id": "LkSJj98giA5JGLbw", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Satin @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Satin @System.json index 7312509117e..47557a94e78 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Satin @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Satin @System.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Stain @System", "inherits": "Panchroma PLA Satin @base", "from": "system", - "setting_id": "OGFSPM005", + "setting_id": "omPWz5nJDQ92U3bY", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Silk @System.json index 1f63d8dca81..2330eb38648 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Silk @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Silk @System", "inherits": "Panchroma PLA Silk @base", "from": "system", - "setting_id": "OGFSPM004", + "setting_id": "FGZUBbTVxiIFjpmZ", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Starlight @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Starlight @System.json index 5568520c0d3..e45f3e63c05 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Starlight @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Starlight @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Starlight @System", "inherits": "Panchroma PLA Starlight @base", "from": "system", - "setting_id": "OGFSPM009", + "setting_id": "is91eRA5OlCQn6zh", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Temp Shift @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Temp Shift @System.json index 7b4adb52302..c8778a3becc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Temp Shift @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Temp Shift @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Temp Shift @System", "inherits": "Panchroma PLA Temp Shift @base", "from": "system", - "setting_id": "OGFSPM015", + "setting_id": "equVvINGgFQE3oRS", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Translucent @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Translucent @System.json index da4d0d2f2e1..81198274a7f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Translucent @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Translucent @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Translucent @System", "inherits": "Panchroma PLA Translucent @base", "from": "system", - "setting_id": "OGFSPM006", + "setting_id": "G3BIFSNwpzBuHMkC", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA UV Shift @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA UV Shift @System.json index 163de000be1..a249e4eadbd 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA UV Shift @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA UV Shift @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA UV Shift @System", "inherits": "Panchroma PLA UV Shift @base", "from": "system", - "setting_id": "OGFSPM014", + "setting_id": "TxKc151gb5dKD6zS", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @System.json index aee4daf92b5..cf06225627e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @System.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @System", "inherits": "PolyLite ABS @base", "from": "system", - "setting_id": "OGFSB60_00", + "setting_id": "X4JvhjTs6f0bFYlF", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @System.json index a4ea4f62943..99745779d3c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @System.json @@ -3,7 +3,7 @@ "name": "PolyLite ASA @System", "inherits": "PolyLite ASA @base", "from": "system", - "setting_id": "OGFSB61_00", + "setting_id": "BtLQdaeWwqydljxS", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite Dual PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite Dual PLA @System.json index b376e015649..4d17382a388 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite Dual PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite Dual PLA @System.json @@ -4,7 +4,7 @@ "renamed_from": "PolyLite Dual PLA", "inherits": "PolyLite PLA @base", "from": "system", - "setting_id": "O64868365", + "setting_id": "ShKfsLXZ1EJ4HgKf", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @System.json index 600a6571e94..2a66342352c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @System.json @@ -3,7 +3,7 @@ "name": "PolyLite PETG @System", "inherits": "PolyLite PETG @base", "from": "system", - "setting_id": "OGFSG60_00", + "setting_id": "iN91PHxwd4XuYhjd", "instantiation": "true", "filament_max_volumetric_speed": [ "11.5" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json index fad2b7bba90..4fc233d3e6d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @System", "inherits": "PolyLite PLA @base", "from": "system", - "setting_id": "OGFSL19", + "setting_id": "MKxTIucBtfpUvIhZ", "filament_id": "OGFL00", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Pro @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Pro @System.json index eb9eb6401fe..76ebf22dc5c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Pro @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Pro @System.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Pro @System", "inherits": "PolyLite PLA Pro @base", "from": "system", - "setting_id": "OGFSPM019", + "setting_id": "ezbCIgCaSiBJvWEL", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json index 3951f1909fe..84b6fb4aeaa 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json @@ -4,7 +4,7 @@ "renamed_from": "PolyTerra Dual PLA", "inherits": "PolyTerra PLA @base", "from": "system", - "setting_id": "O1258005940", + "setting_id": "OajdcsUZSmrTA2vC", "filament_id": "OGFL00-1", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @System.json index 1c8b6f71b9c..2f147e25718 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @System.json @@ -4,7 +4,7 @@ "renamed_from": "PolyTerra PLA", "inherits": "PolyTerra PLA @base", "from": "system", - "setting_id": "OGFSL18", + "setting_id": "FAjd26YkHpb8q5Yt", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA @System.json index f2b00694d94..e2f15397f5b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA @System.json @@ -3,7 +3,7 @@ "name": "Polymaker HT-PLA @System", "inherits": "Polymaker HT-PLA @base", "from": "system", - "setting_id": "OGFSPM017", + "setting_id": "4v9PNyAbuOuQHmG6", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA-GF @System.json index bb0044bae78..2006687ad4e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA-GF @System.json @@ -3,7 +3,7 @@ "name": "Polymaker HT-PLA-GF @System", "inherits": "Polymaker HT-PLA-GF @base", "from": "system", - "setting_id": "OGFSPM018", + "setting_id": "mgyRRh5XU0dM0DrF", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @System.json index 7197fd822bd..8ca90b6de68 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @System.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Marble @System", "inherits": "SUNLU PLA Marble @base", "from": "system", - "setting_id": "OSNLS06", + "setting_id": "KmWzb5zSoGKIqKT6", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @System.json index 2ca48b6142f..8a701f3910f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @System.json @@ -3,7 +3,7 @@ "name": "SUNLU PETG @System", "inherits": "SUNLU PETG @base", "from": "system", - "setting_id": "OSNLS08", + "setting_id": "Kzd2INRTROPH7Zr9", "instantiation": "true", "filament_max_volumetric_speed": [ "14" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @System.json index bddd40c5641..f5a37f6530a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @System.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Matte @System", "inherits": "SUNLU PLA Matte @base", "from": "system", - "setting_id": "OSNLS02", + "setting_id": "dagf4B8EpSz7ToaW", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @System.json index 04a1bd45fe7..e41a66d82f0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @System.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ 2.0 @System", "inherits": "SUNLU PLA+ 2.0 @base", "from": "system", - "setting_id": "OSNLS04", + "setting_id": "8EZyKHm5JquwOtfP", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @System.json index ec7e85a2d24..0dbf2a79b17 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @System.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ @System", "inherits": "SUNLU PLA+ @base", "from": "system", - "setting_id": "OSNLS03", + "setting_id": "L85dCvjbjs3h7XiN", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @System.json index 88ca4ac2882..21b54b8d421 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @System.json @@ -3,7 +3,7 @@ "name": "SUNLU Silk PLA+ @System", "inherits": "SUNLU Silk PLA+ @base", "from": "system", - "setting_id": "OSNLS05", + "setting_id": "erMUhA5Vk38Qc8hN", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @System.json index 3dc62396933..52d0c0f25d5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @System.json @@ -3,7 +3,7 @@ "name": "SUNLU Wood PLA @System", "inherits": "SUNLU Wood PLA @base", "from": "system", - "setting_id": "OSNLS07", + "setting_id": "9pQqWo655Q5DL8c0", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @System.json index 339adb4f630..79ae8ff74c0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @System.json @@ -3,7 +3,7 @@ "name": "Valment PLA @System", "inherits": "Valment PLA @base", "from": "system", - "setting_id": "VLMNT_01", + "setting_id": "yissaEWECKefSRTG", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @System.json index 511e3966f25..8818b8882e1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @System.json @@ -3,7 +3,7 @@ "name": "Valment PLA Galaxy @System", "inherits": "Valment PLA Galaxy @base", "from": "system", - "setting_id": "VLMNT_04", + "setting_id": "Zc1LaY4aMySCBT3M", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @System.json index 5b4437ec0e9..4b672c723ee 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @System.json @@ -3,7 +3,7 @@ "name": "Valment PLA Silk @System", "inherits": "Valment PLA Silk @base", "from": "system", - "setting_id": "VLMNT_02", + "setting_id": "12lhhFnk6kqFu9dI", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @System.json index 3e0e98fea3d..c2ba00d7649 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @System.json @@ -3,7 +3,7 @@ "name": "Valment PLA-CF @System", "inherits": "Valment PLA-CF @base", "from": "system", - "setting_id": "VLMNT_03", + "setting_id": "TQPYW4C5DdUjR0fi", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PETG @System.json index 5e14ab23aa7..523bdf96a81 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PETG @System.json @@ -3,7 +3,7 @@ "name": "eSUN PETG @System", "inherits": "eSUN PETG @base", "from": "system", - "setting_id": "PET01_00", + "setting_id": "tCtt9gmmVOziK1i7", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @System.json index 2389dc4ca58..70455e5f954 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @System.json @@ -3,7 +3,7 @@ "name": "eSUN PLA+ @System", "inherits": "eSUN PLA+ @base", "from": "system", - "setting_id": "OGFSL03_00", + "setting_id": "NA57fOmvp4jNEmn7", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Basic @System.json index b2589f578b1..5edbfbd701d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Basic @System.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Basic @System", "inherits": "eSUN PLA-Basic @base", "from": "system", - "setting_id": "OGFSL04_00", + "setting_id": "Nf2NTWElEKDEeakr", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Marble @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Marble @System.json index 03672365cb3..5f4f8a1b18e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Marble @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Marble @System.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Marble @System", "inherits": "eSUN PLA-Marble @base", "from": "system", - "setting_id": "OGFSL06_00", + "setting_id": "nr31jwZ5zNY6EeY9", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Matte @System.json index 4d3cbc4b59d..7aa06538664 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Matte @System.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Matte @System", "inherits": "eSUN PLA-Matte @base", "from": "system", - "setting_id": "OGFSL05_00", + "setting_id": "xV0KBHENaEdiz9zl", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN ePLA-LW @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN ePLA-LW @System.json index 7109590bec8..138a388419d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN ePLA-LW @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN ePLA-LW @System.json @@ -3,7 +3,7 @@ "name": "eSUN ePLA-LW @System", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "LWSL02_00", + "setting_id": "pYoZnuVPPIlMbdT1", "filament_id": "ESN02", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Peopoly.json b/resources/profiles/Peopoly.json index 92502b774cd..ca6b59fb2b5 100644 --- a/resources/profiles/Peopoly.json +++ b/resources/profiles/Peopoly.json @@ -1,6 +1,6 @@ { "name": "Peopoly", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Peopoly configurations", "machine_model_list": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Generic ABS.json b/resources/profiles/Peopoly/filament/Peopoly Generic ABS.json index 225cbc3dda6..7f38c6044a9 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Generic ABS.json +++ b/resources/profiles/Peopoly/filament/Peopoly Generic ABS.json @@ -3,6 +3,7 @@ "name": "Peopoly Generic ABS", "inherits": "fdm_filament_abs", "from": "system", + "setting_id": "ICnZH4LkPD7c6Lmm", "filament_id": "GFSL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Generic PETG.json b/resources/profiles/Peopoly/filament/Peopoly Generic PETG.json index ebf18f55371..add7c8e295b 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Generic PETG.json +++ b/resources/profiles/Peopoly/filament/Peopoly Generic PETG.json @@ -3,7 +3,7 @@ "name": "Peopoly Generic PETG", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GSPETG-1", + "setting_id": "7LVGx2lNqhBDdYiJ", "filament_id": "GFPETG-1", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json b/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json index 125cae02f48..92a6a01b543 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json +++ b/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json @@ -3,7 +3,7 @@ "name": "Peopoly Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "KNsVV4dvEWAAkzDE", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Lancer ABS-GF.json b/resources/profiles/Peopoly/filament/Peopoly Lancer ABS-GF.json index a874c4e0bcb..c00354396c0 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Lancer ABS-GF.json +++ b/resources/profiles/Peopoly/filament/Peopoly Lancer ABS-GF.json @@ -3,7 +3,7 @@ "name": "Peopoly Lancer ABS-GF", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSL99", + "setting_id": "ufcIVt3x0FqV69h4", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Lancer PET-CF.json b/resources/profiles/Peopoly/filament/Peopoly Lancer PET-CF.json index e205c26ba21..3ec4ef2909d 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Lancer PET-CF.json +++ b/resources/profiles/Peopoly/filament/Peopoly Lancer PET-CF.json @@ -3,7 +3,7 @@ "name": "Peopoly Lancer PET-CF", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSL99", + "setting_id": "xSaZKOpjStJuKiM7", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Lancer PETG-C.json b/resources/profiles/Peopoly/filament/Peopoly Lancer PETG-C.json index 199c236fd11..ccdc0fc0ba6 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Lancer PETG-C.json +++ b/resources/profiles/Peopoly/filament/Peopoly Lancer PETG-C.json @@ -3,7 +3,7 @@ "name": "Peopoly Lancer PETG-C", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSL99", + "setting_id": "aUX6OHQrKPghlPBb", "filament_id": "GFL99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Lancer PLA-C.json b/resources/profiles/Peopoly/filament/Peopoly Lancer PLA-C.json index 590767a0384..7f417378eb0 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Lancer PLA-C.json +++ b/resources/profiles/Peopoly/filament/Peopoly Lancer PLA-C.json @@ -3,7 +3,7 @@ "name": "Peopoly Lancer PLA-C", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "EFHW4uKJCsBCjAEU", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.4 nozzle.json b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.4 nozzle.json index fee341ac675..25ec7c092d1 100644 --- a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.4 nozzle.json +++ b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Peopoly Magneto X 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "e4tGiU9ZtpU54ZUY", "instantiation": "true", "printer_model": "Peopoly Magneto X", "nozzle_diameter": [ diff --git a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.6 nozzle.json b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.6 nozzle.json index f0e1992a0b8..64c47ea748a 100644 --- a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.6 nozzle.json +++ b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Peopoly Magneto X 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "208TaseoGSvPkLuT", "instantiation": "true", "printer_model": "Peopoly Magneto X", "nozzle_diameter": [ diff --git a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.8 nozzle.json b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.8 nozzle.json index 5a59380f1b5..92807f64231 100644 --- a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.8 nozzle.json +++ b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Peopoly Magneto X 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "MWPVJLWHSzm5H2Ec", "instantiation": "true", "printer_model": "Peopoly Magneto X", "nozzle_diameter": [ diff --git a/resources/profiles/Peopoly/process/0.16mm Optimal @MagnetoX.json b/resources/profiles/Peopoly/process/0.16mm Optimal @MagnetoX.json index ae38e1b6f33..7632b5c19f9 100644 --- a/resources/profiles/Peopoly/process/0.16mm Optimal @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.16mm Optimal @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Magneto X", "inherits": "fdm_process_pply_0.16", "from": "system", - "setting_id": "GP003", + "setting_id": "z8gx4LyAjquxYgBn", "instantiation": "true", "compatible_printers": [ "Peopoly Magneto X 0.4 nozzle" diff --git a/resources/profiles/Peopoly/process/0.20mm ABS-GF 0.4 Nozzle Standard @MagnetoX.json b/resources/profiles/Peopoly/process/0.20mm ABS-GF 0.4 Nozzle Standard @MagnetoX.json index e48ea5a3303..0c5d866e8c7 100644 --- a/resources/profiles/Peopoly/process/0.20mm ABS-GF 0.4 Nozzle Standard @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.20mm ABS-GF 0.4 Nozzle Standard @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.20mm ABS-GF 0.4 Nozzle Standard @MagnetoX", "inherits": "fdm_process_pply_0.20", "from": "system", - "setting_id": "GP015", + "setting_id": "tJ54pYmoGnisU6wI", "instantiation": "true", "top_shell_thickness": "0.6", "bridge_flow": "1", diff --git a/resources/profiles/Peopoly/process/0.20mm PET-CF 0.4 Nozzle Standard @MagnetoX.json b/resources/profiles/Peopoly/process/0.20mm PET-CF 0.4 Nozzle Standard @MagnetoX.json index a51fb718b3d..c6c6f01c9af 100644 --- a/resources/profiles/Peopoly/process/0.20mm PET-CF 0.4 Nozzle Standard @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.20mm PET-CF 0.4 Nozzle Standard @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.20mm PET-CF 0.4 Nozzle Standard @MagnetoX", "inherits": "fdm_process_pply_0.20", "from": "system", - "setting_id": "GP016", + "setting_id": "bJFNzjyv23sg2utH", "instantiation": "true", "top_shell_thickness": "0.6", "bridge_flow": "1", diff --git a/resources/profiles/Peopoly/process/0.20mm Standard @MagnetoX.json b/resources/profiles/Peopoly/process/0.20mm Standard @MagnetoX.json index fbb6831e273..ceb21fc1103 100644 --- a/resources/profiles/Peopoly/process/0.20mm Standard @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.20mm Standard @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Magneto X", "inherits": "fdm_process_pply_0.20", "from": "system", - "setting_id": "GP004", + "setting_id": "qVan2trPK4Nkyet7", "instantiation": "true", "compatible_printers": [ "Peopoly Magneto X 0.4 nozzle" diff --git a/resources/profiles/Peopoly/process/0.20mm Strength @MagnetoX.json b/resources/profiles/Peopoly/process/0.20mm Strength @MagnetoX.json index 783ee5f6254..c1aa43f90de 100644 --- a/resources/profiles/Peopoly/process/0.20mm Strength @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.20mm Strength @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.20mm Strength @Magneto X", "inherits": "fdm_process_pply_0.20", "from": "system", - "setting_id": "GP013", + "setting_id": "PABVXPLFXBXP0fp5", "instantiation": "true", "outer_wall_speed": "120", "wall_loops": "6", diff --git a/resources/profiles/Peopoly/process/0.24mm Draft @MagnetoX.json b/resources/profiles/Peopoly/process/0.24mm Draft @MagnetoX.json index e9454785cf1..f0c3f8cb454 100644 --- a/resources/profiles/Peopoly/process/0.24mm Draft @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.24mm Draft @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Magneto X", "inherits": "fdm_process_pply_0.24", "from": "system", - "setting_id": "GP005", + "setting_id": "sznjgFRvZeFVhOcH", "instantiation": "true", "compatible_printers": [ "Peopoly Magneto X 0.4 nozzle" diff --git a/resources/profiles/Peopoly/process/0.28mm Extra Draft @MagnetoX.json b/resources/profiles/Peopoly/process/0.28mm Extra Draft @MagnetoX.json index cc1dc92d3f4..8d72b78d2d8 100644 --- a/resources/profiles/Peopoly/process/0.28mm Extra Draft @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.28mm Extra Draft @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Magneto X", "inherits": "fdm_process_pply_0.28", "from": "system", - "setting_id": "GP006", + "setting_id": "Mi4H9dh97BV2SnOc", "instantiation": "true", "compatible_printers": [ "Peopoly Magneto X 0.4 nozzle" diff --git a/resources/profiles/Peopoly/process/0.30mm Standard @Magneto X 0.6 nozzle.json b/resources/profiles/Peopoly/process/0.30mm Standard @Magneto X 0.6 nozzle.json index caa33841429..93d0160c067 100644 --- a/resources/profiles/Peopoly/process/0.30mm Standard @Magneto X 0.6 nozzle.json +++ b/resources/profiles/Peopoly/process/0.30mm Standard @Magneto X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Magneto X 0.6 nozzle", "inherits": "fdm_process_pply_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP008", + "setting_id": "7bb0lWykeIerjXX0", "instantiation": "true", "outer_wall_speed": "120", "compatible_printers": [ diff --git a/resources/profiles/Peopoly/process/0.40mm Standard @Magneto X 0.8 nozzle.json b/resources/profiles/Peopoly/process/0.40mm Standard @Magneto X 0.8 nozzle.json index a55762cb456..a530ed24a1c 100644 --- a/resources/profiles/Peopoly/process/0.40mm Standard @Magneto X 0.8 nozzle.json +++ b/resources/profiles/Peopoly/process/0.40mm Standard @Magneto X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Magneto X 0.8 nozzle", "inherits": "fdm_process_pply_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "B0SGeztUlumk2uuP", "instantiation": "true", "compatible_printers": [ "Peopoly Magneto X 0.8 nozzle" diff --git a/resources/profiles/Phrozen.json b/resources/profiles/Phrozen.json index de1bd03646e..bd4e6f10818 100644 --- a/resources/profiles/Phrozen.json +++ b/resources/profiles/Phrozen.json @@ -1,6 +1,6 @@ { "name": "Phrozen", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Phrozen configurations", "machine_model_list": [ diff --git a/resources/profiles/Phrozen/filament/Phrozen PLA @Phrozen Arco 0.4 nozzle.json b/resources/profiles/Phrozen/filament/Phrozen PLA @Phrozen Arco 0.4 nozzle.json index 641f68f5543..6453756f9ed 100644 --- a/resources/profiles/Phrozen/filament/Phrozen PLA @Phrozen Arco 0.4 nozzle.json +++ b/resources/profiles/Phrozen/filament/Phrozen PLA @Phrozen Arco 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Phrozen PLA @Phrozen Arco 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Cc3ULDFzvoHwh8bV", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Phrozen/machine/Phrozen Arco 0.4 nozzle.json b/resources/profiles/Phrozen/machine/Phrozen Arco 0.4 nozzle.json index 01b96c81096..051f62fa6c5 100644 --- a/resources/profiles/Phrozen/machine/Phrozen Arco 0.4 nozzle.json +++ b/resources/profiles/Phrozen/machine/Phrozen Arco 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Phrozen Arco 0.4 nozzle", "inherits": "fdm_machine_common", "from": "User", + "setting_id": "lvaYKTUZr5C9jSwk", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Phrozen Arco 0.4 nozzle", diff --git a/resources/profiles/Phrozen/process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json b/resources/profiles/Phrozen/process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json index bde0a17ba35..74be068c382 100644 --- a/resources/profiles/Phrozen/process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json +++ b/resources/profiles/Phrozen/process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Phrozen Arco 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ef03fS2IaCOoU9VN", "instantiation": "true", "print_settings_id": "0.20mm Standard @Phrozen Arco 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Positron3D.json b/resources/profiles/Positron3D.json index ff2ba78243a..d8e066ce730 100644 --- a/resources/profiles/Positron3D.json +++ b/resources/profiles/Positron3D.json @@ -1,6 +1,6 @@ { "name": "Positron 3D", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Positron 3D Printer Profile", "machine_model_list": [ diff --git a/resources/profiles/Positron3D/machine/The Positron 0.2 nozzle.json b/resources/profiles/Positron3D/machine/The Positron 0.2 nozzle.json index 66d5a77a258..5cb62d60f8d 100644 --- a/resources/profiles/Positron3D/machine/The Positron 0.2 nozzle.json +++ b/resources/profiles/Positron3D/machine/The Positron 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "The Positron 0.2 nozzle", "inherits": "fdm_common_the_positron", "from": "system", - "setting_id": "GM002", + "setting_id": "rJkvmsmBm7x7CPtt", "instantiation": "true", "printer_model": "The Positron", "nozzle_diameter": [ diff --git a/resources/profiles/Positron3D/machine/The Positron 0.4 nozzle.json b/resources/profiles/Positron3D/machine/The Positron 0.4 nozzle.json index 79dd2ab46ef..b91eabf9af5 100644 --- a/resources/profiles/Positron3D/machine/The Positron 0.4 nozzle.json +++ b/resources/profiles/Positron3D/machine/The Positron 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "The Positron 0.4 nozzle", "inherits": "fdm_common_the_positron", "from": "system", - "setting_id": "GM001", + "setting_id": "IjBPibVLMqP85BpF", "instantiation": "true", "printer_model": "The Positron", "nozzle_diameter": [ diff --git a/resources/profiles/Positron3D/machine/The Positron 0.6 nozzle.json b/resources/profiles/Positron3D/machine/The Positron 0.6 nozzle.json index 505ea68e514..7f687938762 100644 --- a/resources/profiles/Positron3D/machine/The Positron 0.6 nozzle.json +++ b/resources/profiles/Positron3D/machine/The Positron 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "The Positron 0.6 nozzle", "inherits": "fdm_common_the_positron", "from": "system", - "setting_id": "GM003", + "setting_id": "EbQGBn5iNU08HfZu", "instantiation": "true", "printer_model": "The Positron", "nozzle_diameter": [ diff --git a/resources/profiles/Positron3D/machine/The Positron 0.8 nozzle.json b/resources/profiles/Positron3D/machine/The Positron 0.8 nozzle.json index 703a64c1b1b..d400ee57712 100644 --- a/resources/profiles/Positron3D/machine/The Positron 0.8 nozzle.json +++ b/resources/profiles/Positron3D/machine/The Positron 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "The Positron 0.8 nozzle", "inherits": "fdm_common_the_positron", "from": "system", - "setting_id": "GM004", + "setting_id": "Ayf2E7XkwriXINkt", "instantiation": "true", "printer_model": "The Positron", "nozzle_diameter": [ diff --git a/resources/profiles/Positron3D/process/0.08mm Extra Fine @The Positron.json b/resources/profiles/Positron3D/process/0.08mm Extra Fine @The Positron.json index f3103556b85..3e9dc347bd3 100644 --- a/resources/profiles/Positron3D/process/0.08mm Extra Fine @The Positron.json +++ b/resources/profiles/Positron3D/process/0.08mm Extra Fine @The Positron.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1DDW81XdJwsN54OH", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Positron3D/process/0.12mm Fine @The Positron.json b/resources/profiles/Positron3D/process/0.12mm Fine @The Positron.json index 0535b1fa5ef..2e25633deea 100644 --- a/resources/profiles/Positron3D/process/0.12mm Fine @The Positron.json +++ b/resources/profiles/Positron3D/process/0.12mm Fine @The Positron.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AF0j3ZYJvrFtRnt0", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Positron3D/process/0.16mm Optimal @The Positron.json b/resources/profiles/Positron3D/process/0.16mm Optimal @The Positron.json index 6ce919a0907..0e7d8b5a32c 100644 --- a/resources/profiles/Positron3D/process/0.16mm Optimal @The Positron.json +++ b/resources/profiles/Positron3D/process/0.16mm Optimal @The Positron.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oFGyinsnnFtqnBYJ", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Positron3D/process/0.20mm Standard @The Positron.json b/resources/profiles/Positron3D/process/0.20mm Standard @The Positron.json index fbb1b259ad9..6241eec312c 100644 --- a/resources/profiles/Positron3D/process/0.20mm Standard @The Positron.json +++ b/resources/profiles/Positron3D/process/0.20mm Standard @The Positron.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vA3iTj6YYqIsCzds", "instantiation": "true", "layer_height": "0.2", "compatible_printers": [ diff --git a/resources/profiles/Positron3D/process/0.24mm Draft @The Positron.json b/resources/profiles/Positron3D/process/0.24mm Draft @The Positron.json index 0b403903f15..e8197ab6db2 100644 --- a/resources/profiles/Positron3D/process/0.24mm Draft @The Positron.json +++ b/resources/profiles/Positron3D/process/0.24mm Draft @The Positron.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "9eN5Dg2TWxh9aMmR", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/Positron3D/process/0.28mm Extra Draft @The Positron.json b/resources/profiles/Positron3D/process/0.28mm Extra Draft @The Positron.json index 9184f315379..2249918275a 100644 --- a/resources/profiles/Positron3D/process/0.28mm Extra Draft @The Positron.json +++ b/resources/profiles/Positron3D/process/0.28mm Extra Draft @The Positron.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zdTZXvmpClzt1Auf", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Positron3D/process/0.32mm Extra Draft @The Positron.json b/resources/profiles/Positron3D/process/0.32mm Extra Draft @The Positron.json index 3f5d7764b8b..4666579f597 100644 --- a/resources/profiles/Positron3D/process/0.32mm Extra Draft @The Positron.json +++ b/resources/profiles/Positron3D/process/0.32mm Extra Draft @The Positron.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "yIZoMnh68LVdids0", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Positron3D/process/0.40mm Extra Draft @The Positron.json b/resources/profiles/Positron3D/process/0.40mm Extra Draft @The Positron.json index 52d6f67b530..ea9234a261d 100644 --- a/resources/profiles/Positron3D/process/0.40mm Extra Draft @The Positron.json +++ b/resources/profiles/Positron3D/process/0.40mm Extra Draft @The Positron.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "mbVSwPRefQTypjMo", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Positron3D/process/0.56mm Extra Draft @The Positron.json b/resources/profiles/Positron3D/process/0.56mm Extra Draft @The Positron.json index 1aede3e6ab8..2e6609a8192 100644 --- a/resources/profiles/Positron3D/process/0.56mm Extra Draft @The Positron.json +++ b/resources/profiles/Positron3D/process/0.56mm Extra Draft @The Positron.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "K4GIRPpLzOTWINYH", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Prusa.json b/resources/profiles/Prusa.json index 4448a332461..935de537be7 100644 --- a/resources/profiles/Prusa.json +++ b/resources/profiles/Prusa.json @@ -1,6 +1,6 @@ { "name": "Prusa", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Prusa configurations", "machine_model_list": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.6.json index 3f422bdfe9a..0f666ab11bd 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One 0.6", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AADElwBWs9fzeAKC", "filament_id": "Prusa Generic ABS @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.8.json index a5d617a5bc3..6c046f232fa 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One 0.8", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QLaQiU2tF5ZFTVjP", "filament_id": "Prusa Generic ABS @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.4.json index f52156c97dc..f3c61471ed0 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One HF 0.4", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Sp0sbcvt0EqZ59NT", "filament_id": "Prusa Generic ABS @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.5.json index d451fcec663..b6892f7630d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One HF 0.5", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "U1ih5tnkViqI3vya", "filament_id": "Prusa Generic ABS @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.6.json index 2cbf0243caa..1354767857c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One HF 0.6", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MuqHvIoTlM1Pbs8j", "filament_id": "Prusa Generic ABS @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.8.json index ee2702144ed..513171ea522 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One HF 0.8", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Wbpc2Ddzc3zPnQVr", "filament_id": "Prusa Generic ABS @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One.json index 2801f4d2d5d..a5a1f6cce1a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NajoyXhNAiyJyaRq", "filament_id": "Prusa Generic ABS @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json index fbf4643abce..9cb0f8b0015 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MINIIS 0.25", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NdGEi7BdP59bqz53", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json index 158fe6d3bd7..e1d4f272ae5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MINIIS 0.6", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "f8RXAaEZ13jSgN9u", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json index 099d6102007..a867f7d6a66 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MINIIS 0.8", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0QdQCdtcKqM9HhpD", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json index 09e7153cb0b..c52dd456770 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MINIIS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LmdcShjNmbZ8E5fo", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.25.json index 78efd2aeb95..e141e4925db 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK3.5 0.25", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bQgom9OdLzHf862f", "filament_id": "GFB99_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.6.json index bf3599b449a..9108be7bd01 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK3.5 0.6", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "juio4SnE9x7bcYdO", "filament_id": "GFB99_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.8.json index a94359d17fd..67c49bfe9a9 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK3.5 0.8", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dRt2nKkJ0saWba5s", "filament_id": "GFB99_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5.json index b825f0938fd..c9661131936 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK3.5", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "etTLu2Uk95XriBxT", "filament_id": "GFB99_2", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4.json index 6c2ead055b2..3cbcf73b850 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Yeqfgyq1l0b1tCaT", "instantiation": "true", "filament_flow_ratio": [ "0.926" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.6.json index 2a1727eb82d..fb9f1a07e7a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S 0.6", "inherits": "Prusa Generic ABS @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VVzzIN41B5ADTIeQ", "filament_id": "Generic ABS @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.8.json index 0adaa68e770..856f2cfe6b6 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S 0.8", "inherits": "Prusa Generic ABS @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4705fRqWWP2GZOK8", "filament_id": "Generic ABS @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.4.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.4.json index a1e65aa0b1d..8faf91c1dfb 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S HF0.4", "inherits": "Prusa Generic ABS @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8iqhyZkLiVCvZYLa", "filament_id": "Generic ABS @MK4S HF0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.5.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.5.json index 52aefc367f1..27f7e69c160 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S HF0.5", "inherits": "Prusa Generic ABS @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bf8ANklVcC0xW1rT", "filament_id": "Generic ABS @MK4S HF0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.6.json index 367f2a66d0e..dd6439a0e4c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S HF0.6", "inherits": "Prusa Generic ABS @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZB9vO7AnRqMDCrOy", "filament_id": "Generic ABS @MK4S HF0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.8.json index 3e82415b6a5..3b359aa2fdb 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S HF0.8", "inherits": "Prusa Generic ABS @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7cx9gZh2vUCR0ELG", "filament_id": "Generic ABS @MK4S HF0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S.json index e7a7f3a9e12..6880c7850dd 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mDDX6Hdt6Ee00Iqb", "filament_id": "Generic ABS @MK4S", "instantiation": "true", "close_fan_the_first_x_layers": "4", diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @XL 5T.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @XL 5T.json index b2fd530d457..3aef5fc5e95 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @XL 5T", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BVYagI9PtDtO1Jhu", "instantiation": "true", "nozzle_temperature_intial_layer": "255", "nozzle_temperature": "255", diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @XL.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @XL.json index 0e44380b425..2abed480835 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @XL.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @XL.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @XL", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fN9NUlg8l5DWy4LN", "instantiation": "true", "nozzle_temperature_intial_layer": "255", "nozzle_temperature": "255", diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.6.json index b1559132853..287f5d03f98 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MINIIS 0.6", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "86pFdkE3ly08xst7", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.8.json index d94a824b931..358d9a3c469 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MINIIS 0.8", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yn9imamHaXlFDsPr", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS.json index 48314ec4fb0..1b72e67a4d9 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MINIIS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KFoCfgUW9k9Yglwj", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json index 4c18678a8aa..1622abdbf89 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MK3.5 0.6", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IF0vGesJrPxKZhhP", "filament_id": "GFB99_6", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json index a07115b90a7..bb6fc8b41e5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MK3.5 0.8", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Bl3iXBs56hdXM9SE", "filament_id": "GFB99_7", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json index 93d09040030..b6a08a7c204 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MK3.5", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0luFxwjErjX80SXh", "filament_id": "GFB99_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS.json b/resources/profiles/Prusa/filament/Prusa Generic ABS.json index 8e21b1dbadd..0f77dd0216b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pqQMpMgbSN3XvTdK", "instantiation": "true", "filament_flow_ratio": [ "0.926" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.6.json index 05756705006..5e47c117c67 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One 0.6", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GB4mI21wSfo3jfnQ", "filament_id": "Prusa Generic ASA @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.8.json index b86eedddafa..74cf13fd6a4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One 0.8", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jwPZBZ4B116kCVu9", "filament_id": "Prusa Generic ASA @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.4.json index f494f6fd9b9..8fdca4347e5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One HF 0.4", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3SHxmODIq9SCK4Kd", "filament_id": "Prusa Generic ASA @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.5.json index b61bb7fca83..5f8eaeca43e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One HF 0.5", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RBSMuMnrcTyregVJ", "filament_id": "Prusa Generic ASA @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.6.json index f02855cb517..39b37c3ed87 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One HF 0.6", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5ezNirZa3m7Oi1Ts", "filament_id": "Prusa Generic ASA @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.8.json index bd12c658fc3..782ea4ce944 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One HF 0.8", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EtHBkeDF0LvudfBi", "filament_id": "Prusa Generic ASA @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One.json index 9d8a426834e..2cffdfabe5c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Pg9KDqFB63PFJo3Q", "filament_id": "Prusa Generic ASA @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json index aa5a3dc20f2..213f887ea8a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MINIIS 0.25", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oLhpDGV7BIMFqZZq", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json index 598d17942b3..f94c769d78e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MINIIS 0.6", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CN91PnsqqI5CTRhd", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json index b0fbfdee7b2..0ba51d264d5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MINIIS 0.8", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Mg0Sh8QULakXYt0m", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json index d772d53677f..10aaaf1503c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MINIIS", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "StIz1ZclM5WV6MCC", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json index c1dbdb1608b..ca315a91c40 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK3.5 0.25", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EVFkOOWqYWkUZRQG", "filament_id": "GFB98_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json index 44a503a60ba..f578c5e72ab 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK3.5 0.6", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LW2yi7y86rJ59LMi", "filament_id": "GFB98_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json index b3bee71132a..20625fbc8de 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK3.5 0.8", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5iwLdW6pq5Y4Aziw", "filament_id": "GFB98_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5.json index 4b82efab064..b7825b00e30 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK3.5", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UaLDui75hljyKAkI", "filament_id": "GFB98_2", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4.json index 670de262934..10905e3a24d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ubNQKQ8Ex6khEWaI", "instantiation": "true", "filament_flow_ratio": [ "0.93" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.6.json index a8539be2a27..430313b6e55 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S 0.6", "inherits": "Prusa Generic ASA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j5YvdepMw4z29kzr", "filament_id": "Prusament ASA @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.8.json index 356ba001463..5853f7bc3f5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S 0.8", "inherits": "Prusa Generic ASA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FtVjP8q0MzM0vr2J", "filament_id": "Prusament ASA @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.4.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.4.json index 2d6bf952176..8055c5926bd 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S HF0.4", "inherits": "Prusa Generic ASA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "na3FnleO5uhDF7Yr", "filament_id": "Prusament ASA @MK4S HF0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.5.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.5.json index 12e02b1f739..6bf46c7fdc9 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S HF0.5", "inherits": "Prusa Generic ASA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "meEXtenGq7N4dWf3", "filament_id": "Prusament ASA @MK4S HF0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.6.json index 0a6a3927f18..bd0250e1e9c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S HF0.6", "inherits": "Prusa Generic ASA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o0UhIK80Y28KX3AK", "filament_id": "Prusament ASA @MK4S HF0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.8.json index aec5207b2d4..3c06463b06f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S HF0.8", "inherits": "Prusa Generic ASA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VDDgOXq5iphlyQ5U", "filament_id": "Prusament ASA @MK4S HF0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S.json index b1ad8f35e53..dfc22701748 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5BZ0OsiwFPYGCcBg", "filament_id": "Prusament ASA @MK4S", "instantiation": "true", "close_fan_the_first_x_layers": "4", diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.6.json index f54c333f80c..2f8cb00374b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MINIIS 0.6", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uf2mhiPodkiOu8Ui", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.8.json index da6b89b956c..2a238156f73 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MINIIS 0.8", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GMfOVAhKgKoiGZH5", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS.json index 1c857f4f7a0..9f97b95631f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MINIIS", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o8mGAPApXYWIvPhm", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json index 1a65b94b9e5..a2288b5602a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MK3.5 0.6", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TwgQePxtpUic69Yw", "filament_id": "GFB98_6", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json index fd11ee78817..719e8c0d7a3 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MK3.5 0.8", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TC1QAhU8v7mruXHK", "filament_id": "GFB98_7", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json index e3d8cd48be6..c514c44ceff 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MK3.5", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1s3xgWuvTP6UvMG7", "filament_id": "GFB98_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA.json b/resources/profiles/Prusa/filament/Prusa Generic ASA.json index 409b2e4b0d0..85f1d08da66 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "i5Zm7qbFAtsgG4mF", "instantiation": "true", "filament_flow_ratio": [ "0.93" diff --git a/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL 5T.json b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL 5T.json index 1be78b5d762..467a0e7aad1 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusa Generic FLEX @XL 5T", "inherits": "fdm_filament_flex", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PaXKTb31IFVovWiK", "instantiation": "true", "filament_loading_speed_start": "3", "filament_loading_speed": "28", diff --git a/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL.json b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL.json index abf95d434ec..c6fd0961963 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL.json +++ b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL.json @@ -3,7 +3,7 @@ "name": "Prusa Generic FLEX @XL", "inherits": "fdm_filament_flex", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b5AA45MlL14moY71", "instantiation": "true", "filament_loading_speed_start": "3", "filament_loading_speed": "28", diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.25.json index c2348f6e330..7fdf3018290 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MINIIS 0.25", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tGSqS5YX8FXkVAKa", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.6.json index 62f2dcf8551..ada7470a278 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MINIIS 0.6", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u3ZeKEiAwme06ioU", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.8.json index eeec2383f82..f08a3543720 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MINIIS 0.8", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nE90oPuU8lRFVBCl", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS.json index 31c30b5c62a..1f62ce1a858 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MINIIS", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hda5VGcBTJOFu6B0", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.25.json index 1e784dadb8a..a7f7c13c960 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MK3.5 0.25", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4LeqziiUcsZFvsqn", "filament_id": "GFN99_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.6.json index 2356640975d..4a0860931c3 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MK3.5 0.6", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FoUTZTxQNZRSUZqi", "filament_id": "GFN99_2", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.8.json index 24cd958de12..ef6a9174fb5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MK3.5 0.8", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7Qe2dHRqSOhsuoPn", "filament_id": "GFN99_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5.json index a6d8ba5d789..db9b97feffb 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MK3.5", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HIOtwj2ImWrlXkld", "filament_id": "GFN99_1", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.25.json index 603f8f69e0e..c262a5fe974 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MINIIS 0.25", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "R9H0mIGTEh4rxRag", "instantiation": "true", "filament_type": [ "PA-CF" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.6.json index 4cc4ac1d17d..61047938ef7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MINIIS 0.6", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qy8b2cQmrhmxfUfm", "instantiation": "true", "filament_type": [ "PA-CF" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.8.json index 2c5e0430088..e38f1230382 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MINIIS 0.8", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PNdZVpjyekMxgAWx", "instantiation": "true", "filament_type": [ "PA-CF" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS.json index 1bb5245422e..a41ec893e7c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MINIIS", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "B2SFfVrYjPnN9rw3", "instantiation": "true", "filament_type": [ "PA-CF" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.25.json index 20fa5d76ce2..db39929ab46 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MK3.5 0.25", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BjLde5wICEYFSlu1", "filament_id": "GFN98_4", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.6.json index 5838eb4c77a..0607f4afe29 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MK3.5 0.6", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XgIsgzltjlTU8ixC", "filament_id": "GFN98_2", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.8.json index 9fd5c35027d..3d04097b7d9 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MK3.5 0.8", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b2fjpGuYwbeo7O9K", "filament_id": "GFN98_3", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5.json index d2ed9a16aa5..bf54572e724 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MK3.5", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ko8pHTrnZTzz6LyX", "filament_id": "GFN98_1", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF.json index be29d48cd3f..5144b143d67 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bptwthfCtglFSoMw", "instantiation": "true", "filament_type": [ "PA-CF" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA.json b/resources/profiles/Prusa/filament/Prusa Generic PA.json index 2da3f25a20e..9893d5a3908 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lWO6oNoV0wjzRVja", "instantiation": "true", "nozzle_temperature_initial_layer": [ "280" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.25.json index 1a8d0462a3e..cb00cb55ac3 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MINIIS 0.25", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "P9dO2M6dPICX7rhQ", "instantiation": "true", "filament_max_volumetric_speed": [ "7" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.6.json index 8006fc38ef9..f747f7e54fe 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MINIIS 0.6", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uAzPBVsMr6eS1XXS", "instantiation": "true", "filament_max_volumetric_speed": [ "7" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.8.json index a363e9a4384..0a59345eeff 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MINIIS 0.8", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MZd6zhq1pvhDj6yz", "instantiation": "true", "filament_max_volumetric_speed": [ "7" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS.json index 064e315d1b0..8cbe33d5b7e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MINIIS", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "H7HoG0RfPLMTnCEo", "instantiation": "true", "filament_max_volumetric_speed": [ "7" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.25.json index 1d4690f1987..cf1046b78b4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MK3.5 0.25", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "365PSnHIwQoBabi7", "filament_id": "GFC99_4", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.6.json index 2663beeef77..5641ffefea1 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MK3.5 0.6", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zullllDHKByF2PMu", "filament_id": "GFC99_2", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.8.json index 53887577d4f..2118c4dc43f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MK3.5 0.8", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TTIxalWBM5b6YTJ0", "filament_id": "GFC99_3", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5.json index 4ad0b1bf286..06d150cddcc 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MK3.5", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2h9EbPiUgE3BIHVb", "filament_id": "GFC99_1", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.6.json index 744b1cd9df0..bc82e730f23 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MINIIS 0.6", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oj7iq8Bsz8lYyoG8", "instantiation": "true", "filament_max_volumetric_speed": [ "35" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.8.json index f45beea8716..d8649030817 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MINIIS 0.8", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SK8h5tE5di3YWaJp", "instantiation": "true", "filament_max_volumetric_speed": [ "29" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS.json index 06544e4be0b..96720cc606f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MINIIS", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "onMXXnQNjbSimzbW", "instantiation": "true", "filament_max_volumetric_speed": [ "24" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json index b0a5e199e02..abcfde31e40 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MK3.5 0.6", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MAtF0WCx6uLte1Bq", "filament_id": "GFC99_5", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json index 56475f42e87..d10c44bebef 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MK3.5 0.8", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Om8P3dn8wY6CbdQg", "filament_id": "GFC99_6", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json index f12cdf769df..6e6c9f3747f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MK3.5", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uGi7QoODY99zHuCt", "filament_id": "GFC99_4", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC.json b/resources/profiles/Prusa/filament/Prusa Generic PC.json index 8bcbee49425..3cb8ec5c0df 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "51vavWbGjxnBwH7e", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.6.json index 350ffa824bb..6e1ac6e6218 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One 0.6", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "plb6gY1isTp10Unr", "filament_id": "Prusa Generic PETG @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.8.json index 7009b9620f1..7d19ded509e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One 0.8", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WISyN9WbqoZW5bBy", "filament_id": "Prusa Generic PETG @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.4.json index 9117bd0d5f7..cb0eb3fb5b7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One HF 0.4", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hMxEpxx9ERuIq28Z", "filament_id": "Prusa Generic PETG @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.5.json index cd8ff8db7ce..53e681186f4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One HF 0.5", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HtW04UsVx5VpeLc9", "filament_id": "Prusa Generic PETG @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.6.json index 3d7a3f54687..a6a2b9fc55a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One HF 0.6", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "29TFTfss7xVear5j", "filament_id": "Prusa Generic PETG @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.8.json index 90df5dffc0c..05b926349b3 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One HF 0.8", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N91ct2U3Y3jOat0g", "filament_id": "Prusa Generic PETG @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One.json index b59924bb30c..3e914c0ab96 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VbFWb2QCAMxcrTAW", "filament_id": "Prusa Generic PETG @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json index d54aded7762..b804e798b16 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MINIIS 0.25", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u4zA4rasW1vfwG1o", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json index 1a229b2309a..8d4d00ea991 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MINIIS 0.6", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QJQIAwmRSZW3hNI4", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json index 6f4a32a10f5..81c4d41aaf9 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MINIIS 0.8", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nXFZVAKBc3hkxbRt", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json index a3b1e221d1c..8803f3e7fd0 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MINIIS", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nXB864FJ4Dbz5oXc", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.25.json index 9ef3d4db75d..eccfa418a9e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK3.5 0.25", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "g5YTLp0ZhzbpCD2h", "filament_id": "GFG99_5", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.6.json index fdbde21870b..beacc12d5f7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK3.5 0.6", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6FATkctkE3RaWnWQ", "filament_id": "GFG99_3", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.8.json index 35316f1bbcc..b543c2ffcf8 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK3.5 0.8", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ITT0YpAms3lzeSBk", "filament_id": "GFG99_4", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5.json index cfc5ab8d4ab..e52a1b8628b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK3.5", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "71gokqKp7e6fhhf4", "filament_id": "GFG99_2", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4.json index a7a2131368e..b0e684dd686 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Xk2dCGMzSaT73Gq5", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.6.json index 80defe7aaf7..88d4bb1a2f4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S 0.6", "inherits": "Prusa Generic PETG @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Pci5FyYkl7E87APR", "filament_id": "Generic PETG @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.8.json index 3124648a4bc..358eac5276e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S 0.8", "inherits": "Prusa Generic PETG @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gBfDSTXrnY1HRyw7", "filament_id": "Generic PETG @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.4.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.4.json index 45fda8c566f..efbf8db0c75 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S HF0.4", "inherits": "Prusa Generic PETG @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4pbIJVV1D2h5O3WZ", "filament_id": "Generic PETG @MK4S HF0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.5.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.5.json index fff8cc9071a..3225bdfb2cd 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S HF0.5", "inherits": "Prusa Generic PETG @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vO26JgugJEsX5z6a", "filament_id": "Generic PETG @MK4S HF0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.6.json index 50c10fd3d87..56e0d1b40d7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S HF0.6", "inherits": "Prusa Generic PETG @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tv7OUJ7pSPHTkE89", "filament_id": "Generic PETG @MK4S HF0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.8.json index ce57b58568c..21b47aca864 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S HF0.8", "inherits": "Prusa Generic PETG @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wHfH0a2TgTYr9rWF", "filament_id": "Generic PETG @MK4S HF0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S.json index 5dda23b637e..b807315eff6 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IGfvc0jGdG6evRj8", "filament_id": "Generic PETG @MK4S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @XL 5T.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @XL 5T.json index 767491c8e63..3a90f360352 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @XL 5T", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFG99_PRUSA_0", + "setting_id": "FbtB9og6yXm2ZktD", "instantiation": "true", "nozzle_temperature_intial_layer": "230", "nozzle_temperature": "240", diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @XL.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @XL.json index a6109d6b5a4..14cb0f610bd 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @XL.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @XL.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @XL", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SQKcHBt6A4D8PwFZ", "instantiation": "true", "nozzle_temperature_intial_layer": "230", "nozzle_temperature": "240", diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.6.json index 4f93905340e..03675e06e70 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MINIIS 0.6", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tt7C6k90F51Q17NL", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.8.json index 086a3187b93..86b9431c5f0 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MINIIS 0.8", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hivI3u5bpGKEJuPR", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS.json index 1184937dcdd..8df215da568 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MINIIS", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SHIhEzb8wJonmulf", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json index 084a5461147..7459bccd56b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MK3.5 0.6", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Hw54qxSSdBrcOr4r", "filament_id": "GFG99_6", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json index 99d9c555b5a..36582d0481b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MK3.5 0.8", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "txhzOPQmzVqkcdnP", "filament_id": "GFG99_7", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json index c2da44670ca..6cd401b6c6e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MK3.5", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OjIQqC3uJdpcLqlG", "filament_id": "GFG99_5", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG.json b/resources/profiles/Prusa/filament/Prusa Generic PETG.json index f6649e47681..6963412e1c5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b55Rd5kKGP1A3BM2", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.6.json index 522e9a60832..dbf18623822 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One 0.6", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8kSIJx0dpaelcAos", "filament_id": "Prusa Generic PLA @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.8.json index 94124ca78d1..a10f1da37a4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One 0.8", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qlG6J2sXs80HpkCl", "filament_id": "Prusa Generic PLA @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.4.json index 8fe73a6f643..19b8d0c4df0 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One HF 0.4", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KzpBU6cAAqm7z0Sg", "filament_id": "Prusa Generic PLA @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.5.json index 0406d8ba425..786bf2adab8 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One HF 0.5", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2G99enCGyOVjrOlt", "filament_id": "Prusa Generic PLA @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.6.json index d8513146c12..e325a17ac0b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One HF 0.6", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iNQhrPrIj4GphWxI", "filament_id": "Prusa Generic PLA @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.8.json index 46fcbc9ea2f..cb895cd542a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One HF 0.8", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YIm5w8btcXZqnNFB", "filament_id": "Prusa Generic PLA @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One.json index 8ce0a4f9c4d..faaa585e919 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NDBqFGNNvKxlmo3V", "filament_id": "Prusa Generic PLA @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.25.json index 7faa0a38a5f..67a5bbca626 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MINIIS 0.25", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GOomDjqbF1CGAy8O", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.6.json index dcba99c97bc..7bb32fd4d9e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MINIIS 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rKRRhdLk0Heg3slz", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.8.json index 13afbdbb242..96016b318a2 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MINIIS 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XC2NBSQXjiKIXnTi", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS.json index b13314bbe4d..2de81c0947e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MINIIS", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GUG6Ug0cZt0gs2Z2", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.25.json index b4abb7874fa..ade1148e1df 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK3.5 0.25", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mQtIWbOJ2a4TMYxU", "filament_id": "GFL99_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.6.json index af0c20eb4f4..6b4a104bd08 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK3.5 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lSbYoT83cp2tQjk3", "filament_id": "GFL99_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.8.json index 3792633a381..13853813fba 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK3.5 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kZuzkEvYEluqlAfM", "filament_id": "GFL99_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5.json index 180407667f6..c1d96ae9ed0 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK3.5", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ojwcK3bKU2Jyosws", "filament_id": "GFL99_2", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4.json index f803bbd91ea..13a0df5f2b6 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1aLBPgVpr7XZmmX6", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.6.json index 92f6ad54a69..b8cffb4b74f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S 0.6", "inherits": "Prusa Generic PLA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6pZohvVY1eUGi2k8", "filament_id": "Generic PLA @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.8.json index d3e65cb8ec8..d7bf8889ea5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S 0.8", "inherits": "Prusa Generic PLA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8z66T4ABcY8PLJMB", "filament_id": "Generic PLA @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.4.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.4.json index be78a202eaa..d9485b0a57f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S HF0.4", "inherits": "Prusa Generic PLA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LV8qQ1t2CmhHaRSA", "filament_id": "Generic PLA @MK4S HF0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.5.json index c2d51ef3e40..7cc2615b2bb 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S HF0.5", "inherits": "Prusa Generic PLA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WH3bJGQGSliMx6ta", "filament_id": "Generic PLA @MK4S HF0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.6.json index e5a34fd2bc6..a5f5e8b490b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S HF0.6", "inherits": "Prusa Generic PLA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "du6Gy8TCxk5z7hPx", "filament_id": "Generic PLA @MK4S HF0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.8.json index 98d80a0525b..f145d7c0d2b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S HF0.8", "inherits": "Prusa Generic PLA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aLcAkl8Zt2D5lOTp", "filament_id": "Generic PLA @MK4S HF0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S.json index af802ca8db1..e0c8ceedd46 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CqlMmArE8Llbji7t", "filament_id": "Generic PLA @MK4S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @XL 5T.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @XL 5T.json index 8361effc543..9264a2b0c1b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @XL 5T", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "orBUSq1sDBeMGMON", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "210", diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @XL.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @XL.json index 883872baed3..fd1ffa1425d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @XL.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @XL.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @XL", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tGG7egsphB0I1i6Z", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "210", diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.6.json index ba828b8b904..7ae24d6fe7a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MINIIS 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "A6tgkt5mCN7hFzoU", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.8.json index e4fd305e371..10353f147e0 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MINIIS 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3MSF1ZEw3D7bVhEI", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS.json index f38abbe455e..ea67606d374 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MINIIS", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eVuV41lUXe9SEmeh", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json index d4206aa7a4b..fe7364310d2 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MK3.5 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IHOsyOhMvOcpHGtG", "filament_id": "GFL99_6", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json index ff9a87dacff..26f2f013e7e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MK3.5 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GYne0LPI8ooQJe08", "filament_id": "GFL99_7", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json index d393b326dc2..6d89453bd8d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MK3.5", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Bq51JVrGGEktAqIh", "filament_id": "GFL99_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.6.json index d24a4d29139..7ec1605d588 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @CORE One 0.6", "inherits": "Prusa Generic PLA Silk @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QUaunbCOoBxA8fyJ", "filament_id": "Prusa Generic PLA Silk @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.8.json index c60ffe2ce47..fdce38720a8 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @CORE One 0.8", "inherits": "Prusa Generic PLA Silk @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "y2IZMYPduRS1mEFL", "filament_id": "Prusa Generic PLA Silk @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One.json index 9a69c2890f8..3cdf40ad50e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @CORE One", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CYztrVFVOPD3RHJx", "filament_id": "Prusa Generic PLA Silk @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.6.json index 43f2e5dad0b..a6597f5edf2 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @MK4S 0.6", "inherits": "Prusa Generic PLA Silk @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e1pUu3Y5pDr7LzNu", "filament_id": "Generic PLA Silk @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.8.json index 5c6297b6197..f9e7154bdf5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @MK4S 0.8", "inherits": "Prusa Generic PLA Silk @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Yw5uZEeqmR9elIn6", "filament_id": "Generic PLA Silk @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json index 07e74a9dc21..248fec014ee 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @MK4S", "inherits": "Prusa Generic PLA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ngtF8hwv8cSubcR1", "filament_id": "Generic PLA Silk @MK4S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.25.json index 9e61ca30138..8b41f21ce16 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MINIIS 0.25", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Sv0IcpOJBk95F94d", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.6.json index dc89e49b57c..642ec54a07c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MINIIS 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tKAu2YX7WADQuJqv", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.8.json index 61a21569802..90be6a17031 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MINIIS 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dHVVnfZSJ6xEgzdQ", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS.json index 7012fb86fd4..1be8101e9a0 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MINIIS", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VESr5xWPvPIlhyKh", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.25.json index 5baef9b2a1c..632de6b4301 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MK3.5 0.25", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Pi3x8Wj5sdB7TDDK", "filament_id": "GFL98_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.6.json index ba366236ca2..ec4bb6ee6ae 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MK3.5 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vtxoJOj2lc1qxV3H", "filament_id": "GFL98_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.8.json index 6eee5e0a198..eb7f730ef5b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MK3.5 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9gYj4jTP6y4UmR9s", "filament_id": "GFL98_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5.json index 08b3719a7ce..df82e01d98a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MK3.5", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yQASt4Ej55vgeZAN", "filament_id": "GFL98_1", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF.json index c703c71bd1c..8e24ebcd12a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NqmFeHNZtfNefmvd", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA.json b/resources/profiles/Prusa/filament/Prusa Generic PLA.json index 9ee03a2da0c..ae5ca3e50c8 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pKHhR3Hx6AUoyIO3", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.25.json index 9f8e934961c..7391c7c004c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MINIIS 0.25", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "B0Dmo1DvtrwBwM7U", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.6.json index 27fda979614..fadbdc53b20 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MINIIS 0.6", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yGTFSZeo1sUdCpeO", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.8.json index 643ac5f52f2..18e1965b763 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MINIIS 0.8", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ISdXFzAcVUj3ZIfQ", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS.json index ed0c3cc9758..9598a6f09b2 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MINIIS", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rhZNRY8BNI1TskG2", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.25.json index d650cae4bc9..440310acd71 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MK3.5 0.25", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ciRHVEjYNqjT5EsD", "filament_id": "GFS99_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.6.json index 88b87fd1e66..7f54ae1a7ae 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MK3.5 0.6", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "G8TFM51vPvMbGSbX", "filament_id": "GFS99_2", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.8.json index 3711185f82a..1b6798fd1ae 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MK3.5 0.8", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hueUgJutZ71scT6F", "filament_id": "GFS99_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5.json index 30bf13b337b..9ac04757e7b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MK3.5", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yaPlNuxryIpkxiOe", "filament_id": "GFS99_1", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.6.json index 13bd0e73b31..3bc8a6b7aaa 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MINIIS 0.6", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4C7OAcG8LVPSTJsh", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.8.json index 1433e482abc..b26ca248ad7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MINIIS 0.8", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xj6xYUYJ0tAnfgao", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS.json index a7820c46ecf..cd7b4f7b7d1 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MINIIS", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9MNzR7N4A1k64jne", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json index 2f435269303..bcd14e6b66a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MK3.5 0.6", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NfhvtCbeYlQ3el2O", "filament_id": "GFS99_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json index 80bacc7aed9..8495914c137 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MK3.5 0.8", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "J5PBEm3LvfpztfXU", "filament_id": "GFS99_6", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json index 0b9aa3e351f..97b2d1ff896 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MK3.5", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "X2k0n055aaG1zc0u", "filament_id": "GFS99_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA.json b/resources/profiles/Prusa/filament/Prusa Generic PVA.json index 513209be5f4..17476b1ce51 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yLrgUDS7cr4AkOed", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.6.json index 032162ad917..fff78aec9fa 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @CORE One 0.6", "inherits": "Prusa Generic TPU @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OulnL3bWrEpRJbgJ", "filament_id": "Prusa Generic TPU @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.8.json index e56d19bcaa5..4ba3f082221 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @CORE One 0.8", "inherits": "Prusa Generic TPU @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9fAhdX2hOAnUDn1I", "filament_id": "Prusa Generic TPU @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One.json index 12865133cb9..9cba165705f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @CORE One", "inherits": "fdm_filament_flex", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VR2WfERGWPIWTRha", "filament_id": "Prusa Generic TPU @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MINIIS.json index 910fd8fdcee..8acb55983c4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MINIIS", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TUqkAb8i9HpFdiCy", "instantiation": "true", "filament_max_volumetric_speed": [ "1.35" diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK3.5.json index 446e7e346a6..bc6d7ad1266 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MK3.5", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wfxLtrIAOgG7TKib", "filament_id": "GFU99_2", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4.json index ba700c28bf8..01db48abbf4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MK4", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9KjaEcwnQA8CsnVy", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.6.json index 880e921c6e6..89b8a94856c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MK4S 0.6", "inherits": "Prusa Generic TPU @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3zJSkjnxFgeAbkhY", "filament_id": "Generic FLEX @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.8.json index 0c09b84e9a7..0230b22bea0 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MK4S 0.8", "inherits": "Prusa Generic TPU @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tRRHfIUwFo1C8Q3B", "filament_id": "Generic FLEX @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S.json index bf8ebf32ca1..3fec5776ecc 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MK4S", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JxNaZsG7Y2rQKATV", "filament_id": "Generic FLEX @MK4S", "instantiation": "true", "close_fan_the_first_x_layers": "3", diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MINIIS.json index 7a750f318b4..271c36e1834 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU HF @MINIIS", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "a9fmPCI24EJoJ5OH", "instantiation": "true", "filament_max_volumetric_speed": [ "10" diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json index 6f4fb83093b..91e97c53240 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU HF @MK3.5", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Gfuy9ZSCpJw3Usa6", "filament_id": "GFU99_3", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU.json b/resources/profiles/Prusa/filament/Prusa Generic TPU.json index 62fd1a32d5e..58324d477d6 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l9s40Rloq4urv3Y0", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.6.json index d5f76542865..b3fe97133a7 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One 0.6", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XlSISsmFlPbj3BOn", "filament_id": "Prusament ASA @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.8.json index 66bb1e5c5b2..330f3a7643a 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One 0.8", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "89B204vxbuUqB3Os", "filament_id": "Prusament ASA @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.4.json index 7e59f85b1f2..ace3c0cb550 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One HF 0.4", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tXktQXr79am1s5UL", "filament_id": "Prusament ASA @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.5.json index f6420c5f2cc..365a4f56a74 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One HF 0.5", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YbyojtjXvEtI4Tt3", "filament_id": "Prusament ASA @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.6.json index 57e0e005ee5..9f79b6842a0 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One HF 0.6", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "35H9TLr1p2Jy767g", "filament_id": "Prusament ASA @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.8.json index d20ad22e105..b006ea74c1d 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One HF 0.8", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "efgN1KmROfVKa86P", "filament_id": "Prusament ASA @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One.json index cf96e22f80f..1ca52228592 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UUTjJ4Y8St3c87jD", "filament_id": "Prusament ASA @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @XL 5T.json b/resources/profiles/Prusa/filament/Prusament ASA @XL 5T.json index 56ab9472106..87d14f9e8fd 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @XL 5T", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IQu91UAWOJOQcUq9", "instantiation": "true", "nozzle_temperature_intial_layer": "260", "nozzle_temperature": "260", diff --git a/resources/profiles/Prusa/filament/Prusament ASA @XL.json b/resources/profiles/Prusa/filament/Prusament ASA @XL.json index 02078dcac60..9f3df999d47 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @XL.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @XL.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @XL", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RaEoFoZdXkkOz9yh", "instantiation": "true", "nozzle_temperature_intial_layer": "260", "nozzle_temperature": "260", diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.6.json index 6c831eae2f5..86987463934 100644 --- a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PA-CF @CORE One 0.6", "inherits": "Prusament PA-CF @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sEDEmqR4k65IhJ4D", "filament_id": "Prusament PA-CF @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.8.json index 7d3a336c9b8..c22f07ddb41 100644 --- a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PA-CF @CORE One 0.8", "inherits": "Prusament PA-CF @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gwFsNIMKGU1f2vPS", "filament_id": "Prusament PA-CF @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One.json b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One.json index 48cb353cdfa..c1c87b7041a 100644 --- a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PA-CF @CORE One", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "08PdV2lMsSv1JeOt", "filament_id": "Prusament PA-CF @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PA-CF @XL 5T.json index cc414805699..d287e59aa47 100644 --- a/resources/profiles/Prusa/filament/Prusament PA-CF @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PA-CF @XL 5T", "inherits": "fdm_filament_pa11cf", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FYerOcjToJ3ABpu1", "instantiation": "true", "nozzle_temperature_intial_layer": "275", "nozzle_temperature": "285", diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @XL.json b/resources/profiles/Prusa/filament/Prusament PA-CF @XL.json index 77c683a255c..6735c31b8aa 100644 --- a/resources/profiles/Prusa/filament/Prusament PA-CF @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PA-CF @XL", "inherits": "fdm_filament_pa11cf", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IrL4iU2kkMBHIw3e", "instantiation": "true", "nozzle_temperature_intial_layer": "275", "nozzle_temperature": "285", diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.6.json index 3f2de8fe848..c31c409a16d 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One 0.6", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0ytT0Ro3sAjvUPN2", "filament_id": "Prusament PC Blend @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.8.json index 0d01f632f04..b27cac24c36 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One 0.8", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WrAImqAV7odcGf8Y", "filament_id": "Prusament PC Blend @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.4.json index f7a41ce585d..e9431a4a946 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One HF 0.4", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pEsP537TBR5kozQB", "filament_id": "Prusament PC Blend @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.5.json index 72fae72244d..824d9468ea3 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One HF 0.5", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3IfLi1ZVCKKbEBUW", "filament_id": "Prusament PC Blend @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.6.json index 17b68ed895e..707aff75325 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One HF 0.6", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q8qWw2G7l2UvxGut", "filament_id": "Prusament PC Blend @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.8.json index 0b55f4bb764..f75f439c4a5 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One HF 0.8", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LDvckXo1zpccnT4g", "filament_id": "Prusament PC Blend @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One.json index 383ab81f4c4..0fe031c2767 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "x1SkWhSSkVVIPwCF", "filament_id": "Prusament PC Blend @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PC Blend @XL 5T.json index 2cfdc7cf0d4..9e715f9e52a 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @XL 5T", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FOgpd4BtawBtmjPB", "instantiation": "true", "nozzle_temperature_intial_layer": "275", "nozzle_temperature": "275", diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @XL.json b/resources/profiles/Prusa/filament/Prusament PC Blend @XL.json index ce034234f09..84941697207 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @XL", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DLTlxt04GREtOiec", "instantiation": "true", "nozzle_temperature_intial_layer": "275", "nozzle_temperature": "275", diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.6.json index 0b2d1b6a6de..e12bc8db2b7 100644 --- a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PC-CF @CORE One 0.6", "inherits": "Prusament PC-CF @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DYPBEKeKBdTenG3S", "filament_id": "Prusament PC-CF @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.8.json index 3873fbf17e3..90bbaf42175 100644 --- a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PC-CF @CORE One 0.8", "inherits": "Prusament PC-CF @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0J8ZuIRTB6EgSke8", "filament_id": "Prusament PC-CF @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One.json b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One.json index 1012a246e64..2d860fe307b 100644 --- a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PC-CF @CORE One", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IK6Z7DVevvmR96Or", "filament_id": "Prusament PC-CF @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PC-CF @XL 5T.json index 8001f21aa53..482a0403df5 100644 --- a/resources/profiles/Prusa/filament/Prusament PC-CF @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PC-CF @XL 5T", "inherits": "fdm_filament_pccf", "from": "system", - "setting_id": "GFSA04", + "setting_id": "m1YND6uz3GWeVIBG", "instantiation": "true", "nozzle_temperature_intial_layer": "285", "nozzle_temperature": "285", diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @XL.json b/resources/profiles/Prusa/filament/Prusament PC-CF @XL.json index 7f8a85fd0b9..7081cd95239 100644 --- a/resources/profiles/Prusa/filament/Prusament PC-CF @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PC-CF @XL", "inherits": "fdm_filament_pccf", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Eq5x2CcEUUAZ5aof", "instantiation": "true", "nozzle_temperature_intial_layer": "285", "nozzle_temperature": "285", diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.6.json index c50d58d14a4..83ef41e09e0 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One 0.6", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JVKHdd0UyFqnVj9g", "filament_id": "Prusament PETG @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.8.json index 7ee995057f9..eb6cb9a8fac 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One 0.8", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0OCfuaF4u8wo5D20", "filament_id": "Prusament PETG @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.4.json index 7e05bc3140c..f2f309b90c6 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One HF 0.4", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lwT1VxW5OkY36kUX", "filament_id": "Prusament PETG @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.5.json index 39f0a8389d0..08ed962fe61 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One HF 0.5", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XAgW7fElXxhaKaBT", "filament_id": "Prusament PETG @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.6.json index 7e30fb59950..cc1fe655004 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One HF 0.6", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6aTGEZj2EmpTR1mu", "filament_id": "Prusament PETG @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.8.json index 75ca8c4fbda..0f2078b5b48 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One HF 0.8", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EmrFLgk6ZkTHAvN8", "filament_id": "Prusament PETG @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One.json index 378369d5ba2..1a03663b6d9 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LSvba9ds3XTwDMCG", "filament_id": "Prusament PETG @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PETG @XL 5T.json index 3e1e3ec6d99..e127263ad77 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @XL 5T", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFG99_PRUSA_1", + "setting_id": "USigpRWuzpdkT6ZW", "instantiation": "true", "nozzle_temperature_intial_layer": "240", "nozzle_temperature": "250", diff --git a/resources/profiles/Prusa/filament/Prusament PETG @XL.json b/resources/profiles/Prusa/filament/Prusament PETG @XL.json index efb7996fa65..b552f9ed092 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @XL", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vPPD8EkKFy5j8pg5", "instantiation": "true", "nozzle_temperature_intial_layer": "240", "nozzle_temperature": "250", diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.6.json index a841bdd71f1..647940d6448 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One 0.6", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jGHl1i9Y1oJsLQY8", "filament_id": "Prusament PLA @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.8.json index d0c72f487ab..3af2846aa07 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One 0.8", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ijkbGowmIm8uUYsf", "filament_id": "Prusament PLA @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.4.json index c6c8e0db9da..a44a2fd1c43 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One HF 0.4", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mf4Muog4IcsgkYoA", "filament_id": "Prusament PLA @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.5.json index e01911e7223..ab7f5b3a370 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One HF 0.5", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zJf1Y6eP81j3v8VV", "filament_id": "Prusament PLA @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.6.json index 0b447aca628..7c94b574567 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One HF 0.6", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UAvqLPGHYOT1B2lC", "filament_id": "Prusament PLA @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.8.json index f85d34afc39..3ba0a216705 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One HF 0.8", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0N17rx4NFmuHYLQl", "filament_id": "Prusament PLA @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One.json index 8830dc67799..78b1f80425c 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PuujUMjNKLZvZNAH", "filament_id": "Prusament PLA @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PLA @XL 5T.json index 24c28e3be79..d74ad3f865e 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @XL 5T", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3xyT73BMaAvbb1Ej", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "215", diff --git a/resources/profiles/Prusa/filament/Prusament PLA @XL.json b/resources/profiles/Prusa/filament/Prusament PLA @XL.json index a7fe6fe9f7a..60825e3109c 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @XL", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PlHq1KqHrreo5W8m", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "215", diff --git a/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.6.json index 63ff0fa5c3b..8c979342b3a 100644 --- a/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PVB @CORE One 0.6", "inherits": "Prusament PVB @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GnslGWS97HuaWX76", "filament_id": "Prusament PVB @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.8.json index 6622bf5c033..2496ec966db 100644 --- a/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PVB @CORE One 0.8", "inherits": "Prusament PVB @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Nn7eVPawILDH4BRW", "filament_id": "Prusament PVB @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PVB @CORE One.json b/resources/profiles/Prusa/filament/Prusament PVB @CORE One.json index b294ee5ed53..c3c5cf16c88 100644 --- a/resources/profiles/Prusa/filament/Prusament PVB @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PVB @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PVB @CORE One", "inherits": "fdm_filament_pvb", "from": "system", - "setting_id": "GFSA04", + "setting_id": "085dGkrnPhatF07x", "filament_id": "Prusament PVB @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PVB @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PVB @XL 5T.json index 2df75b8d626..280a722bb35 100644 --- a/resources/profiles/Prusa/filament/Prusament PVB @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PVB @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PVB @XL 5T", "inherits": "fdm_filament_pvb", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DIrPylH6rmu6YA43", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "215", diff --git a/resources/profiles/Prusa/filament/Prusament PVB @XL.json b/resources/profiles/Prusa/filament/Prusament PVB @XL.json index d93cabc6dc1..1ac285be6e7 100644 --- a/resources/profiles/Prusa/filament/Prusament PVB @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PVB @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PVB @XL", "inherits": "fdm_filament_pvb", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RF55nfxQwqUqe00Q", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "215", diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.6.json index f6f7a3b2e72..19f2eb09626 100644 --- a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament rPLA @CORE One 0.6", "inherits": "Prusament rPLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BY8gwU1VY0hFBPSc", "filament_id": "Prusament rPLA @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.8.json index a4b689ed8ff..23f10a29277 100644 --- a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament rPLA @CORE One 0.8", "inherits": "Prusament rPLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dNK9a3tZOFeUZm60", "filament_id": "Prusament rPLA @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One.json b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One.json index c26ea657e0e..c32d3baf7fe 100644 --- a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament rPLA @CORE One", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Bw6H4vFnq7YExyLd", "filament_id": "Prusament rPLA @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @XL 5T.json b/resources/profiles/Prusa/filament/Prusament rPLA @XL 5T.json index e438586ae31..cb1d9258c9c 100644 --- a/resources/profiles/Prusa/filament/Prusament rPLA @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament rPLA @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament rPLA @XL 5T", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yAiHzmW4pa8deage", "instantiation": "true", "nozzle_temperature_intial_layer": "205", "nozzle_temperature": "205", diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @XL.json b/resources/profiles/Prusa/filament/Prusament rPLA @XL.json index 2d743620216..ab5867979b6 100644 --- a/resources/profiles/Prusa/filament/Prusament rPLA @XL.json +++ b/resources/profiles/Prusa/filament/Prusament rPLA @XL.json @@ -3,7 +3,7 @@ "name": "Prusament rPLA @XL", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j2BSXHFa7D3Gze7C", "instantiation": "true", "nozzle_temperature_intial_layer": "205", "nozzle_temperature": "205", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.25 nozzle.json index 8195326b4e4..772eb39de71 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.25 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "uzZnbJnFuHfqW6Ks", "instantiation": "true", "default_print_profile": "0.12mm STRUCTURAL @CORE One 0.25", "machine_max_jerk_x": [ diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.3 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.3 nozzle.json index 19659be74e6..921a180ace9 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.3 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.3 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.3 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "llQiP3fGzNknt1fY", "instantiation": "true", "default_print_profile": "0.16mm STRUCTURAL @CORE One 0.3", "machine_max_jerk_x": [ diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.4 nozzle.json index ab447e5d7bc..c604f91beeb 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.4 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "ClISXCZS5bKTAlyp", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One", "default_print_profile": "0.20mm SPEED @CORE One 0.4", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.5 nozzle.json index dd483eb498d..caa69e6049e 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.5 nozzle", "inherits": "Prusa CORE One HF 0.5 nozzle", "from": "system", + "setting_id": "zGqFeWUeg5Z52sc6", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One", "default_print_profile": "0.20mm SPEED @CORE One 0.5", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.6 nozzle.json index 4b3585bcb65..7123d1a55f1 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.6 nozzle", "inherits": "Prusa CORE One HF 0.6 nozzle", "from": "system", + "setting_id": "XpVbpRn0H3nkVbV6", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One 0.6", "default_print_profile": "0.25mm SPEED @CORE One 0.6", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.8 nozzle.json index 7c1efd2e6f3..1e7f561d286 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.8 nozzle", "inherits": "Prusa CORE One HF 0.8 nozzle", "from": "system", + "setting_id": "huJt1GsW0ImZDBbU", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One 0.8", "default_print_profile": "0.40mm QUALITY @CORE One 0.8", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.4 nozzle.json index 6e04f234663..8841c35b39d 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One HF 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", + "setting_id": "AUk8BqRmHxaFL1UZ", "instantiation": "true", "before_layer_change_gcode": [ ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n{if layer_z > 150}\nM201 X{interpolate_table(layer_z, (0,7000), (150,7000), (200,4000), (270,2000))} Y{interpolate_table(layer_z, (0,7000), (150,7000), (200,4000), (270,2000))}\n{endif}\n" diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.5 nozzle.json index bd214ff7f06..9751af191c2 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One HF 0.5 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "FdqTraNTvsptI8xE", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.5", "default_print_profile": "0.20mm SPEED @CORE One HF 0.5", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.6 nozzle.json index 2308b9e8c9a..25e44f57a9d 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One HF 0.6 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "xKIMTkBfK5gWKpzB", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.6", "default_print_profile": "0.32mm SPEED @CORE One HF 0.6", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.8 nozzle.json index 824bb3ab8b1..dfd8e629d0c 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One HF 0.8 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "3yKq6T4Yco9AH9Pp", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.8", "default_print_profile": "0.40mm STRUCTURAL @CORE One HF 0.8", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L 0.4 nozzle.json index 498c589b248..d3fa8cbb597 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L 0.4 nozzle", "inherits": "Prusa CORE One L HF 0.4 nozzle", "from": "system", + "setting_id": "Ll94NxeJaELh5x2F", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One", "default_print_profile": "0.20mm SPEED @CORE One L 0.4", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L 0.5 nozzle.json index 2c248080807..654f3a83cd8 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L 0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L 0.5 nozzle", "inherits": "Prusa CORE One L HF 0.5 nozzle", "from": "system", + "setting_id": "aBqc8QsHwOcuSE1y", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One", "default_print_profile": "0.20mm SPEED @CORE One 0.5", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L 0.6 nozzle.json index eb1d1259860..a442b911c41 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L 0.6 nozzle", "inherits": "Prusa CORE One L HF 0.6 nozzle", "from": "system", + "setting_id": "DnfZ1i54mOYzlwpy", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One 0.6", "default_print_profile": "0.25mm SPEED @CORE One 0.6", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L 0.8 nozzle.json index 0abef20bfa1..29090a49667 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L 0.8 nozzle", "inherits": "Prusa CORE One L HF 0.8 nozzle", "from": "system", + "setting_id": "l8oMNiUo6qDtXq8i", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One 0.8", "default_print_profile": "0.40mm QUALITY @CORE One 0.8", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.4 nozzle.json index 78be8a902d6..1e8bf9b9f59 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L HF 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", + "setting_id": "PNUQhbJlsTsoM6GD", "instantiation": "true", "before_layer_change_gcode": [ ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n{if layer_z > 150}\nM201 X{interpolate_table(layer_z, (0,6000), (150,6000), (200,4000), (331,2000))} Y{interpolate_table(layer_z, (0,6000), (150,6000), (200,4000), (331,2000))}\n{endif}\n" diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.5 nozzle.json index 2e7f6bb1637..1661a1de12d 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L HF 0.5 nozzle", "inherits": "Prusa CORE One L HF 0.4 nozzle", "from": "system", + "setting_id": "I8pxHOhnyeLASVOC", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.5", "default_print_profile": "0.20mm SPEED @CORE One HF 0.5", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.6 nozzle.json index 8143202d27b..137a6af4ee0 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L HF 0.6 nozzle", "inherits": "Prusa CORE One L HF 0.4 nozzle", "from": "system", + "setting_id": "aeDaJfwY7b0lluK8", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.6", "default_print_profile": "0.32mm SPEED @CORE One HF 0.6", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.8 nozzle.json index 55ef95b4c90..bd444671c5c 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L HF 0.8 nozzle", "inherits": "Prusa CORE One L HF 0.4 nozzle", "from": "system", + "setting_id": "t13oS4465a6w541T", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.8", "default_print_profile": "0.40mm STRUCTURAL @CORE One HF 0.8", diff --git a/resources/profiles/Prusa/machine/Prusa MINI 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINI 0.25 nozzle.json index ff1ce83bc41..b5f9d8392b7 100644 --- a/resources/profiles/Prusa/machine/Prusa MINI 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINI 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINI 0.25 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "vfeRNEIxeQSNHeJB", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI", diff --git a/resources/profiles/Prusa/machine/Prusa MINI 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINI 0.4 nozzle.json index b191a0c25b5..488734582c0 100644 --- a/resources/profiles/Prusa/machine/Prusa MINI 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINI 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINI 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "CvweSVwK9Tr9cwJW", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI", diff --git a/resources/profiles/Prusa/machine/Prusa MINI 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINI 0.6 nozzle.json index 28fc4b54c91..ea851b9dcf6 100644 --- a/resources/profiles/Prusa/machine/Prusa MINI 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINI 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINI 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "hbKR1QPMz6XlHrau", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI", diff --git a/resources/profiles/Prusa/machine/Prusa MINI 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINI 0.8 nozzle.json index 362d15a879e..30394e8eef8 100644 --- a/resources/profiles/Prusa/machine/Prusa MINI 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINI 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINI 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "OAXzyU4MWaOZaRuO", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI", diff --git a/resources/profiles/Prusa/machine/Prusa MINIIS 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINIIS 0.25 nozzle.json index 413e33e3e7f..c800a8a409a 100644 --- a/resources/profiles/Prusa/machine/Prusa MINIIS 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINIIS 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINIIS 0.25 nozzle", "inherits": "Prusa MINIIS 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "BsGxNOxIqRKF8c2X", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI IS", diff --git a/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json index 2aa6c122a5e..d2d6c18f39d 100644 --- a/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINIIS 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "4Iq79bN4T8i3d47F", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI IS", diff --git a/resources/profiles/Prusa/machine/Prusa MINIIS 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINIIS 0.6 nozzle.json index 4ea8af908da..c7ebd42263f 100644 --- a/resources/profiles/Prusa/machine/Prusa MINIIS 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINIIS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINIIS 0.6 nozzle", "inherits": "Prusa MINIIS 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "t40vAdqUDOysca1f", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI IS", diff --git a/resources/profiles/Prusa/machine/Prusa MINIIS 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINIIS 0.8 nozzle.json index 2bef2eec285..0ae5a7bbbd8 100644 --- a/resources/profiles/Prusa/machine/Prusa MINIIS 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINIIS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINIIS 0.8 nozzle", "inherits": "Prusa MINIIS 0.4 nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "wcrnNKRdyH27iDuB", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI IS", diff --git a/resources/profiles/Prusa/machine/Prusa MK3.5 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3.5 0.25 nozzle.json index 1d465a76d92..d2fefedc6f0 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3.5 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3.5 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3.5 0.25 nozzle", "inherits": "Prusa MK3.5 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "pguGJWMHNXK6WqnB", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK3.5", diff --git a/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json index fa73c6554c6..6d473ce765f 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3.5 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "pZZXnpOhSCBEPO3g", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK3.5", diff --git a/resources/profiles/Prusa/machine/Prusa MK3.5 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3.5 0.6 nozzle.json index b414a3a5928..3631749c537 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3.5 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3.5 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3.5 0.6 nozzle", "inherits": "Prusa MK3.5 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "wHg116YkhEZYuy6O", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK3.5", diff --git a/resources/profiles/Prusa/machine/Prusa MK3.5 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3.5 0.8 nozzle.json index f7970e864f3..1dd7d455d49 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3.5 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3.5 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3.5 0.8 nozzle", "inherits": "Prusa MK3.5 0.4 nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "pDsfgNN0OK7BhaoS", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK3.5", diff --git a/resources/profiles/Prusa/machine/Prusa MK3S 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3S 0.25 nozzle.json index da9e23688e9..28333578ff8 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3S 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3S 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3S 0.25 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "c90DxytuSoiCHlVA", "instantiation": "true", "printer_model": "Prusa MK3S", "printer_variant": "0.25", diff --git a/resources/profiles/Prusa/machine/Prusa MK3S 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3S 0.4 nozzle.json index 515389659a4..5b86474541d 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3S 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3S 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3S 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "T3EZ1NtmQTNkmDkk", "instantiation": "true", "printer_model": "Prusa MK3S", "printer_variant": "0.4", diff --git a/resources/profiles/Prusa/machine/Prusa MK3S 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3S 0.6 nozzle.json index 70f96dc2a8a..d94d5a0306a 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3S 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3S 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3S 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "k45a0QuhbGQypyDs", "instantiation": "true", "printer_model": "Prusa MK3S", "printer_variant": "0.6", diff --git a/resources/profiles/Prusa/machine/Prusa MK3S 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3S 0.8 nozzle.json index b73fa0af44f..92450e95fe9 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3S 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3S 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3S 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "B3BtohdqPX8Dv1zD", "instantiation": "true", "printer_model": "Prusa MK3S", "printer_variant": "0.8", diff --git a/resources/profiles/Prusa/machine/Prusa MK4 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4 0.25 nozzle.json index afdea880359..81b75a50987 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK4 0.25 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM004", + "setting_id": "mDpNu9NqPH9iPcU2", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4 0.4 nozzle.json index bc78e8da6ea..89aa8935472 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK4 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "tGox5Ldie8Ka8UAJ", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4 0.6 nozzle.json index 6ce83ff41bf..f5991e42a91 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK4 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM002", + "setting_id": "znyKdoWHiEQK2d1K", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4 0.8 nozzle.json index 3d74f4c7b82..91e64bdbb13 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK4 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "px7zp02QEWKtngFK", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.25 nozzle.json index ca1981a591b..2552852962a 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.25 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "wehS5yGzuMR8nKq0", "instantiation": "true", "default_print_profile": "0.12mm STRUCTURAL @MK4S 0.25", "machine_max_acceleration_travel": [ diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.3 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.3 nozzle.json index 8c902c30818..b28798690ae 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.3 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.3 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.3 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "PrREHlvB9WBqBG0M", "instantiation": "true", "default_print_profile": "0.16mm STRUCTURAL @MK4S 0.3", "max_layer_height": "0.22", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.4 nozzle.json index 9a1cb3937d1..e9824d1ed60 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.4 nozzle", "inherits": "fdm_machine_common_mk4s", "from": "system", + "setting_id": "8tL4SMT6bHqG2Ql1", "instantiation": "true", "default_filament_profile": "Prusa Generic PLA @MK4S", "default_print_profile": "0.20mm SPEED @MK4S 0.4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.5 nozzle.json index a682a279698..f2d3490eedd 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.5 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "gde1qta2jgxAc86M", "instantiation": "true", "default_print_profile": "0.20mm SPEED @MK4S 0.5", "max_layer_height": "0.32", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.6 nozzle.json index 1c9b1a7de96..0f454ca38f7 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.6 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "m0ALiNI26ncFxsY2", "instantiation": "true", "default_filament_profile": "Prusa Generic PLA @MK4S 0.6", "default_print_profile": "0.25mm SPEED @MK4S 0.6", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.8 nozzle.json index ef62d35c401..d460517983d 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.8 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "rMzjWvSpqLsRK0gP", "instantiation": "true", "default_filament_profile": "Prusa Generic PLA @MK4S 0.8", "default_print_profile": "0.40mm QUALITY @MK4S 0.8", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S HF0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S HF0.4 nozzle.json index 777bc4c2b35..abc0f71d502 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S HF0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S HF0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S HF0.4 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "zMYcZUEYGqFVXcPo", "instantiation": "true", "default_filament_profile": "Prusa Generic PLA @MK4S HF0.4", "default_print_profile": "0.20mm SPEED @MK4S HF0.4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S HF0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S HF0.5 nozzle.json index a29c7174548..e998a786f35 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S HF0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S HF0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S HF0.5 nozzle", "inherits": "Prusa MK4S HF0.4 nozzle", "from": "system", + "setting_id": "snE68Xlomhkl6Q99", "instantiation": "true", "default_print_profile": "0.20mm SPEED @MK4S HF0.5", "max_layer_height": "0.32", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S HF0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S HF0.6 nozzle.json index 46e8552127b..a65253c7a2d 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S HF0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S HF0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S HF0.6 nozzle", "inherits": "Prusa MK4S HF0.4 nozzle", "from": "system", + "setting_id": "QEr8kezSDE7Cqgkx", "instantiation": "true", "default_print_profile": "0.32mm SPEED @MK4S HF0.6", "max_layer_height": "0.40", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S HF0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S HF0.8 nozzle.json index 5fe1d3d756e..dd6cf098d48 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S HF0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S HF0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S HF0.8 nozzle", "inherits": "Prusa MK4S HF0.4 nozzle", "from": "system", + "setting_id": "UygX2hdbWqKzY6Nn", "instantiation": "true", "default_filament_profile": "Prusa Generic PLA @MK4S HF0.8", "default_print_profile": "0.40mm STRUCTURAL @MK4S HF0.8", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.25 nozzle.json index e4caa23a372..8a2ef4ecbb6 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.25 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "Vk03At0JQ6hg0ygO", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json index ac708247136..7b6192e64c4 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.3 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "RyVMHn8YuMNrJ74m", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.4 nozzle.json index 34ddcd9f1ae..ae5add4f6ad 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.4 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "q6XTH5vdgCRHxmNL", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.5 nozzle.json index 0fb1fd9c44d..5d470138ca7 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.5 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "ra0oZF5B4OOOpWjQ", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.6 nozzle.json index 71f8bc18335..050b6b5106b 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.6 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "UlIesGF1SS8H6aB7", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.8 nozzle.json index d10ac810aa3..3d64a2420df 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.8 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "nQYRJ3krSVvnz0pf", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json index dad210ae7cb..42916b3a27c 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.25 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_007", + "setting_id": "cjyYKRBen6bVW9HC", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json index bd1d3825b14..7a07b277e2c 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.3 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_001", + "setting_id": "fhIadToLJJrUC6UU", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.4 nozzle.json index 3198e99070f..8642ac9ac7e 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.4 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_002", + "setting_id": "3QKWVEZ2i2B80s3u", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json index a5942a1518b..fe51f7f4f85 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.5 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_004", + "setting_id": "KcCECJX7bJsPHlpT", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json index 8fe7bd91971..1492cf6a6d8 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.6 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_005", + "setting_id": "D6hQiwBLl9dpU89U", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json index 505b9b4325b..14277e59fe2 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.8 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_006", + "setting_id": "5op39LADxDcHyncW", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One 0.25.json index 85095ed76b2..e6a06979dd6 100644 --- a/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.05mm DETAIL @CORE One 0.25", "inherits": "0.05mm DETAIL @MK4S 0.25", "from": "system", + "setting_id": "qOFL01RilvzHLLpF", "instantiation": "true", "travel_speed": "350", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One L 0.25.json index ebb3dda75ba..46ca26577f2 100644 --- a/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.05mm DETAIL @CORE One L 0.25", "inherits": "0.05mm DETAIL @MK4S 0.25", "from": "system", + "setting_id": "H97xRaGSwyLBk02t", "instantiation": "true", "travel_speed": "500", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.05mm DETAIL @MK4S 0.25.json b/resources/profiles/Prusa/process/0.05mm DETAIL @MK4S 0.25.json index d4c1348c85e..3e281e10d8b 100644 --- a/resources/profiles/Prusa/process/0.05mm DETAIL @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm DETAIL @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.05mm DETAIL @MK4S 0.25", "inherits": "0.07mm DETAIL @MK4S 0.25", "from": "system", + "setting_id": "J10N9iPK44o1XkuG", "instantiation": "true", "bottom_shell_layers": "10", "bridge_speed": "25", diff --git a/resources/profiles/Prusa/process/0.05mm Detail @MINIIS.json b/resources/profiles/Prusa/process/0.05mm Detail @MINIIS.json index b2a62985d9e..666ebe12020 100644 --- a/resources/profiles/Prusa/process/0.05mm Detail @MINIIS.json +++ b/resources/profiles/Prusa/process/0.05mm Detail @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.05mm Detail @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "efECy0NOZGfzFBFP", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.25", diff --git a/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json b/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json index 4710428a528..ace4da020e9 100644 --- a/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json +++ b/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.05mm Detail @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "vUmbvPsSIJ9SW6OU", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.25", diff --git a/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 0.25.json index 47004746a8d..b868abb4db1 100644 --- a/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.05mm Detail @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "o8hfSDG0dyoYR7x8", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.05", diff --git a/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 5T 0.25.json index e6eff0025aa..c05c5c7d56e 100644 --- a/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.05mm Detail @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "M2sPbQHmCSkflMI6", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.05", diff --git a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.25.json b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.25.json index 8657dc4a166..3094f724b79 100644 --- a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.25.json @@ -3,6 +3,7 @@ "name": "0.05mm UltraDetail @MK3S 0.25", "inherits": "process_common_mk3", "from": "system", + "setting_id": "MilRHlhPBDeMRa0R", "instantiation": "true", "print_settings_id": "0.05mm UltraDetail @MK3S 0.25", "bottom_shell_layers": "10", diff --git a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.4.json b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.4.json index 28d7ff910a8..762b0bd9cfc 100644 --- a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.05mm UltraDetail @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "PbvAzTzrVe5h2cIg", "instantiation": "true", "print_settings_id": "0.05mm UltraDetail @MK3S 0.4", "bottom_shell_layers": "10", diff --git a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S.json b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S.json index cc74674f6f2..78ad6e1a1b1 100644 --- a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S.json +++ b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S.json @@ -3,6 +3,7 @@ "name": "0.05mm UltraDetail @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "oNHHqYCKSoLAaQ1J", "instantiation": "true", "print_settings_id": "0.05mm UltraDetail @MK3S", "bottom_shell_layers": "10", diff --git a/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One 0.25.json index b9d755bcb86..6df8c26c47a 100644 --- a/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.07mm DETAIL @CORE One 0.25", "inherits": "0.07mm DETAIL @MK4S 0.25", "from": "system", + "setting_id": "k8PBHoGaKhPbHDUc", "instantiation": "true", "travel_speed": "350", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One L 0.25.json index e96dc8f8f9b..ef9638e7536 100644 --- a/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.07mm DETAIL @CORE One L 0.25", "inherits": "0.07mm DETAIL @MK4S 0.25", "from": "system", + "setting_id": "fISQmzTi7TFITg07", "instantiation": "true", "travel_speed": "500", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.07mm DETAIL @MK4S 0.25.json b/resources/profiles/Prusa/process/0.07mm DETAIL @MK4S 0.25.json index 9a958b4558c..725a0af66e2 100644 --- a/resources/profiles/Prusa/process/0.07mm DETAIL @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm DETAIL @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.07mm DETAIL @MK4S 0.25", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "6brG7IXHDzmGRXqk", "instantiation": "true", "bottom_shell_layers": "9", "bridge_acceleration": "1000", diff --git a/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json b/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json index bb01eae3098..cf6bea7c73e 100644 --- a/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json +++ b/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.07mm Detail @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "lMQ8IpaIIHuYey5D", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.25", diff --git a/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json b/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json index 01ed5edd4db..b84b485243d 100644 --- a/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json +++ b/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.07mm Detail @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "jGzl0pIH8NQe7uC5", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.25", diff --git a/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 0.25.json index 28f13ddad1a..f6a888bae73 100644 --- a/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.07mm Detail @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "2rrYjLMCWjsKVx2r", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.07", diff --git a/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 5T 0.25.json index 726f1dabc2c..7683df4dc89 100644 --- a/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.07mm Detail @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "UY0KmXznMcEMIM33", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.07", diff --git a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.25.json b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.25.json index 58d19ef5195..20b930fa2a3 100644 --- a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.25.json @@ -3,6 +3,7 @@ "name": "0.07mm UltraDetail @MK3S 0.25", "inherits": "process_common_mk3", "from": "system", + "setting_id": "PIYckhe9iYXryAA5", "instantiation": "true", "print_settings_id": "0.07mm UltraDetail @MK3S 0.25", "bottom_shell_layers": "8", diff --git a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.4.json b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.4.json index b9870dbf11d..e2e75e1b4f2 100644 --- a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.07mm UltraDetail @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "oKYwlkPJGx85pMmB", "instantiation": "true", "print_settings_id": "0.07mm UltraDetail @MK3S 0.4", "bottom_shell_layers": "8", diff --git a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S.json b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S.json index 34af989434b..f8cbafb3a32 100644 --- a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S.json +++ b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S.json @@ -3,6 +3,7 @@ "name": "0.07mm UltraDetail @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "Kq78NpEJ9yHfp0dR", "instantiation": "true", "print_settings_id": "0.07mm UltraDetail @MK3S", "bottom_shell_layers": "8", diff --git a/resources/profiles/Prusa/process/0.08mm Standard @MK4.json b/resources/profiles/Prusa/process/0.08mm Standard @MK4.json index 5a843698366..c7d691a523e 100644 --- a/resources/profiles/Prusa/process/0.08mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.08mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "sknzF1ldqGRv8YGH", "instantiation": "true", "support_top_z_distance": "0.08", "support_bottom_z_distance": "0.08", diff --git a/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.25.json b/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.25.json index eeb00197da3..2191426a1ec 100644 --- a/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.25.json +++ b/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.25.json @@ -3,6 +3,7 @@ "name": "0.10mm Detail @MK3S 0.25", "inherits": "process_common_mk3", "from": "system", + "setting_id": "VmTT5hHyrcvsj16J", "instantiation": "true", "print_settings_id": "0.10mm Detail @MK3S 0.25", "bottom_shell_layers": "7", diff --git a/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.4.json b/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.4.json index dd880cbc4ed..8d08a246e46 100644 --- a/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.10mm Detail @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "E4tNFVImqV67fM47", "instantiation": "true", "print_settings_id": "0.10mm Detail @MK3S 0.4", "bottom_shell_layers": "7", diff --git a/resources/profiles/Prusa/process/0.10mm Detail @MK3S.json b/resources/profiles/Prusa/process/0.10mm Detail @MK3S.json index be760d0338a..94d3612b94e 100644 --- a/resources/profiles/Prusa/process/0.10mm Detail @MK3S.json +++ b/resources/profiles/Prusa/process/0.10mm Detail @MK3S.json @@ -3,6 +3,7 @@ "name": "0.10mm Detail @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "66VClUbq4SZz6xjA", "instantiation": "true", "print_settings_id": "0.10mm Detail @MK3S", "bottom_shell_layers": "7", diff --git a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One 0.4.json index 76d61987cd4..69dcb61081d 100644 --- a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.10mm FAST DETAIL @CORE One 0.4", "inherits": "0.10mm FAST DETAIL @MK4S 0.4", "from": "system", + "setting_id": "TB8xk2nE7AbUVYe9", "instantiation": "true", "inner_wall_acceleration": "3000", "sparse_infill_acceleration": "6000", diff --git a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One L 0.4.json index 4c1ae04c4e4..44d05cbf530 100644 --- a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.10mm FAST DETAIL @CORE One L 0.4", "inherits": "0.10mm FAST DETAIL @MK4S 0.4", "from": "system", + "setting_id": "YWwFHmydRuoxkAio", "instantiation": "true", "inner_wall_acceleration": "3000", "sparse_infill_acceleration": "6000", diff --git a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @MK4S 0.4.json b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @MK4S 0.4.json index 25ded93a6e3..dd046cab892 100644 --- a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.10mm FAST DETAIL @MK4S 0.4", "inherits": "0.15mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "vpFV7gpKO9nE1pkc", "instantiation": "true", "bottom_shell_layers": "7", "bridge_speed": "40", diff --git a/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 0.4.json index 182e61fd9dc..96d535a6d58 100644 --- a/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.10mm FastDetail @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "XS3AmG20Fxg0HJrj", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.1", diff --git a/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 5T 0.4.json index 3ff7a49d099..bcac41bc4cf 100644 --- a/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.10mm FastDetail @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "yjgrEWRAqJh0uM7u", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.1", diff --git a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One 0.5.json index d4bcb964ff2..4091e762fe6 100644 --- a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.10mm STRUCTURAL @CORE One 0.5", "inherits": "0.10mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "PK9yKRRPyX3BsA4s", "instantiation": "true", "inner_wall_speed": "70", "small_perimeter_speed": "50", diff --git a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One L 0.5.json index 9d7b6f0a07d..8edf1c22044 100644 --- a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.10mm STRUCTURAL @CORE One L 0.5", "inherits": "0.10mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "dJy0tUowSWUxQBlt", "instantiation": "true", "inner_wall_speed": "80", "small_perimeter_speed": "45", diff --git a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @MK4S 0.5.json b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @MK4S 0.5.json index 5af7ec346d7..84e7079c0f8 100644 --- a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.10mm STRUCTURAL @MK4S 0.5", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "LiKk4PtwUDZ7wyj3", "instantiation": "true", "bottom_shell_layers": "7", "bridge_acceleration": "1000", diff --git a/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json index 1fe634817bc..7cc5bfc4a6b 100644 --- a/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.10mm Speed @MINIIS", "inherits": "process_speed_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "eAFe5ATddc99VxqO", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json index 25719f60492..b7eb0f25cf7 100644 --- a/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.10mm Speed @MK3.5", "inherits": "process_speed_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "UQcPaaSKXsnHRCYq", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 0.5.json index 5b8f28b79c6..40c983124c9 100644 --- a/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.10mm Structural @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "MGG24FmbpEVyUV5p", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.1", diff --git a/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 5T 0.5.json index d460cbd18e5..cadc211e847 100644 --- a/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.10mm Structural @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "dJXdBn0NOlO6W6Zy", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.1", diff --git a/resources/profiles/Prusa/process/0.12mm SPEED @CORE One 0.25.json b/resources/profiles/Prusa/process/0.12mm SPEED @CORE One 0.25.json index 4a09f69b435..dbc7b421084 100644 --- a/resources/profiles/Prusa/process/0.12mm SPEED @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm SPEED @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm SPEED @CORE One 0.25", "inherits": "0.12mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "Y3Pd2Z84Z0vwQrPe", "instantiation": "true", "travel_acceleration": "4000", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.12mm SPEED @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.12mm SPEED @CORE One L 0.25.json index 48dd10207d6..f264ae27a03 100644 --- a/resources/profiles/Prusa/process/0.12mm SPEED @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm SPEED @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm SPEED @CORE One L 0.25", "inherits": "0.12mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "jgMpXjl7hn3nEN0s", "instantiation": "true", "travel_acceleration": "4000", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.12mm SPEED @MK4S 0.25.json b/resources/profiles/Prusa/process/0.12mm SPEED @MK4S 0.25.json index a588e508a38..11408bafc22 100644 --- a/resources/profiles/Prusa/process/0.12mm SPEED @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm SPEED @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm SPEED @MK4S 0.25", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "MSqpYhW6mD1MMp3i", "instantiation": "true", "bottom_shell_layers": "6", "bridge_speed": "30", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.25.json index bedf4aa550c..4ea28486034 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @CORE One 0.25", "inherits": "0.12mm STRUCTURAL @MK4S 0.25", "from": "system", + "setting_id": "7kDqJKRKvvJguw7E", "instantiation": "true", "travel_speed": "350", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.3.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.3.json index e5ea7bea24a..7a98a7ac11f 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.3.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.3.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @CORE One 0.3", "inherits": "0.12mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "ahndRyDz7TltQVpV", "instantiation": "true", "sparse_infill_acceleration": "5000", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.25.json index 5a1e3947ed0..bea0b875dda 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @CORE One L 0.25", "inherits": "0.12mm STRUCTURAL @MK4S 0.25", "from": "system", + "setting_id": "DKBQNmAKwxVN7LFS", "instantiation": "true", "travel_speed": "500", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.3.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.3.json index ce7eab7b06a..ef3a2030e91 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.3.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.3.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @CORE One L 0.3", "inherits": "0.12mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "H065X6eyZg1thlDr", "instantiation": "true", "sparse_infill_acceleration": "5000", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.25.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.25.json index 0c3af82134f..3cbea7a5be0 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @MK4S 0.25", "inherits": "0.12mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "sP1c8kbfiKDgN8MR", "instantiation": "true", "inner_wall_acceleration": "1500", "inner_wall_speed": "70", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.3.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.3.json index 4d3be820171..3cec15372a0 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.3.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.3.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @MK4S 0.3", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "ZkPNeh5PoMZk0w42", "instantiation": "true", "bottom_shell_layers": "6", "bridge_acceleration": "1000", diff --git a/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json index 73f41cf8dfa..b94952baa53 100644 --- a/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.12mm Speed @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "VkbpRYDorJuZkSY7", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json index 0508be84d0d..a3b3dbd164b 100644 --- a/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.12mm Speed @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "KcBmdvGGGHx6CxK6", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 0.25.json index a5de6a1f46a..858d412f5a3 100644 --- a/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.12mm Speed @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "6ZetPXVNaXZFsSXN", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 5T 0.25.json index 0fa08e8f374..21bde4174c4 100644 --- a/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.12mm Speed @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "bRTMF8lZsKF6HhPW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json index 5208f333c8b..b55d20d8e08 100644 --- a/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "btpS2qR0A9EvWqU4", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json index 0c010147393..9e60406483d 100644 --- a/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "drFGpBBHUiFZGz5t", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.12mm Standard @MK4.json b/resources/profiles/Prusa/process/0.12mm Standard @MK4.json index 1f0d9ff2a8b..75533c7455e 100644 --- a/resources/profiles/Prusa/process/0.12mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.12mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "WwN8uu0LNJx3ZhdR", "instantiation": "true", "support_top_z_distance": "0.08", "support_bottom_z_distance": "0.08", diff --git a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.25.json index 3122b3a1035..f4f60df63a0 100644 --- a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.12mm Structural @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "73SPHauAd2RIus3O", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.3.json b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.3.json index 4554aab13ea..1afe27bca88 100644 --- a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.3.json +++ b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.3.json @@ -3,7 +3,7 @@ "name": "0.12mm Structural @Prusa XL 0.3", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "akgU1dHf7Q5uR4by", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.25.json index 880caf880ba..0b004e8ac11 100644 --- a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.12mm Structural @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "fob7jEb0BgK6RoKn", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.3.json b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.3.json index b311e60b5c5..a9f66f4666f 100644 --- a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.3.json +++ b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.3.json @@ -3,7 +3,7 @@ "name": "0.12mm Structural @Prusa XL 5T 0.3", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "r7sSm3jhvnCkjUD7", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.15mm Detail @MK3S 0.6.json b/resources/profiles/Prusa/process/0.15mm Detail @MK3S 0.6.json index d892634145c..2595748c431 100644 --- a/resources/profiles/Prusa/process/0.15mm Detail @MK3S 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Detail @MK3S 0.6.json @@ -3,6 +3,7 @@ "name": "0.15mm Detail @MK3S 0.6", "inherits": "process_common_mk3", "from": "system", + "setting_id": "ruMTxbUbjXJKQsJI", "instantiation": "true", "print_settings_id": "0.15mm Detail @MK3S 0.6", "bottom_shell_layers": "5", diff --git a/resources/profiles/Prusa/process/0.15mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.15mm High Flow @MINIIS.json index 32da2a790ae..5fd23d8e264 100644 --- a/resources/profiles/Prusa/process/0.15mm High Flow @MINIIS.json +++ b/resources/profiles/Prusa/process/0.15mm High Flow @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.15mm High Flow @MINIIS", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "xPmptTe1FfORQhEC", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json index ac87ab00eac..fa89be1fc85 100644 --- a/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json +++ b/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.15mm High Flow @MK3.5", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "qeZFZeH1EAu3hmtX", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.25.json b/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.25.json index bc9eb45740f..5881f85a904 100644 --- a/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm Quality @MK3S 0.25", "inherits": "process_common_mk3", "from": "system", + "setting_id": "dsOu1V1ogb4RNViA", "instantiation": "true", "print_settings_id": "0.15mm Quality @MK3S 0.25", "bottom_shell_layers": "5", diff --git a/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.4.json b/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.4.json index 0e444248609..812c56b07c5 100644 --- a/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm Quality @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "BBNVLXOFTypVAfDS", "instantiation": "true", "print_settings_id": "0.15mm Quality @MK3S 0.4", "bottom_shell_layers": "5", diff --git a/resources/profiles/Prusa/process/0.15mm Quality @MK3S.json b/resources/profiles/Prusa/process/0.15mm Quality @MK3S.json index 991a418042c..6db1ce71e88 100644 --- a/resources/profiles/Prusa/process/0.15mm Quality @MK3S.json +++ b/resources/profiles/Prusa/process/0.15mm Quality @MK3S.json @@ -3,6 +3,7 @@ "name": "0.15mm Quality @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "7lsbsn6oKWhmw3j3", "instantiation": "true", "print_settings_id": "0.15mm Quality @MK3S", "bottom_shell_layers": "5", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.25.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.25.json index 506905e6734..b75c4030eb9 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One 0.25", "inherits": "0.15mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "84BHQYWlamcr14IB", "instantiation": "true", "travel_acceleration": "4000", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.4.json index 6e3c0cb7d12..d3b097db08c 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One 0.4", "inherits": "0.15mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "VzCIZcLeFkrR4e3N", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One HF 0.4.json index f84194d3a87..9b36c67a5f4 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One HF 0.4", "inherits": "0.15mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "Ajm1BOji7RhOH8vj", "instantiation": "true", "overhang_1_4_speed": "50", "overhang_3_4_speed": "60%", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.25.json index ce4b59c3441..daf00bb5912 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One L 0.25", "inherits": "0.15mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "sXzJXXTDq8jHX4m5", "instantiation": "true", "travel_acceleration": "4000", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.4.json index 905c9cb7b93..f467c315b1e 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One L 0.4", "inherits": "0.15mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "L7eFBRpk43QZ2mIg", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L HF 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L HF 0.4.json index 38235e70bec..cb588c27b15 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L HF 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One L HF 0.4", "inherits": "0.15mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "wATWoU2pvkCugSEj", "instantiation": "true", "overhang_2_4_speed": "50", "overhang_3_4_speed": "60%", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.25.json b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.25.json index daf97247724..2795e286f9e 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @MK4S 0.25", "inherits": "0.12mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "DrOC2zjOZJx4BA14", "instantiation": "true", "bottom_shell_layers": "7", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.4.json index 8281c6882b7..41761065508 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @MK4S 0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "M60DxnrVmUqbwINv", "instantiation": "true", "bridge_speed": "45", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S HF0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S HF0.4.json index e37b2f474c0..ec569c696af 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S HF0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S HF0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @MK4S HF0.4", "inherits": "0.15mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "Q3tvcNm32wcuelzj", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", "inner_wall_speed": "250", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.25.json index 7a300038cd6..71a39ad7ef9 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One 0.25", "inherits": "0.15mm STRUCTURAL @MK4S 0.25", "from": "system", + "setting_id": "yeQIeip8P5tNgdjj", "instantiation": "true", "travel_speed": "350", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.4.json index 4190cf2502b..de47b769b05 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One 0.4", "inherits": "0.15mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "Er7s41kb6bBDjBVP", "instantiation": "true", "overhang_3_4_speed": "45", "sparse_infill_speed": "120", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.5.json index 831e2218892..4d3400fdfe8 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One 0.5", "inherits": "0.15mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "Ri9JPCMN8YgbT9pp", "instantiation": "true", "overhang_3_4_speed": "45", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.6.json index 6245161ad2e..f21c7f6283d 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One 0.6", "inherits": "0.15mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "M8WdIdQWUxYohSoe", "instantiation": "true", "inner_wall_speed": "70", "overhang_3_4_speed": "30", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.25.json index b3b03fc2ded..db6fe5d2579 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One L 0.25", "inherits": "0.15mm STRUCTURAL @MK4S 0.25", "from": "system", + "setting_id": "TS1qx8bCgt6IQSlH", "instantiation": "true", "travel_speed": "500", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.4.json index f60d5649238..9cef8286303 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One L 0.4", "inherits": "0.15mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "Q5Em2qoElqB5MNcC", "instantiation": "true", "overhang_2_4_speed": "45", "sparse_infill_speed": "120", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.5.json index 067c05304c9..1df58671195 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One L 0.5", "inherits": "0.15mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "OpPBTGQwzerxtPiq", "instantiation": "true", "overhang_2_4_speed": "45", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.6.json index b2f2eab58d4..447e355c81d 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One L 0.6", "inherits": "0.15mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "WA8ZWQEuNUP7ewpq", "instantiation": "true", "inner_wall_speed": "80", "overhang_2_4_speed": "30", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.25.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.25.json index 23b9f6f50cc..602fffc01df 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @MK4S 0.25", "inherits": "0.15mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "3Qq2696fHXhXfbkP", "instantiation": "true", "inner_wall_acceleration": "1500", "inner_wall_speed": "70", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.4.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.4.json index 253941c88e8..621697305ee 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @MK4S 0.4", "inherits": "0.20mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "ShJ9CnEQUymPOhMD", "instantiation": "true", "bottom_shell_layers": "5", "bridge_speed": "45", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.5.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.5.json index 000b7e29d6c..a4713aba1ca 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @MK4S 0.5", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "BUt1cfZu3694tlgi", "instantiation": "true", "bottom_shell_layers": "5", "bridge_acceleration": "1000", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.6.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.6.json index beed223258c..56c84437a2f 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @MK4S 0.6", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "Edy382rlyi3ziqs6", "instantiation": "true", "bottom_shell_layers": "5", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json index 1e874e4d0fe..6aafbac3f1e 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @MINIIS 0.25", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "2Cy0ti9oKfJjasOA", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json index b2cc6ef71cb..3e1c2e35be6 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "CFEud5GPN2iXshnt", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json index eb3f5b9c8bf..e1f0c7a8a7c 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @MK3.5 0.25", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "spn1tlefgCPjwRMX", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json index 4c165bb4efd..33379bc7671 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @MK3.5", "inherits": "process_speed_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "E7ZB4Ae12XzEYkAd", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MK3S 0.4.json b/resources/profiles/Prusa/process/0.15mm Speed @MK3S 0.4.json deleted file mode 100644 index ce9f0aaad7d..00000000000 --- a/resources/profiles/Prusa/process/0.15mm Speed @MK3S 0.4.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "process", - "name": "0.15mm Speed @MK3S", - "inherits": "process_common_mk3", - "from": "system", - "instantiation": "true", - "print_settings_id": "0.15mm Speed @MK3S", - "bottom_shell_layers": "5", - "bridge_acceleration": "1000", - "bridge_flow": "1", - "bridge_speed": "25", - "gap_infill_speed": "40", - "inner_wall_acceleration": "800", - "inner_wall_line_width": "0.45", - "inner_wall_speed": "60", - "internal_solid_infill_line_width": "0.45", - "internal_solid_infill_speed": "200", - "layer_height": "0.15", - "line_width": "0.45", - "outer_wall_line_width": "0.45", - "outer_wall_speed": "35", - "raft_contact_distance": "0.2", - "small_perimeter_speed": "25", - "sparse_infill_acceleration": "1000", - "sparse_infill_line_width": "0.45", - "sparse_infill_pattern": "crosshatch", - "sparse_infill_speed": "200", - "support_base_pattern_spacing": "2", - "support_bottom_z_distance": "0.2", - "support_interface_speed": "40", - "support_line_width": "0.35", - "support_object_xy_distance": "0.27", - "support_speed": "50", - "support_top_z_distance": "0.2", - "thick_bridges": "0", - "top_shell_layers": "6", - "top_surface_line_width": "0.4", - "top_surface_speed": "50", - "wall_loops": "2", - "compatible_printers": [ - "Prusa MK3S 0.4 nozzle" - ] -} diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MK3S.json b/resources/profiles/Prusa/process/0.15mm Speed @MK3S.json index 60eca84ddb8..9d1d4eb2903 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MK3S.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MK3S.json @@ -3,6 +3,7 @@ "name": "0.15mm Speed @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "hMrUzAn55mGAdWZd", "instantiation": "true", "print_settings_id": "0.15mm Speed @MK3S", "bottom_shell_layers": "5", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.25.json index 2a00c85dbc4..26cdd296be5 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "cgILXbySCC6nqmEb", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.4.json index 44d5c8fcb5f..b9b377d8d21 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "4AMX1x5HBbBTomRW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.25.json index 64e24be1614..8bbcd589a21 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "IcqKzHQfnQA1UkW8", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.4.json index e42acaf650c..2986511f617 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "AHLStcEIoS1RHwyz", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json index 95ebf7e18a3..066ac1e2c70 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MINIIS 0.25", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "2Bjqd3kqk6pShyiG", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json index 5ba4a33a8f7..150489808e4 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MINIIS 0.6", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "R91IhShMyoBTglCE", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.6", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json index 7a49dcef8d0..a7ba23c6a08 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "15ygzQ1DiW2HtpPe", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json index 8d5e2b1349e..42eec9a5831 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MK3.5 0.25", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "WsJWh6ENWQXavVtD", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json index 5f82ed43aba..7b9381ce90d 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MK3.5 0.6", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "gVBEPJdKmuE2rM9G", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.6", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json index d15dc95937d..4b659d9b0e8 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "W63l7cZGACTBIb3p", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.25.json index bff0a1e8db2..50a0f4ce268 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "4wRMLZd9QaZoH4kS", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.4.json index 084f2d1f1e8..a26826f5f33 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "vvxqhkOrXFUatgrU", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.5.json index 78ccec5ed2d..8b3c41bf753 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "hPK1xnCvbwYIFJ7H", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.6.json index 62f03ab062f..0e66b45a2f1 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "Vk99bKUtLe3aQVtm", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.25.json index 1003ec01a76..887af08eab6 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "dIHzQRDmPMTuqJwN", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.4.json index a7060e558bb..f9614d0c799 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "teKETDr5ds47ql40", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.5.json index 7e1200a7248..2e62ad96329 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "Pryn5mnRWDmI9oL6", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.6.json index 0904eb6e295..28d280fa93a 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "86FOKdhESDAyjhQv", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.16mm SPEED @CORE One 0.3.json b/resources/profiles/Prusa/process/0.16mm SPEED @CORE One 0.3.json index cc66712af51..e14133f440a 100644 --- a/resources/profiles/Prusa/process/0.16mm SPEED @CORE One 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm SPEED @CORE One 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm SPEED @CORE One 0.3", "inherits": "0.16mm SPEED @MK4S 0.3", "from": "system", + "setting_id": "YGK4pmtGyq62UmYk", "instantiation": "true", "sparse_infill_acceleration": "6000", "inner_wall_acceleration": "3000", diff --git a/resources/profiles/Prusa/process/0.16mm SPEED @CORE One L 0.3.json b/resources/profiles/Prusa/process/0.16mm SPEED @CORE One L 0.3.json index 9953c0ff6ae..b3d49bb6aef 100644 --- a/resources/profiles/Prusa/process/0.16mm SPEED @CORE One L 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm SPEED @CORE One L 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm SPEED @CORE One L 0.3", "inherits": "0.16mm SPEED @MK4S 0.3", "from": "system", + "setting_id": "x8xdbwb1fxd6SQjF", "instantiation": "true", "sparse_infill_acceleration": "6000", "inner_wall_acceleration": "3000", diff --git a/resources/profiles/Prusa/process/0.16mm SPEED @MK4S 0.3.json b/resources/profiles/Prusa/process/0.16mm SPEED @MK4S 0.3.json index c924a476a68..22bbbfe4cc2 100644 --- a/resources/profiles/Prusa/process/0.16mm SPEED @MK4S 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm SPEED @MK4S 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm SPEED @MK4S 0.3", "inherits": "0.16mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "l0Xjr7r8ifFYFfS2", "instantiation": "true", "inner_wall_acceleration": "2500", "inner_wall_speed": "140", diff --git a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One 0.3.json b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One 0.3.json index 566a53243d3..a9fdd909d86 100644 --- a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm STRUCTURAL @CORE One 0.3", "inherits": "0.16mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "7Ooochf8ACVNHHd8", "instantiation": "true", "sparse_infill_acceleration": "6000", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One L 0.3.json b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One L 0.3.json index aab5afe4da5..d8a75f9ac7e 100644 --- a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One L 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One L 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm STRUCTURAL @CORE One L 0.3", "inherits": "0.16mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "g4l1ezOS2gAGP8il", "instantiation": "true", "sparse_infill_acceleration": "6000", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @MK4S 0.3.json b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @MK4S 0.3.json index 4e6a76dcdd0..4d53a63623a 100644 --- a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @MK4S 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @MK4S 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm STRUCTURAL @MK4S 0.3", "inherits": "0.12mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "MT56BMLA6reWI2sF", "instantiation": "true", "bottom_shell_layers": "5", "default_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 0.3.json b/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 0.3.json index e90c50eafba..bba39e23485 100644 --- a/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 0.3.json @@ -3,7 +3,7 @@ "name": "0.16mm Speed @Prusa XL 0.3", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "EvodY9EfuOW01UoT", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.16", diff --git a/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 5T 0.3.json b/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 5T 0.3.json index d65737f286a..97f30384640 100644 --- a/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 5T 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 5T 0.3.json @@ -3,7 +3,7 @@ "name": "0.16mm Speed @Prusa XL 5T 0.3", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "m3gjDMcaMcVsQ40p", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.16", diff --git a/resources/profiles/Prusa/process/0.16mm Standard @MK4.json b/resources/profiles/Prusa/process/0.16mm Standard @MK4.json index d8d9a4e0016..a5643d328bd 100644 --- a/resources/profiles/Prusa/process/0.16mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.16mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "nqsLsyCk09uxuEf4", "instantiation": "true", "support_top_z_distance": "0.16", "support_bottom_z_distance": "0.16", diff --git a/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 0.3.json b/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 0.3.json index 3f912788862..deae48fb0e1 100644 --- a/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 0.3.json @@ -3,7 +3,7 @@ "name": "0.16mm Structural @Prusa XL 0.3", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "af3rNSTMisNshYoW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.16", diff --git a/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 5T 0.3.json b/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 5T 0.3.json index c9e4e2880ce..c2d1560e783 100644 --- a/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 5T 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 5T 0.3.json @@ -3,7 +3,7 @@ "name": "0.16mm Structural @Prusa XL 5T 0.3", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "ruo2hwRFtsXf0b6V", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.16", diff --git a/resources/profiles/Prusa/process/0.20mm Detail @MK3S 0.6.json b/resources/profiles/Prusa/process/0.20mm Detail @MK3S 0.6.json index 1bde3785322..ac35b3aaee2 100644 --- a/resources/profiles/Prusa/process/0.20mm Detail @MK3S 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Detail @MK3S 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm Detail @MK3S 0.6", "inherits": "process_common_mk3", "from": "system", + "setting_id": "dTfnuXbwKxIxw9Ed", "instantiation": "true", "print_settings_id": "0.20mm Detail @MK3S 0.6", "bottom_shell_layers": "4", diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS 0.6.json b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS 0.6.json index 4e31c18c312..87c5922a99c 100644 --- a/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm High Flow @MINIIS 0.6", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "6OaVdTR4lLVSBCtN", "instantiation": "true", "compatible_printers": [ "Prusa MINIIS 0.6 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS.json index edaf8bd4d00..2c3468da45d 100644 --- a/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS.json +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.20mm High Flow @MINIIS", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "ScxJeGOa12CObqRg", "instantiation": "true", "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json index 4dd9fe8ab61..0613e94dcfe 100644 --- a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm High Flow @MK3.5 0.6", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "k8vkbDmFmhTFGjg0", "instantiation": "true", "compatible_printers": [ "Prusa MK3.5 0.6 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json index b5ac0722186..326dd3f59fc 100644 --- a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.20mm High Flow @MK3.5", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "JknR1ZhRLLryHEgS", "instantiation": "true", "compatible_printers": [ "Prusa MK3.5 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Quality @MK3S.json b/resources/profiles/Prusa/process/0.20mm Quality @MK3S.json index 596d0feedde..831fe71ce0d 100644 --- a/resources/profiles/Prusa/process/0.20mm Quality @MK3S.json +++ b/resources/profiles/Prusa/process/0.20mm Quality @MK3S.json @@ -3,6 +3,7 @@ "name": "0.20mm Quality @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "61A1R52rzLOrzAIm", "instantiation": "true", "print_settings_id": "0.20mm Quality @MK3S", "bottom_shell_layers": "4", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One 0.4.json index 05fabc20f34..36b166b8ba3 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE FULL @CORE One 0.4", "inherits": "0.20mm SOLUBLE FULL @MK4S 0.4", "from": "system", + "setting_id": "o828K3OgfkY099HE", "instantiation": "true", "overhang_3_4_speed": "50", "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE[^_a-zA-Z0-9].*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One L 0.4.json index a418d7813d5..bec6f409e98 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE FULL @CORE One L 0.4", "inherits": "0.20mm SOLUBLE FULL @MK4S 0.4", "from": "system", + "setting_id": "7TWALkI3BHW6hP4s", "instantiation": "true", "overhang_2_4_speed": "50", "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE_L[^_a-zA-Z0-9].*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @MK4S 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @MK4S 0.4.json index 051bbab68d0..9e0098704f6 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE FULL @MK4S 0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "yYJCu437HslbPCKF", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and single_extruder_multi_material", "default_acceleration": "2500", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json index cb50aded6ab..7a880ee2175 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE INTERFACE @CORE One 0.4", "inherits": "0.20mm SOLUBLE INTERFACE @MK4S 0.4", "from": "system", + "setting_id": "hC9F5dv2WJ4pJMJx", "instantiation": "true", "overhang_3_4_speed": "50", "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE[^_a-zA-Z0-9].*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One L 0.4.json index 97da199ec43..af14b589162 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE INTERFACE @CORE One L 0.4", "inherits": "0.20mm SOLUBLE INTERFACE @MK4S 0.4", "from": "system", + "setting_id": "r8BNUNlPpwhTlojC", "instantiation": "true", "overhang_2_4_speed": "50", "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE_L[^_a-zA-Z0-9].*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @MK4S 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @MK4S 0.4.json index 9643afd7822..faf44e3824a 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE INTERFACE @MK4S 0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "bJQXRZ9OGtX61lLw", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and single_extruder_multi_material", "default_acceleration": "2500", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.3.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.3.json index a5dd97eaae7..85f29c3d5a5 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One 0.3", "inherits": "0.20mm SPEED @MK4S 0.3", "from": "system", + "setting_id": "X1LzgkBZdhAyYLzv", "instantiation": "true", "sparse_infill_acceleration": "6000", "inner_wall_acceleration": "3000", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.4.json index 1d958886db3..0edfed59575 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One 0.4", "inherits": "0.20mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "TcOnRh8cZfyZcQzx", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.5.json index b5448af9118..3f83a3ff547 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One 0.5", "inherits": "0.20mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "0XpimvIotRzkG5C0", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.6.json index 4862d8cc5c3..65410c7fa80 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One 0.6", "inherits": "0.20mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "wfltF3Wq4BExv5nn", "instantiation": "true", "overhang_3_4_speed": "30", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.4.json index 5ccfbaa7bb2..3e286cb7826 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One HF 0.4", "inherits": "0.20mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "JiBYOvJXa3KIsWlk", "instantiation": "true", "overhang_3_4_speed": "50", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.5.json index ea7aec1c34e..f42edd925c0 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One HF 0.5", "inherits": "0.20mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "8FVn4dELsu1VoEFn", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.6.json index c635ba612ef..c6d2192d23f 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One HF 0.6", "inherits": "0.20mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "kzKpZiJ0ni4ry97j", "instantiation": "true", "overhang_3_4_speed": "30", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.3.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.3.json index 67b93cc86a1..04777950f30 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L 0.3", "inherits": "0.20mm SPEED @MK4S 0.3", "from": "system", + "setting_id": "pmyDqKWv67HUQj8U", "instantiation": "true", "sparse_infill_acceleration": "6000", "inner_wall_acceleration": "3000", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.4.json index 557fe456fa7..aa4aa3de8e0 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L 0.4", "inherits": "0.20mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "TpYb9Z9NVIfRTVDv", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.5.json index 386d4f7e24a..6fa94514581 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L 0.5", "inherits": "0.20mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "kEd1dVPbUyHTGW2x", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.6.json index 684ee5bba98..3bfe8d97b0e 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L 0.6", "inherits": "0.20mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "Xge3hbQO7LYu708A", "instantiation": "true", "overhang_2_4_speed": "30", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.4.json index 8d114a70b24..ccae634dde5 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L HF 0.4", "inherits": "0.20mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "VfD1ailcNZG4715m", "instantiation": "true", "overhang_2_4_speed": "50", "overhang_3_4_speed": "60%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.5.json index 92e0fff6d8d..355504a1401 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L HF 0.5", "inherits": "0.20mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "zLSsXW9vdgJsghDt", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.6.json index e7c52ab1c26..76a8c84750a 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L HF 0.6", "inherits": "0.20mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "NlEh0boG6G8cm7er", "instantiation": "true", "overhang_2_4_speed": "30", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.3.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.3.json index e2231f3c814..af1f2bf4445 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S 0.3", "inherits": "0.16mm SPEED @MK4S 0.3", "from": "system", + "setting_id": "8d2rNAizWvmAflv3", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.4.json index f3a7fb25dc6..f49a2dbdfa4 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S 0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "LppzMTuL50os16Y4", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.5.json index 6e9fd9c2654..2af60a6812a 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S 0.5", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "2JePowdcfvIARvSH", "instantiation": "true", "bridge_acceleration": "1000", "bridge_speed": "40", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.6.json index 3c7ac3fdcd0..1091cea47f5 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S 0.6", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "Ybga6DH2mlyF5MtU", "instantiation": "true", "bottom_shell_thickness": "0.6", "bridge_speed": "40", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.4.json index f52e9274081..1625d6611e0 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S HF0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "3uOgKVnige4Pi69r", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.5.json index 17a5192bb30..6a632c08cbf 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S HF0.5", "inherits": "0.20mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "WgAgnBZ5G5Sc8GcQ", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.5 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.6.json index 3f92b75fc89..d996ee61be8 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S HF0.6", "inherits": "0.20mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "gXs4zWDUQz3ehJpO", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.3.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.3.json index 44c6d071be9..cee96bd8903 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One 0.3", "inherits": "0.20mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "QQ80iuZyDM3axjhS", "instantiation": "true", "sparse_infill_acceleration": "6000", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.4.json index 125710a5c8d..49c0105c049 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One 0.4", "inherits": "0.20mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "MJI3kUwsJ3adqKx7", "instantiation": "true", "overhang_3_4_speed": "45", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.5.json index 3721c1d5f99..3b9fa87546b 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One 0.5", "inherits": "0.20mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "4dkMphdZvBhDyRH3", "instantiation": "true", "overhang_3_4_speed": "45", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.6.json index 1adef543266..4b3404e0d67 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One 0.6", "inherits": "0.20mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "SJgbNC9RPNJ5pETW", "instantiation": "true", "overhang_3_4_speed": "30", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.3.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.3.json index 2cb7a63701c..578a6212075 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One L 0.3", "inherits": "0.20mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "h8W1s7KwhSXGeOJO", "instantiation": "true", "sparse_infill_acceleration": "6000", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.4.json index cf5e799fba5..9dcf115915b 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One L 0.4", "inherits": "0.20mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "ZREnOeR8PWDtBt6p", "instantiation": "true", "overhang_2_4_speed": "45", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.5.json index 804d2309356..33a8fd98b60 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One L 0.5", "inherits": "0.20mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "nPCt75oBbhvcdEu2", "instantiation": "true", "overhang_2_4_speed": "45", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.6.json index ff84e35f810..d01eca2bc52 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One L 0.6", "inherits": "0.20mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "lQYryBeFbSH5yG88", "instantiation": "true", "overhang_2_4_speed": "30", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.3.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.3.json index 6b2e7f908b2..091ff8166ca 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @MK4S 0.3", "inherits": "0.16mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "mrSU54k7z9Hgo1OH", "instantiation": "true", "bottom_shell_layers": "4", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.4.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.4.json index f1705d15255..c246f480c4e 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @MK4S 0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "L3DAq2SccG962vEW", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4", "default_acceleration": "2500", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.5.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.5.json index 268a9ff203b..6065291b101 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @MK4S 0.5", "inherits": "0.20mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "UMpHyWw24UuZweBB", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.5", "inner_wall_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.6.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.6.json index 86781f7eae3..574db2984aa 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @MK4S 0.6", "inherits": "0.20mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "jZOKkGNHWE3u1lv5", "instantiation": "true", "bridge_speed": "30", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MINIIS 0.6.json b/resources/profiles/Prusa/process/0.20mm Speed @MINIIS 0.6.json index 3ebbed0671c..8503c829773 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MINIIS 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @MINIIS 0.6", "inherits": "process_speed_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "XL7AI5iwHPma3sAW", "instantiation": "true", "compatible_printers": [ "Prusa MINIIS 0.6 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.20mm Speed @MINIIS.json index 466363bc20e..8d2f3ccd7cc 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @MINIIS", "inherits": "process_speed_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "8Sg9zpg5mIR9bcnU", "instantiation": "true", "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MK3.5 0.6.json b/resources/profiles/Prusa/process/0.20mm Speed @MK3.5 0.6.json index dbc1efd19ca..19e090c305a 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MK3.5 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @MK3.5 0.6", "inherits": "process_speed_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "yuklDUzGzkqsumBs", "instantiation": "true", "compatible_printers": [ "Prusa MK3.5 0.6 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.20mm Speed @MK3.5.json index 36968bb840a..df232f27a25 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @MK3.5", "inherits": "process_speed_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "pF9Ew8BX7HRNERlA", "instantiation": "true", "compatible_printers": [ "Prusa MK3.5 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MK3S 0.4.json b/resources/profiles/Prusa/process/0.20mm Speed @MK3S 0.4.json index 5a6997e2f12..605f1c8a69f 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm Speed @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "AKAm2oU4IGMAY4c1", "instantiation": "true", "print_settings_id": "0.20mm Speed @MK3S 0.4", "bottom_shell_layers": "4", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MK3S.json b/resources/profiles/Prusa/process/0.20mm Speed @MK3S.json index 192d7fc9a6e..30ee6664582 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MK3S.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MK3S.json @@ -3,6 +3,7 @@ "name": "0.20mm Speed @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "dNBYGs59kilHSvIa", "instantiation": "true", "print_settings_id": "0.20mm Speed @MK3S", "bottom_shell_layers": "4", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.3.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.3.json index f1660b4b888..dab45f662a5 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.3.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 0.3", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "FqJrjcMDEtvz4jch", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.4.json index f0cb09654bf..b0cac6a312f 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "zV7NsprJfhqVv5y4", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.5.json index 5fc87324955..491377b06ab 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "4ZEDsA7dwvEUWMMd", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.6.json index a8e3f8e555a..7abdeef07f0 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "KGgLyPwKSFxPjSvx", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.3.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.3.json index 9eae2ed2e52..ac28bcb2a94 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.3.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 5T 0.3", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "a0baBMlcEFTb2OZ8", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.4.json index 7ce2de427c2..ca2a97b65bb 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "pwGO2EEQjnIEhyKf", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.5.json index f2f7baa3d72..fef2204de3d 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "5F5Ch0i10mTq3zuV", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.6.json index 933e4711c09..abc273ff823 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "NqR708bAWmTqXUFY", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.25.json b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.25.json index 7bd1791b9d5..09a1bd29597 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.25.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.25.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINI 0.25", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AhtVuWDMULVCl0u1", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.6.json b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.6.json index d8b31f83d39..c4f043f133e 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINI 0.6", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wMoBkmRqQ0nhI5Tj", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.8.json b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.8.json index 92dd80cca49..0ea92ee09a2 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.8.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINI 0.8", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vKRfqdBwwfZ5f74h", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINI.json b/resources/profiles/Prusa/process/0.20mm Standard @MINI.json index 868cc508738..4dbddc5ac42 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINI.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINI.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINI", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "H5UpQUDCmsn9Amnq", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINIIS 0.6.json b/resources/profiles/Prusa/process/0.20mm Standard @MINIIS 0.6.json index b43707b17f7..0435cc8da9f 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINIIS 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINIIS 0.6", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "P1Z1TjcycB4aOjUT", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.20mm Standard @MINIIS.json index f754a1c1180..82464730f30 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINIIS", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "kzZbOFDyAMKrDA3k", "instantiation": "true", "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MK3.5 0.6.json b/resources/profiles/Prusa/process/0.20mm Standard @MK3.5 0.6.json index c0c885f250b..389a31f819a 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MK3.5 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MK3.5 0.6", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "uOfAfvo90yA9vHLs", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.20mm Standard @MK3.5.json index ce2f9940155..88da3797abc 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MK3.5", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "6tMTNrOMs79q12lV", "instantiation": "true", "compatible_printers": [ "Prusa MK3.5 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MK3S 0.4.json b/resources/profiles/Prusa/process/0.20mm Standard @MK3S 0.4.json index d9c5bfe82a9..58e2a24bd72 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MK3S 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MK3S 0.4", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EN9GmgReNJH7sDkh", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MK3S.json b/resources/profiles/Prusa/process/0.20mm Standard @MK3S.json index 3a91c35a61e..fbc6f3f8999 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MK3S.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MK3S.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MK3S", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "6h0Wz3WHr5VUcJor", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MK4.json b/resources/profiles/Prusa/process/0.20mm Standard @MK4.json index d474fbd16c7..9088378b94f 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "zRE35Z5rfEnie6Io", "instantiation": "true", "compatible_printers": [ "Prusa MK4 0.4 nozzle", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.4.json index 6863fbcc11f..60d38113708 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "Qxbp7FRlShkyIUMl", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.5.json index 4fcd77f1ea0..4a4cbc41acd 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "4GvQY4XeLAzrYIRW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.6.json index a6db9503e76..5af5fce34fa 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "TcJJBvFu5zKjphzL", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.4.json index bf2d57b1d99..b6a0286d0ab 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "FagNs0wxnyQOYiaQ", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.5.json index 6b0ebc9dbe9..d0a18dc4af0 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "pO0wAwE0qoXzEQpV", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.6.json index dcc821f639a..2ec55473d59 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "8OkUXQAW5vByC09t", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.24mm Standard @MK4.json b/resources/profiles/Prusa/process/0.24mm Standard @MK4.json index 61d55279f52..90641f510b3 100644 --- a/resources/profiles/Prusa/process/0.24mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.24mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "sEDT2ffQogmU0BA0", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/Prusa/process/0.25mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.25mm High Flow @MINIIS.json index 0576c29febd..e89b02925fd 100644 --- a/resources/profiles/Prusa/process/0.25mm High Flow @MINIIS.json +++ b/resources/profiles/Prusa/process/0.25mm High Flow @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.25mm High Flow @MINIIS", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "NStQbUF9Il7AGEe7", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json index 785a76123f2..c4bf3b1a3d8 100644 --- a/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json +++ b/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.25mm High Flow @MK3.5", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "3ObKDK96JNodU1BG", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.5.json index 24a07b97906..3c3e91d783c 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One 0.5", "inherits": "0.25mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "j18VMrjkn0nNcqF0", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.6.json index 68f78014b76..e86acffc45e 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One 0.6", "inherits": "0.25mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "UbyRKcnbmQtxSOGo", "instantiation": "true", "overhang_3_4_speed": "30", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.4.json index 26be3fdbabf..d9e9f8e4226 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One HF 0.4", "inherits": "0.25mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "HmzxDcsh7N8XFbcZ", "instantiation": "true", "overhang_3_4_speed": "50", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.5.json index dfca2e9d153..7f96a05054b 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One HF 0.5", "inherits": "0.25mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "HvtMtivKFekmwpqp", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.6.json index 7320fd9308e..41dc4204726 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One HF 0.6", "inherits": "0.25mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "L5p4CoVhGtFA8NUk", "instantiation": "true", "overhang_3_4_speed": "30", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.5.json index dcc43a99236..da38b0feca9 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One L 0.5", "inherits": "0.25mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "dXbRRcioWgelWC4v", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.6.json index 5fcc114df6f..d6dce7700c4 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One L 0.6", "inherits": "0.25mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "mMMK2jmzahWruFjK", "instantiation": "true", "overhang_2_4_speed": "30", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.4.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.4.json index 042000c2b14..ae07e2925f6 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One L HF 0.4", "inherits": "0.25mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "MOYF1incx6aCPT3i", "instantiation": "true", "overhang_2_4_speed": "50", "overhang_3_4_speed": "60%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.5.json index d2d87f0ef4d..f5ba02df20e 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One L HF 0.5", "inherits": "0.25mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "5RD43d3hRH0Um64z", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.6.json index 8ba267bc5b4..76b3e999199 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One L HF 0.6", "inherits": "0.25mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "71l9zfjgGKBk7P4O", "instantiation": "true", "overhang_2_4_speed": "30", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.5.json index ffa73cc0ec0..3d2dbbae2b9 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @MK4S 0.5", "inherits": "0.20mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "6zIKQgtZvu0u4I1J", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.6.json index e29ca5a0fa9..ff078242ab6 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @MK4S 0.6", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "lhcpQ2vaUl3bNZav", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.4.json b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.4.json index 439f94e2359..655cacd54da 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.4.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @MK4S HF0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "gN0mZ7Ft7Eu4okID", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.5.json index 78391122cdf..d2677987439 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @MK4S HF0.5", "inherits": "0.25mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "k1PEbozPePQEfoUn", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.5 and printer_notes=~/.*HF_NOZZLE.*/", "inner_wall_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.6.json index 05f6ee35e62..52d17eb1c30 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @MK4S HF0.6", "inherits": "0.25mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "wT069MAflYUgL2Dt", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", "inner_wall_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.5.json index c92287c8cc3..1bf77877b32 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One 0.5", "inherits": "0.25mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "Xwzu2GvZfskVw39Z", "instantiation": "true", "overhang_3_4_speed": "45", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.6.json index 96e747e6d70..71beca64182 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One 0.6", "inherits": "0.25mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "2Az8F1vPrNXgKK1V", "instantiation": "true", "overhang_3_4_speed": "30", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One HF 0.4.json index 744395633d8..572cc0d9dba 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One HF 0.4", "inherits": "0.25mm STRUCTURAL @MK4S HF0.4", "from": "system", + "setting_id": "zBWdXWEuyUFu88Pg", "instantiation": "true", "overhang_3_4_speed": "45", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.5.json index d26110eff01..ea76436bcfd 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One L 0.5", "inherits": "0.25mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "Q18YLBysOKUOCGFN", "instantiation": "true", "overhang_2_4_speed": "45", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.6.json index 46e632c103a..b469f0147fb 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One L 0.6", "inherits": "0.25mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "lbfAxjCkRzBZrjkV", "instantiation": "true", "overhang_2_4_speed": "30", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L HF 0.4.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L HF 0.4.json index dac0e09a36f..50a04019bf4 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L HF 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One L HF 0.4", "inherits": "0.25mm STRUCTURAL @MK4S HF0.4", "from": "system", + "setting_id": "O8EVUpvpeeBJXyC3", "instantiation": "true", "overhang_2_4_speed": "45", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.5.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.5.json index 315bb730820..fc265a6c617 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @MK4S 0.5", "inherits": "0.20mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "PmEEwx27ogiKLuTb", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.6.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.6.json index 4ff3814428d..133769f51d3 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @MK4S 0.6", "inherits": "0.25mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "Xlv8B4XOiA9s2SRR", "instantiation": "true", "bridge_speed": "30", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S HF0.4.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S HF0.4.json index 2b6a475102d..9c60519cb21 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S HF0.4.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S HF0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @MK4S HF0.4", "inherits": "0.20mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "krbZAdSGpwpMoVa6", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json index 1b246daf0b2..e9aa785ec6e 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @MINIIS", "inherits": "process_speed_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "WiXsW2wAQT6xR3Br", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json index c0399ac8f7a..4289c460327 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @MK3.5", "inherits": "process_speed_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "6zgm1F8XpmrfzjEw", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.5.json index 78c3bf7eb66..5af9cf63eaa 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "tq9hNTKxOHFsZMgD", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.6.json index dd103d5f3ef..0c01b887dd4 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "kYif9gSFIrI9L3CW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.5.json index 0347d1e2bb2..7f7664d19b9 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "wd734eTxLLTp27F6", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.6.json index 218ac81ba72..5793905ca7e 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "t8zI85OaAzx7AsyL", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json index e41b9dcada8..819ffa5d89c 100644 --- a/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @MINIIS", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "00iXUgejDbuEyh9k", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json index dceaf245ad8..2bda1f2d0a7 100644 --- a/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @MK3.5", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "Mbhn0O8d09lviJtQ", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.4.json index 9c595e544d4..85c5e02eb69 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "uL9lKUTCwCBZzAKb", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.5.json index edc026da2af..6b27ad3553b 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "BOc6zlHnIaJ1rmc1", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.6.json index cf61231b3ec..c5817295d0f 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "A90mwMlerqcS0vrw", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.4.json index c0a64ada464..a764f7ebfd2 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "Edfv72b1RXBgmN2G", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.5.json index abb35559f1d..45f0fcca77b 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "XucbZWnHhwG4rAhk", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.6.json index 4e76ea368b2..1486fc47a8f 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "5J54CuOpmESv7rvu", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One HF 0.4.json index e1b89ef8c63..53a0ac9a31b 100644 --- a/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm DRAFT @CORE One HF 0.4", "inherits": "0.28mm DRAFT @MK4S HF0.4", "from": "system", + "setting_id": "CbQCA65dMMEkK134", "instantiation": "true", "overhang_3_4_speed": "50", "support_threshold_angle": "35", diff --git a/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One L HF 0.4.json b/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One L HF 0.4.json index a89b9b4aec9..c6b4961524e 100644 --- a/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One L HF 0.4.json +++ b/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One L HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm DRAFT @CORE One L HF 0.4", "inherits": "0.28mm DRAFT @MK4S HF0.4", "from": "system", + "setting_id": "RU7TfPyCeUvdXHhB", "instantiation": "true", "overhang_2_4_speed": "50", "support_threshold_angle": "35", diff --git a/resources/profiles/Prusa/process/0.28mm DRAFT @MK4S HF0.4.json b/resources/profiles/Prusa/process/0.28mm DRAFT @MK4S HF0.4.json index 727941002ed..6885891e8db 100644 --- a/resources/profiles/Prusa/process/0.28mm DRAFT @MK4S HF0.4.json +++ b/resources/profiles/Prusa/process/0.28mm DRAFT @MK4S HF0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm DRAFT @MK4S HF0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "Spw0OqvyBY2H5M9j", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.28mm Standard @MK4.json b/resources/profiles/Prusa/process/0.28mm Standard @MK4.json index 32360e3284b..f3e5afb78fa 100644 --- a/resources/profiles/Prusa/process/0.28mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.28mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.28mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "Bg1hnOKReinc7pzX", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One 0.8.json b/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One 0.8.json index bf1bbe2f343..9c6bd580978 100644 --- a/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm DETAIL @CORE One 0.8", "inherits": "0.30mm DETAIL @MK4S 0.8", "from": "system", + "setting_id": "m23j7wSoEJdezJgy", "instantiation": "true", "overhang_3_4_speed": "35", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One L 0.8.json b/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One L 0.8.json index a7132012692..c3a03dccd90 100644 --- a/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One L 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One L 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm DETAIL @CORE One L 0.8", "inherits": "0.30mm DETAIL @MK4S 0.8", "from": "system", + "setting_id": "tFAbAaIwrUd2Q7Xz", "instantiation": "true", "overhang_2_4_speed": "35", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm DETAIL @MK4S 0.8.json b/resources/profiles/Prusa/process/0.30mm DETAIL @MK4S 0.8.json index 133d1aac058..30136ee2759 100644 --- a/resources/profiles/Prusa/process/0.30mm DETAIL @MK4S 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm DETAIL @MK4S 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm DETAIL @MK4S 0.8", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "jllXUdTLgXXBFvmv", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json b/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json index 133ca901399..4d6aa0f2fe2 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.30mm Detail @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "ptyJRt8c36jzZ2Hq", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json b/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json index 18d087f4696..78919f67dcc 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.30mm Detail @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "bDM5jdM1fJbfkbyc", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.30mm Detail @MK3S 0.8.json b/resources/profiles/Prusa/process/0.30mm Detail @MK3S 0.8.json index cc847b676af..ea9890b8616 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @MK3S 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @MK3S 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm Detail @MK3S 0.8", "inherits": "process_common_mk3", "from": "system", + "setting_id": "1qXLjE0D0HsmBsb4", "instantiation": "true", "print_settings_id": "0.30mm Detail @MK3S 0.8", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 0.8.json b/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 0.8.json index e6c3ed7ef0c..b151b0158b9 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 0.8.json @@ -3,7 +3,7 @@ "name": "0.30mm Detail @Prusa XL 0.8", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "JM08ZuRlG9tw2qoT", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.3", diff --git a/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 5T 0.8.json b/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 5T 0.8.json index 0806df8c2e0..03d08a0ff7a 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 5T 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 5T 0.8.json @@ -3,7 +3,7 @@ "name": "0.30mm Detail @Prusa XL 5T 0.8", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "mVylvEhxHQAHdsb2", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.3", diff --git a/resources/profiles/Prusa/process/0.30mm Draft @MK3S 0.4.json b/resources/profiles/Prusa/process/0.30mm Draft @MK3S 0.4.json index 5b255f7a207..5dba98faa1c 100644 --- a/resources/profiles/Prusa/process/0.30mm Draft @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.30mm Draft @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.30mm Draft @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "GGfuHP2VuSiglzq3", "instantiation": "true", "print_settings_id": "0.30mm Draft @MK3S 0.4", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.30mm Draft @MK3S.json b/resources/profiles/Prusa/process/0.30mm Draft @MK3S.json index 4bc56a992f0..62faaa74a18 100644 --- a/resources/profiles/Prusa/process/0.30mm Draft @MK3S.json +++ b/resources/profiles/Prusa/process/0.30mm Draft @MK3S.json @@ -3,6 +3,7 @@ "name": "0.30mm Draft @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "ZKZEX0KIkQicEM07", "instantiation": "true", "print_settings_id": "0.30mm Draft @MK3S", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.30mm Quality @MK3S 0.6.json b/resources/profiles/Prusa/process/0.30mm Quality @MK3S 0.6.json index 40cda138f30..a85034c320b 100644 --- a/resources/profiles/Prusa/process/0.30mm Quality @MK3S 0.6.json +++ b/resources/profiles/Prusa/process/0.30mm Quality @MK3S 0.6.json @@ -3,6 +3,7 @@ "name": "0.30mm Quality @MK3S 0.6", "inherits": "process_common_mk3", "from": "system", + "setting_id": "NG2KbUeHRUSPXrk1", "instantiation": "true", "print_settings_id": "0.30mm Quality @MK3S 0.6", "bridge_acceleration": "1000", diff --git a/resources/profiles/Prusa/process/0.30mm SPEED @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.30mm SPEED @CORE One HF 0.8.json index 55189045615..bf03acf0f0e 100644 --- a/resources/profiles/Prusa/process/0.30mm SPEED @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm SPEED @CORE One HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm SPEED @CORE One HF 0.8", "inherits": "0.30mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "wV3jMl7YWJ8dwdE8", "instantiation": "true", "overhang_3_4_speed": "45", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm SPEED @CORE One L HF 0.8.json b/resources/profiles/Prusa/process/0.30mm SPEED @CORE One L HF 0.8.json index 7eb02f671a7..1d7e71c4095 100644 --- a/resources/profiles/Prusa/process/0.30mm SPEED @CORE One L HF 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm SPEED @CORE One L HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm SPEED @CORE One L HF 0.8", "inherits": "0.30mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "MGqeaqYYBjlVPxJ2", "instantiation": "true", "overhang_2_4_speed": "45", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm SPEED @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.30mm SPEED @MK4S HF0.8.json index d50dd635e33..4128d50f496 100644 --- a/resources/profiles/Prusa/process/0.30mm SPEED @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.30mm SPEED @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm SPEED @MK4S HF0.8", "inherits": "0.30mm DETAIL @MK4S 0.8", "from": "system", + "setting_id": "reTpMFk8Nk31aBN7", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "80", diff --git a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One HF 0.8.json index 3c0520d4411..39b25ddf00d 100644 --- a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm STRUCTURAL @CORE One HF 0.8", "inherits": "0.30mm STRUCTURAL @MK4S HF0.8", "from": "system", + "setting_id": "uzCEBmbNEQVjR8i8", "instantiation": "true", "overhang_3_4_speed": "40", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One L HF 0.8.json b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One L HF 0.8.json index b993d6a90da..74b3ca4da0a 100644 --- a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One L HF 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One L HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm STRUCTURAL @CORE One L HF 0.8", "inherits": "0.30mm STRUCTURAL @MK4S HF0.8", "from": "system", + "setting_id": "sG8TZbVakt0sUNJJ", "instantiation": "true", "overhang_2_4_speed": "40", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @MK4S HF0.8.json index 23d3cfa045b..e2d2255ea6b 100644 --- a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm STRUCTURAL @MK4S HF0.8", "inherits": "0.30mm DETAIL @MK4S 0.8", "from": "system", + "setting_id": "hfqkdmwibTRyrfXY", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "60", diff --git a/resources/profiles/Prusa/process/0.32mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.32mm High Flow @MINIIS.json index 7a770a6c01f..bcb8e5a24fa 100644 --- a/resources/profiles/Prusa/process/0.32mm High Flow @MINIIS.json +++ b/resources/profiles/Prusa/process/0.32mm High Flow @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.32mm High Flow @MINIIS", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "dYseXuv4xa703tvI", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json index 482b497f126..9d302ac415b 100644 --- a/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json +++ b/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.32mm High Flow @MK3.5", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "GmseuiaxndWA2NEA", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One 0.6.json index d5ce206eef5..2eff09b3dfd 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One 0.6", "inherits": "0.32mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "ggWI2g8z3wNfnFG3", "instantiation": "true", "overhang_3_4_speed": "30", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.5.json index 3e81d806a30..130a8407ab2 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One HF 0.5", "inherits": "0.32mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "gDKE0bH5qPyNewzu", "instantiation": "true", "overhang_3_4_speed": "50", "support_interface_speed": "50%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.6.json index bafa6bec2fd..04930916198 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One HF 0.6", "inherits": "0.32mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "h1nfJq2NJquQhuRt", "instantiation": "true", "overhang_3_4_speed": "35", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L 0.6.json index 98ac75a32f1..4a08d4af83f 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One L 0.6", "inherits": "0.32mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "T7OokZGHzzb08zU1", "instantiation": "true", "overhang_2_4_speed": "30", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.5.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.5.json index c912bc4135f..55a52e9e397 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.5.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One L HF 0.5", "inherits": "0.32mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "qMsePiXtEX9sZoPI", "instantiation": "true", "overhang_2_4_speed": "50", "support_interface_speed": "50%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.6.json index 2441b828c9e..59e38d58b30 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One L HF 0.6", "inherits": "0.32mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "cK8T3bqisPivC2MG", "instantiation": "true", "overhang_2_4_speed": "35", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S 0.6.json index e03cb51a209..6d7707407bc 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @MK4S 0.6", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "Gd8qx8j8iAcpbyg5", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.5.json b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.5.json index 1248abd88df..ac5abc6aba1 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.5.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @MK4S HF0.5", "inherits": "0.25mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "pqaJA2REtKWdfqRN", "instantiation": "true", "inner_wall_speed": "160", "layer_height": "0.32", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.6.json index 9520435fcc5..36cf9d8d5a1 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @MK4S HF0.6", "inherits": "0.32mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "nwxEXzPZ2ZHEJ8fn", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", "inner_wall_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One 0.6.json index 5bd50436166..8047c051e58 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One 0.6", "inherits": "0.32mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "xwwhZvsBxulQ1x0L", "instantiation": "true", "overhang_3_4_speed": "30", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.5.json index 41cdf31c66f..616f708c247 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One HF 0.5", "inherits": "0.32mm STRUCTURAL @MK4S HF0.5", "from": "system", + "setting_id": "RISdNOnVSnA7v3yH", "instantiation": "true", "overhang_3_4_speed": "45", "support_speed": "120", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.6.json index bcc63ecd1c4..6af7e5c99ef 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One HF 0.6", "inherits": "0.32mm STRUCTURAL @MK4S HF0.6", "from": "system", + "setting_id": "VeYx8eYxSM2B7X2d", "instantiation": "true", "overhang_3_4_speed": "35", "support_speed": "110", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L 0.6.json index a327cdab371..66ad418759a 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One L 0.6", "inherits": "0.32mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "UAxeWJiiT2m1Bbtw", "instantiation": "true", "overhang_2_4_speed": "30", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.5.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.5.json index 07b234d5a22..96ccf84ffe5 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.5.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One L HF 0.5", "inherits": "0.32mm STRUCTURAL @MK4S HF0.5", "from": "system", + "setting_id": "JL4YWILCcvv52be3", "instantiation": "true", "overhang_2_4_speed": "45", "support_speed": "120", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.6.json index 45b32b83bea..f08e6d163d5 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One L HF 0.6", "inherits": "0.32mm STRUCTURAL @MK4S HF0.6", "from": "system", + "setting_id": "0VWfEpp1iX7dyQHj", "instantiation": "true", "overhang_2_4_speed": "35", "support_speed": "110", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S 0.6.json index 6a061f0db98..4235502aef7 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @MK4S 0.6", "inherits": "0.32mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "c7Lno3eNSKr6FJX6", "instantiation": "true", "bottom_shell_layers": "4", "bridge_speed": "30", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.5.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.5.json index 8f35f82e30f..ff6554185fe 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.5.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @MK4S HF0.5", "inherits": "0.25mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "f82vpEeOQBK3OyLR", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.5 and printer_notes=~/.*HF_NOZZLE.*/", "layer_height": "0.32" diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.6.json index f5e4e06ec14..d27a6fe3a16 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @MK4S HF0.6", "inherits": "0.32mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "EkP4fKl8xEv2ph7W", "instantiation": "true", "bottom_shell_layers": "4", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 0.6.json index 61e3fc9926b..cbfb7d03ee7 100644 --- a/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.32mm Speed @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "d3SdQ2Ms90vQRJbJ", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.32", diff --git a/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 5T 0.6.json index e8ec37c7f65..0a5a7eb3551 100644 --- a/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.32mm Speed @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "A2r7IL3r5X8aq4K9", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.32", diff --git a/resources/profiles/Prusa/process/0.32mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.32mm Standard @MINIIS.json index 1d90c69033e..53cd7a7a91c 100644 --- a/resources/profiles/Prusa/process/0.32mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.32mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @MINIIS", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "0F6S8dmMndORzA5b", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json index 5b6f1b0f008..d3e2c15c906 100644 --- a/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @MK3.5", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "bKePuYaEL04MBPoC", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.32mm Standard @MK4.json b/resources/profiles/Prusa/process/0.32mm Standard @MK4.json index 2dc20dfe119..f9127b4026e 100644 --- a/resources/profiles/Prusa/process/0.32mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.32mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "dfvtNxtSLxS4dtdf", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 0.6.json index 907904d8124..29719b30eab 100644 --- a/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.32mm Structural @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "4ncLiUnnM834iAYT", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.32", diff --git a/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 5T 0.6.json index 63a7f0e144a..fd7d7bfcdad 100644 --- a/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.32mm Structural @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "xeKmcP5CbIOoRybG", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.32", diff --git a/resources/profiles/Prusa/process/0.35mm Speed @MK3S 0.6.json b/resources/profiles/Prusa/process/0.35mm Speed @MK3S 0.6.json index 4f85c2bbfc8..5b7482f3f69 100644 --- a/resources/profiles/Prusa/process/0.35mm Speed @MK3S 0.6.json +++ b/resources/profiles/Prusa/process/0.35mm Speed @MK3S 0.6.json @@ -3,6 +3,7 @@ "name": "0.35mm Speed @MK3S 0.6", "inherits": "process_common_mk3", "from": "system", + "setting_id": "nueuvg0V3rKbrAcZ", "instantiation": "true", "print_settings_id": "0.35mm Speed @MK3S 0.6", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json index 9a74c9b2d05..f8684a9d282 100644 --- a/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.35mm Standard @MINIIS", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "xx9iPMmcqAVtjYcN", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json index 57ec50bda17..e92af4d0721 100644 --- a/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.35mm Standard @MK3.5", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "GLngqRyHYdN5cEw4", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.40mm Draft @MK3S 0.6.json b/resources/profiles/Prusa/process/0.40mm Draft @MK3S 0.6.json index 67ad7994d74..916823b98ac 100644 --- a/resources/profiles/Prusa/process/0.40mm Draft @MK3S 0.6.json +++ b/resources/profiles/Prusa/process/0.40mm Draft @MK3S 0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm Draft @MK3S 0.6", "inherits": "process_common_mk3", "from": "system", + "setting_id": "xevpfgK2B9WzOO8D", "instantiation": "true", "print_settings_id": "0.40mm Draft @MK3S 0.6", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.40mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.40mm High Flow @MINIIS.json index e37ddd6a063..4bf359d55e9 100644 --- a/resources/profiles/Prusa/process/0.40mm High Flow @MINIIS.json +++ b/resources/profiles/Prusa/process/0.40mm High Flow @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.40mm High Flow @MINIIS", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "KcQJxT8hm45mCecB", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json index 48ee37c09a4..267e7569948 100644 --- a/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json +++ b/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.40mm High Flow @MK3.5", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "64EY8WsPAoLqWxlF", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One 0.8.json b/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One 0.8.json index 8678c6f6b95..13aac206ae9 100644 --- a/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm QUALITY @CORE One 0.8", "inherits": "0.40mm QUALITY @MK4S 0.8", "from": "system", + "setting_id": "2XzTOQAtbbUhXKeX", "instantiation": "true", "overhang_3_4_speed": "35", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One L 0.8.json b/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One L 0.8.json index 7debdd9b35d..637974ee161 100644 --- a/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One L 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One L 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm QUALITY @CORE One L 0.8", "inherits": "0.40mm QUALITY @MK4S 0.8", "from": "system", + "setting_id": "RiYZSndNAKnfqWEV", "instantiation": "true", "overhang_2_4_speed": "35", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm QUALITY @MK4S 0.8.json b/resources/profiles/Prusa/process/0.40mm QUALITY @MK4S 0.8.json index 57791c2e535..0956397fef0 100644 --- a/resources/profiles/Prusa/process/0.40mm QUALITY @MK4S 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm QUALITY @MK4S 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm QUALITY @MK4S 0.8", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "MRHeqHymBP1gBtub", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/Prusa/process/0.40mm Quality @MK3S 0.8.json b/resources/profiles/Prusa/process/0.40mm Quality @MK3S 0.8.json index 1fe83f4b453..e34fb5669af 100644 --- a/resources/profiles/Prusa/process/0.40mm Quality @MK3S 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm Quality @MK3S 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm Quality @MK3S 0.8", "inherits": "process_common_mk3", "from": "system", + "setting_id": "5HHBTVM3m6egxp6k", "instantiation": "true", "print_settings_id": "0.40mm Quality @MK3S 0.8", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 0.8.json b/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 0.8.json index 00c1c54f420..bcbdde8b774 100644 --- a/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 0.8.json @@ -3,7 +3,7 @@ "name": "0.40mm Quality @Prusa XL 0.8", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "tj6gyfFMCp33ihPU", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.4", diff --git a/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 5T 0.8.json b/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 5T 0.8.json index 254c9c04f1a..aba69efc592 100644 --- a/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 5T 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 5T 0.8.json @@ -3,7 +3,7 @@ "name": "0.40mm Quality @Prusa XL 5T 0.8", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "U8SGkKfwyjRe5VCr", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.4", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.6.json index 90829a40e1f..b6efaf1a85f 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @CORE One HF 0.6", "inherits": "0.40mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "ecyfUzv5L2MJ74lQ", "instantiation": "true", "overhang_3_4_speed": "35", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.8.json index df8ed1a00f0..1d1f670be5b 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @CORE One HF 0.8", "inherits": "0.40mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "md2z7xPjOLeOWx25", "instantiation": "true", "overhang_3_4_speed": "45", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.6.json index 36f2cd16936..d06cdafb353 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @CORE One L HF 0.6", "inherits": "0.40mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "Qz6UOajHaO5Zctcf", "instantiation": "true", "overhang_2_4_speed": "35", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.8.json b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.8.json index 34521c4410b..951ef416a50 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @CORE One L HF 0.8", "inherits": "0.40mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "32gxZmTbua4CBOBA", "instantiation": "true", "overhang_2_4_speed": "45", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.6.json index 22e0f144208..260ab97250a 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @MK4S HF0.6", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "zzDZ9Sf3VchPHPhq", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.8.json index 1a55e1da9f5..56dbd9aa205 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @MK4S HF0.8", "inherits": "0.40mm QUALITY @MK4S 0.8", "from": "system", + "setting_id": "Eq0vnD1Ps6zw0q35", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "65", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.6.json index 9ee47887da8..a9704ffdf74 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @CORE One HF 0.6", "inherits": "0.40mm STRUCTURAL @MK4S HF0.6", "from": "system", + "setting_id": "6oVNX62VOpdaRmbI", "instantiation": "true", "overhang_3_4_speed": "35", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.8.json index 97e19dfe4fc..b860b0ccad2 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @CORE One HF 0.8", "inherits": "0.40mm STRUCTURAL @MK4S HF0.8", "from": "system", + "setting_id": "oGmCrMvVMo9eXPlo", "instantiation": "true", "overhang_3_4_speed": "40", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.6.json index 189b624f49a..ae15f9baf0d 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @CORE One L HF 0.6", "inherits": "0.40mm STRUCTURAL @MK4S HF0.6", "from": "system", + "setting_id": "UpWXWwLE9frOIeg4", "instantiation": "true", "overhang_2_4_speed": "35", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.8.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.8.json index ba03dc81ad8..cbec6efdb32 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @CORE One L HF 0.8", "inherits": "0.40mm STRUCTURAL @MK4S HF0.8", "from": "system", + "setting_id": "wngAGl4Qr4sOzXLA", "instantiation": "true", "overhang_2_4_speed": "40", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.6.json index 3cd65f575f9..578e54c61a6 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @MK4S HF0.6", "inherits": "0.40mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "Ggk6NDzr32YMuBeD", "instantiation": "true", "bridge_speed": "30", "inner_wall_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.8.json index fd1c35fa9e8..c3bdb1c3479 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @MK4S HF0.8", "inherits": "0.40mm QUALITY @MK4S 0.8", "from": "system", + "setting_id": "TyEnq1EFOf3CBmwA", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "65", diff --git a/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json index 554b6aa3f7a..e9ef104b912 100644 --- a/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "dP964UNjH7vgPB6E", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json index 2b48a610f5a..28c3640a858 100644 --- a/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "B7uvaoiRvFBRM2vb", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.40mm Standard @MK4.json b/resources/profiles/Prusa/process/0.40mm Standard @MK4.json index fd11625a65a..36d0411f56a 100644 --- a/resources/profiles/Prusa/process/0.40mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.40mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "HekoeZvcxM1NIpwD", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One 0.8.json b/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One 0.8.json index cd23f77b00d..d2e1fa1c247 100644 --- a/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm DRAFT @CORE One 0.8", "inherits": "0.55mm DRAFT @MK4S 0.8", "from": "system", + "setting_id": "MQ9Yw9qzsI0mVAbc", "instantiation": "true", "top_surface_acceleration": "2000", "inner_wall_acceleration": "2500", diff --git a/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One L 0.8.json b/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One L 0.8.json index 17c0a18c0d7..203b552ac1f 100644 --- a/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One L 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One L 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm DRAFT @CORE One L 0.8", "inherits": "0.55mm DRAFT @MK4S 0.8", "from": "system", + "setting_id": "yYMszPCSBo67sVjd", "instantiation": "true", "top_surface_speed": "2000", "inner_wall_acceleration": "2500", diff --git a/resources/profiles/Prusa/process/0.55mm DRAFT @MK4S 0.8.json b/resources/profiles/Prusa/process/0.55mm DRAFT @MK4S 0.8.json index fa4f86e465d..7f2676194d7 100644 --- a/resources/profiles/Prusa/process/0.55mm DRAFT @MK4S 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm DRAFT @MK4S 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm DRAFT @MK4S 0.8", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "B6Kv7TTd6ucR62bY", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/Prusa/process/0.55mm Draft @MK3S 0.8.json b/resources/profiles/Prusa/process/0.55mm Draft @MK3S 0.8.json index 9b4c9eebef4..6b297e45f08 100644 --- a/resources/profiles/Prusa/process/0.55mm Draft @MK3S 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm Draft @MK3S 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm Draft @MK3S 0.8", "inherits": "process_common_mk3", "from": "system", + "setting_id": "3CwGwu7DcQx8idVK", "instantiation": "true", "print_settings_id": "0.55mm Draft @MK3S 0.8", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 0.8.json b/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 0.8.json index a65f92de62e..88f4fc19043 100644 --- a/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 0.8.json @@ -3,7 +3,7 @@ "name": "0.55mm Draft @Prusa XL 0.8", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "M2F7JmD5xGYpqZKq", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.55", diff --git a/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 5T 0.8.json b/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 5T 0.8.json index d0a8afa8ded..d5573b0faf9 100644 --- a/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 5T 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 5T 0.8.json @@ -3,7 +3,7 @@ "name": "0.55mm Draft @Prusa XL 5T 0.8", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "uQMlAQBEj5Rf1gBW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.55", diff --git a/resources/profiles/Prusa/process/0.55mm SPEED @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.55mm SPEED @CORE One HF 0.8.json index 892c54b6843..de9024e3f2e 100644 --- a/resources/profiles/Prusa/process/0.55mm SPEED @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm SPEED @CORE One HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm SPEED @CORE One HF 0.8", "inherits": "0.55mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "zBotlr9rsKLjriaN", "instantiation": "true", "overhang_3_4_speed": "45", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.55mm SPEED @CORE One L HF 0.8.json b/resources/profiles/Prusa/process/0.55mm SPEED @CORE One L HF 0.8.json index 5d3b541cd0b..cb01d12c9be 100644 --- a/resources/profiles/Prusa/process/0.55mm SPEED @CORE One L HF 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm SPEED @CORE One L HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm SPEED @CORE One L HF 0.8", "inherits": "0.55mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "C1Ba7tvXoXbxs8h8", "instantiation": "true", "overhang_2_4_speed": "45", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.55mm SPEED @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.55mm SPEED @MK4S HF0.8.json index fc0ccd20cfd..6fd2d5e04b6 100644 --- a/resources/profiles/Prusa/process/0.55mm SPEED @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.55mm SPEED @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm SPEED @MK4S HF0.8", "inherits": "0.55mm DRAFT @MK4S 0.8", "from": "system", + "setting_id": "8T2f9AQSJeZkCTFr", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "60", diff --git a/resources/profiles/Prusa/process/0.55mm STRUCTURAL @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.55mm STRUCTURAL @MK4S HF0.8.json index 9d634ab7533..6c7121d234b 100644 --- a/resources/profiles/Prusa/process/0.55mm STRUCTURAL @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.55mm STRUCTURAL @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm STRUCTURAL @MK4S HF0.8", "inherits": "0.55mm DRAFT @MK4S 0.8", "from": "system", + "setting_id": "O1BlUFPIeKPLpphK", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "60", diff --git a/resources/profiles/Prusa/process/0.56mm Standard @MK4.json b/resources/profiles/Prusa/process/0.56mm Standard @MK4.json index 06349d22f16..27dcd58c694 100644 --- a/resources/profiles/Prusa/process/0.56mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.56mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "LN5YRmNQR6oNKbPm", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Qidi.json b/resources/profiles/Qidi.json index b2d823adafb..5831a94e2cb 100644 --- a/resources/profiles/Qidi.json +++ b/resources/profiles/Qidi.json @@ -1,6 +1,6 @@ { "name": "Qidi", - "version": "02.04.00.04", + "version": "02.04.00.05", "force_update": "0", "description": "Qidi configurations", "machine_model_list": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json index d128775b697..49320e218ad 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @0.2 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UWRDko6WCvXczl33", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json index 62d61475698..fee65970b04 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @0.6 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LUEO7LVrgko3oXzg", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json index 9f787f73cd3..09f1fb16951 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @0.8 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NKhfqNQIcfKQBYAK", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json index f3c4889c7b5..c773f1f723c 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q1 Pro 0.2 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sZn12as9SQDNFDO3", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json index 9bd9f9891cc..1930af3ebd0 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q1 Pro 0.4 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "coopc46hemdV9QIv", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json index 58ccb239457..2560aa37f12 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q1 Pro 0.6 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qvYl7pfvtgF2y25O", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json index c1ed98f833e..a27d0bbfb2b 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q1 Pro 0.8 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AzHGQIE0dGXjOhqG", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json index 870aa4b62a0..bddac012dca 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi X-Plus 4 0.2 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CoYm8sbAVmpmJNIV", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json index e02891e7787..f6f867f6b6d 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi X-Plus 4 0.4 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FnQb4cNqORpQ3Wkq", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json index dec0a1bcdf1..35ed1067987 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi X-Plus 4 0.6 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "94qvrRFOKOACTK2g", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json index b4b0eb179f6..9fd1b1d8789 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi X-Plus 4 0.8 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ehJ163zLubzIrWzf", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS.json b/resources/profiles/Qidi/filament/Bambu ABS.json index 71892347951..bc8e84d0d0a 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS.json +++ b/resources/profiles/Qidi/filament/Bambu ABS.json @@ -3,7 +3,7 @@ "name": "Bambu ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aZylcH8GeCJOqtTy", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json index 2b76ec337b5..4dae9d8980d 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @0.2 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "cZhyWv8zbkM3fgAS", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json index a263eb7f26e..ba727b25b8c 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @0.6 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "PfIdpsKf0Xw5admE", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json index cdc9921c6c6..5014051e991 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @0.8 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "czi4981YiirKP6Yy", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json index 846667811f7..123128a303f 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q1 Pro 0.2 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1BV8aedNHRa3h7rp", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json index 24d220c590d..2b3f40032fd 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q1 Pro 0.4 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eNHYNrSKn90P4GdZ", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json index 4235bdf0f5f..5c2b0ccecbe 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q1 Pro 0.6 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VU3PW2x6pfQ9Ayqo", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json index 934e555457b..b3b16a0ef2a 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q1 Pro 0.8 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2ezevTOIexxkTBJ2", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json index a4d967883e5..549a7c40551 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi X-Plus 4 0.2 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2vTNJwgFvUFq7oS9", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json index b51e2558268..63080da56ec 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi X-Plus 4 0.4 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q5ToVl9Yb4GGoNXC", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json index 388aa1b9533..0ce417dc1d9 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi X-Plus 4 0.6 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XpLJtB1WhRyb1C75", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json index 7f2ce802333..89e531f65e8 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi X-Plus 4 0.8 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PiYLOckPVRFKFTS6", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG.json b/resources/profiles/Qidi/filament/Bambu PETG.json index 945a08f0973..70d61730fa3 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG.json +++ b/resources/profiles/Qidi/filament/Bambu PETG.json @@ -3,7 +3,7 @@ "name": "Bambu PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "5ZkReXpCOi19xuJg", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json index a3fdad05c8e..dd01a686682 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @0.2 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "xY62JrDaYjjSb3lh", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json index 504d839958c..a21fcdd1b8c 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @0.6 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "HjjvZoWwpjZ2gwDO", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json index bc86554bcd7..5116b08e504 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @0.8 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "5dZqeodmshu33k4e", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json index 973b27eb53e..5d51f1eafcc 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q1 Pro 0.2 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6kHEv9BjLlJi4E9T", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json index e3fb795c887..9451f422a2b 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q1 Pro 0.4 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "G28Bah0iOaahWlPE", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json index 6f3fbfb423a..3e93b995159 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q1 Pro 0.6 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ioH4lDHLbCw65TIg", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json index ac0b3a388d7..02f5bab7f65 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q1 Pro 0.8 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oAUHAhSZkmCjhJEP", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json index 2d84298502b..9677e7fa319 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi X-Plus 4 0.2 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mT6I8HUJsMgYCjb4", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json index 28782b03e13..d9a8aa89ab9 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi X-Plus 4 0.4 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5sr5ABQQzrYFUxtk", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json index 9e40f5f9e18..c2611c3679d 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi X-Plus 4 0.6 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CNzhUsHWT2FOW2Qe", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json index ebe2a140b40..dc770d61eb8 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi X-Plus 4 0.8 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8Mosuf8MExl0g3Tz", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA.json b/resources/profiles/Qidi/filament/Bambu PLA.json index aaab7381eaf..ebdf2423d63 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA.json +++ b/resources/profiles/Qidi/filament/Bambu PLA.json @@ -3,7 +3,7 @@ "name": "Bambu PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "lweaPojzNVU2FJnO", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json index 024dbdf2061..c2a838f36ed 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi 0.2 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QASmOwd2vpLRwI9I", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json index fa3a6fc95e2..d81164ca798 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi 0.6 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FETCvNKTRyxJujEs", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json index edb9bdebcc3..d18a295fe2c 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi 0.8 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ywzSdHmCxIwmIFVS", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json index 084d29524a4..b5c25a1bcea 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EwhasEiqLRcN5gBN", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json index 93406dd75ab..4a0b67f0a0d 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0NVX3dTScYTIebm3", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json index e793b8bdb68..2c8d4bc22d2 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HCU0TmDPYF39Gc3X", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json index b2a740f5a8b..62bb876608b 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Pf6oZn5QrYSbJhdm", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json index 4d0f59add4e..b6f03502b3a 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6LSdExBaTT0Mc3rY", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json index 0aea7d1217a..a4ebcb6a7b0 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vc2R90RYyDuY8vQn", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json index 855f1887db3..1d4d13d416d 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1HVRVgHeXWVj3T0v", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json index 47cf8b00e8f..b16ce365f84 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aJxjGxHK8UJOqYPV", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi.json index b52c039c6a4..5e4fd7cf10d 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0fchNQsqRqwI6whN", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json index d026cc94672..f62408c77a0 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @0.2 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSG99", + "setting_id": "Cw3CaLrsjVfJKoWI", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json index 4aaf8ced6c8..cb8360eb880 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @0.6 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSG99", + "setting_id": "eLmXN4kJvaoq5Ude", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json index 25309d78e83..6f795a2d1a0 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @0.8 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSG99", + "setting_id": "mndT3gxOniftGEEZ", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json index 6f9d2dd62cf..8e0f9576fb9 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L8aHH2WqnlOYuyfd", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json index 9c996e287b4..cf9da5b3c12 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LMva5CR9m19UAhcI", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json index bf90d8d3cda..400f38d7fa4 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5EfWTFx0dXRTREkj", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json index bc4b0644179..44b77623c64 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xeu1S6h53DRVM9Pw", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json index b85d2415ab8..0b09a46b902 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UrZzA62PJDuvo9EC", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json index bf8de068336..696fddb2d8a 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jAykaomjQ4BS9Cg0", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json index 83936188435..c0203d9268a 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2QrBYfeT0mp048aY", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json index 44d72369025..aee2e475e2d 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9otX3aWO4xQA72DT", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json index 5eae8a63410..240181288d5 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "dqHKVy4ahTjpQFOJ", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json index aee64595361..88654fc93fb 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @0.2 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "GrYmKcX6ghgUO8z0", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json index e37fbe5b3ab..9c7fd6a7f00 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @0.6 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Fwd0BaBVmg2w9oBo", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json index efffa4cba44..ad2f0ea5ca7 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @0.8 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "OjSAPfXD7c9LpDZI", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json index c94421bcc50..8c0315ecd14 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tNk1yBoRzuKtWamt", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json index 607e64477e7..865f120bcb2 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oULA9qVGUD5izX9o", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json index ecfa4b60d40..956fa88d62c 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RK1LyCal04XMqidp", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json index 996a9187e77..535b07b9b09 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6ehhHeFIMe3KxHA1", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json index 7c873179687..c6a9a6564a1 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "i3bQYXjlGipOAop7", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json index adbe6a9b53d..60b9f5318c1 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vknSksUeSeKFl8vB", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json index 9788bde3d15..89ffc6501a2 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I5NFFjIYcoo3SkmC", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json index 265a7381635..6e28cd923e4 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gzDFMFaDnAVuDy3B", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi.json index 0e86d0287f9..ee79175e43a 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "jWtANauqr4Azj7fo", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json index 7962de65b91..70eea238a70 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi 0.2 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PVJaNrzYRoafHb3k", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json index 8ad22ff24c0..343532d893a 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi 0.6 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6dP4f482dvR9Ihhu", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json index 9da1f23366d..e607261a7b7 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi 0.8 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ol1pj7wlmGJlZHbA", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json index dec11db3036..aa2cc8787ce 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q1 Pro 0.2 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "d9bOxYmwJJ928QUm", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json index 288f960208b..451a97354e8 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q1 Pro 0.4 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3vOLIQxScIoHCUDQ", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json index 46f29655242..161cee6e4cd 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q1 Pro 0.6 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ninsIRmjQReutXjA", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json index 19d2e048c5b..e5e9652619a 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q1 Pro 0.8 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "m4sql22MWPed4UK9", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json index 79f5e50f6bf..c6d97b1e425 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi X-Plus 4 0.2 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SbIhXnMLo7UWLdmF", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json index c0958476949..ca632cb2521 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi X-Plus 4 0.4 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Hh22vTpUyqF09bma", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json index 2ac56a877e8..4419ba65774 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi X-Plus 4 0.6 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "10PSPCpiTcS92auy", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json index 08ee709578d..f203d3f536d 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi X-Plus 4 0.8 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Xevn2nrx7W5VQX6z", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi.json index 524f2d7fe3e..0ae10f90862 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rRuO94f0PYlPR3yu", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json index 1baf7985bcd..5245a44f185 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi 0.2 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "YnRI4rYCHDIi7Q0w", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json index 852b6f5b663..e8cd86f5c7d 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi 0.6 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Jizherw9T9l0X76l", "filament_id": "GFL99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json index 6916b57cae8..7d4f71ce125 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi 0.8 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "dHlHvcm2BjzlfUSk", "filament_id": "GFL99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json index fe7e059b55e..ad955edaeba 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q1 Pro 0.2 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3jqdiWNWro7yFptW", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json index ebbd3abe662..9e4bad8df8c 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q1 Pro 0.4 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tARHr87BkRknTQJI", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json index b1c4b766957..ae956faf9b5 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q1 Pro 0.6 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EEIdQ4XTkpQyRz3h", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json index 850ba1d0818..c961b4b4d1a 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q1 Pro 0.8 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NBbNF6S5sQYIiS9T", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json index 02a5874f61e..299c10c9b08 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi X-Plus 4 0.2 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gk2D7WKoLK1xPqLC", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json index 8ee6dbb9d72..3beb0aba292 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi X-Plus 4 0.4 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wtl6yNqJQUVhiBnB", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json index 615ef895b36..dc866429d04 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi X-Plus 4 0.6 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1fl42MjkwXbpjJ3r", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json index ac88c21e080..c87feb65e4b 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi X-Plus 4 0.8 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vxGQSWw07PXnllwO", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi.json index 0c4c19e9d93..f298c1f233d 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "XXJ4dSi48JuA54Iv", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json index 5795770fc31..01350e1ea5e 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi 0.2 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5rbxArwT1VV5BOSq", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json index da04f99f271..61c02847507 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi 0.6 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EqpfLGTZXcdjm5BM", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json index 24ae69196ee..dc21b3a5de8 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi 0.8 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ao01rvVFfkWlwpER", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json index 32c223c4239..c4a41202097 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q1 Pro 0.2 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dfni3lzB8GJldfQD", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json index c3c6da64a23..6abfb386dbe 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q1 Pro 0.4 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iWq2EddKO6QAUJuG", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json index 285d252a18a..ba69bacdabb 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q1 Pro 0.6 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0EswisPwFjFmk1GT", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json index b82676aad6f..1b0506e8dc3 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q1 Pro 0.8 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "t3DcJuJsNgXKW0dP", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json index fa1ac100406..51c39b2aba6 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi X-Plus 4 0.2 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ino4r7XLgTCFh4YR", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json index b426327f41f..1f53c309035 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi X-Plus 4 0.4 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7NXI13ejzocjD7TO", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json index b06da9eeaaa..4bcdb6bcefb 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi X-Plus 4 0.6 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QEJ9knURmXAGsFib", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json index 65392da9c9e..8aa1c764f47 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi X-Plus 4 0.8 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GzEXQzyKqqnCVUBh", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi.json index b925bf7fdc5..ef68eb12e1c 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q9QYOF2UmsrK7Wof", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json index 690bf7c4f5d..5906642a85a 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi 0.2 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "uXrENPoTa7HWapCV", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json index 7b9620e3e08..6a6146b45c6 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi 0.6 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "XnU3X7A7kdRrfoTX", "filament_id": "GFL99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json index ccfda9d9e21..0f34d71be3c 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi 0.8 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Q6H3JzOum8GYVRF9", "filament_id": "GFL99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json index 757d5de4d86..4ef9af4534c 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q1 Pro 0.2 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tSR6NKHk3ietpsga", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json index 50edbb223a2..77d10b9be39 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q1 Pro 0.4 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZF5is6IpP0gGcqRE", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json index 6250aa8ddea..1559c6d3690 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q1 Pro 0.6 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bAqfoS751xDFHubU", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json index d9116bcf6d2..6837abbfb22 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q1 Pro 0.8 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2rWOMrYc40ZRNLQi", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json index ce2f1247394..eabb9620958 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi X-Plus 4 0.2 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4x8HlY906khbFsG0", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json index 8467c9ee77e..b4c8988c1d7 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi X-Plus 4 0.4 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "87QXnh5kCuQoPwjr", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json index 68848deba58..6a0d9383f8e 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi X-Plus 4 0.6 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WsMzyALZrDylCkZ6", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json index 852b7b6be3b..5d5cb7bf936 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi X-Plus 4 0.8 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sHVHjhH9FzhRjeHT", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi.json index 4fedaedf576..b84cf7bfb41 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Kg6WHLbWxKAE8cCr", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json index 64ef38fac03..75ce27f9d15 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json @@ -3,7 +3,6 @@ "name": "Bambu ABS@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFB99", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json index a837b796ea4..39a07cf95ed 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "Bambu ABS@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.2 nozzle.json index e2ecae8924b..d102f3e77bd 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q2 0.2 nozzle", "inherits": "Bambu ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "k07dzTsKNkPQZdwr", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.4 nozzle.json index 542a73189e5..2e578093a0d 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q2 0.4 nozzle", "inherits": "Bambu ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rT8ustbzQbtECttr", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.6 nozzle.json index f4978c0c9bc..94fa6a5c3f8 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q2 0.6 nozzle", "inherits": "Bambu ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gzSb959KICj0XbkH", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.8 nozzle.json index a574fb66c98..7e73e234818 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q2 0.8 nozzle", "inherits": "Bambu ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0eP7UhT4gbchwFvv", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json index 094dda64e41..e2c3030e3b2 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "yHD2P97YYI869y1a", "name": "Bambu ABS @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json index 09f8ec30c56..10ec6383a07 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "dIUVKJDEofMGqc8C", "name": "Bambu ABS @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json index 954ee0996f7..58aaacd95bf 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "0leYv1TdNe38wFpf", "name": "Bambu ABS @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json index 157c0d72308..28665dc9c89 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "BvoaoxjqBQLvupeM", "name": "Bambu ABS @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json index 32a40477c8a..72d19279193 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json @@ -3,7 +3,6 @@ "name": "Bambu PETG@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "GFG99", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json index ac704e03525..66001efe727 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", "name": "Bambu PETG@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.2 nozzle.json index dee30b43c0d..dc2c208a800 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q2 0.2 nozzle", "inherits": "Bambu PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "7AO8j6OgpjvRpa6m", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.4 nozzle.json index 9fa3da59226..a56df3a902a 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q2 0.4 nozzle", "inherits": "Bambu PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "8jm8qn5x5Kop8YgM", "instantiation": "true", "pressure_advance": [ "0.056" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.6 nozzle.json index a91166da3d5..160b46cbb59 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q2 0.6 nozzle", "inherits": "Bambu PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "yKVcpVja9ajirE24", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.8 nozzle.json index 49bdcfc1ff3..2ceb80861f3 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q2 0.8 nozzle", "inherits": "Bambu PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "ZXkamNJiqutzbAxM", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json index 8c839fe787b..51ba15b52f7 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "DR6lPjo6HXfJPRev", "name": "Bambu PETG @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json index 39fc3e2b50c..7b9782ef8f3 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "abyo9tUNfJ41WD2x", "name": "Bambu PETG @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json index 3d5c8c97b66..9865c50726d 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "cG6FXCNr8n34Asel", "name": "Bambu PETG @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json index 5a9c835b8bd..a708271c030 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "3Opgt1lYHnCWi4G6", "name": "Bambu PETG @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json index 7febab3ced5..1277eab3e3e 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json @@ -3,7 +3,6 @@ "name": "Bambu PLA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "GFL99", "instantiation": "false", "filament_adhesiveness_category": [ diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json index 0d431b0976c..fb888aace69 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Bambu PLA@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.2 nozzle.json index 15ec7bd48bf..49e4f25ce7a 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q2 0.2 nozzle", "inherits": "Bambu PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "kDmiLRtJSeB8O4WO", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.4 nozzle.json index 183c222d727..0b331296be0 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q2 0.4 nozzle", "inherits": "Bambu PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "4m5Qtxbukdt8fJrY", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.6 nozzle.json index 48abe2158bd..5f723bd3156 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q2 0.6 nozzle", "inherits": "Bambu PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "ox3UVuRnH7x1B43m", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.8 nozzle.json index 86eb7400a38..74377cbdb9b 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q2 0.8 nozzle", "inherits": "Bambu PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "ayLDF3Bvdg5OCCa9", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json index 1d4a9475619..c019944137e 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "WIoSfzFsVr63PIJn", "name": "Bambu PLA @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json index f8e2fc6069e..b82b0a88234 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "6R2VF4VRx4OsEAIr", "name": "Bambu PLA @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json index 1885644d19e..d74f7260b95 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "4nf4gNkkvFnDbzRa", "name": "Bambu PLA @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json index 76f29f7b12e..ca5a2cbccf7 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "CHcUut3zMsRJAIcx", "name": "Bambu PLA @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json index b328b94f62d..58d59acd152 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json @@ -3,7 +3,6 @@ "name": "Generic ABS@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_0_11", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json index 2e9e4ce6323..5da1d44234c 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_0_11", - "setting_id": "GFSA04", "name": "Generic ABS@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.2 nozzle.json index fff9ce0ebab..a59be7d705e 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Qidi Q2 0.2 nozzle", "inherits": "Generic ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EJWpwgZ8OPbA7oFA", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.4 nozzle.json index a148b0d1ba7..f43d9ea4c88 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Qidi Q2 0.4 nozzle", "inherits": "Generic ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4xAZYpgdcuG5Gw2u", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.6 nozzle.json index 52d735efa98..1e11f118acc 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Qidi Q2 0.6 nozzle", "inherits": "Generic ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "K2ccIrgJE3wRUxJw", "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.8 nozzle.json index 0ec1ee52191..e05bfb1d3eb 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Qidi Q2 0.8 nozzle", "inherits": "Generic ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xhVIdraWk22ElOGB", "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json index 71b463cfa49..dda60ce5c09 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "fcId8eFG20nodipB", "name": "Generic ABS @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json index 8a2b9c786e5..fb3f1312e77 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "nCmyUKILQpR1nypd", "name": "Generic ABS @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json index 8c52b8e5ed4..8a739d319d0 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "7wsHMKJwQfUfZ3za", "name": "Generic ABS @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json index 8cf76807b2d..52abfdd9128 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "XLORH5X2VLIxTozv", "name": "Generic ABS @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Q2.json index b683e4450d9..90d5f9150fe 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Q2.json @@ -3,7 +3,6 @@ "name": "Generic PC@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_0_23", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json index 6d00fa1a63e..e312c30d896 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_0_23", - "setting_id": "GFSA04", "name": "Generic PC@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.2 nozzle.json index 6932388008f..382d94f8325 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PC @Qidi Q2 0.2 nozzle", "inherits": "Generic PC@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "E9Q7aCypZ279BmgX", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.4 nozzle.json index 048f96fb49d..000fb6ce9e5 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PC @Qidi Q2 0.4 nozzle", "inherits": "Generic PC@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RqwB0xjTgL69hn3a", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.6 nozzle.json index 22768e771ec..4eb38fa6afe 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PC @Qidi Q2 0.6 nozzle", "inherits": "Generic PC@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SOrvDqbjHy0trZSD", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.8 nozzle.json index 99ffca26d06..9882d206489 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PC @Qidi Q2 0.8 nozzle", "inherits": "Generic PC@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "z4Ut7w6XMiJqi0Ji", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json index 57927afa7d7..1f0164a7ea0 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "khy9tY2jZWHSlIYt", "name": "Generic PC @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json index 31a39b9d962..2ae7390dcef 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "Wcm3rVsaUpou9xRq", "name": "Generic PC @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json index 7f35355c0e7..a0309f3090f 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "8pHle7WRU4FL2qfo", "name": "Generic PC @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json index 65a2b8ac885..10e997a5ac8 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "ymIxEf9ioip57TML", "name": "Generic PC @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json index 4581dfc54a7..474110b39a0 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json @@ -3,7 +3,6 @@ "name": "Generic PETG@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_0_41", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json index b570247e3f9..bb5626f5afb 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_0_41", - "setting_id": "GFSG99", "name": "Generic PETG@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.2 nozzle.json index c244d7b80e4..99de8e911f9 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Qidi Q2 0.2 nozzle", "inherits": "Generic PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "MZFU0ZIPjWpgS435", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.4 nozzle.json index e584ec33851..cc155db787a 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Qidi Q2 0.4 nozzle", "inherits": "Generic PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "uz9sYXnJt93eY8A4", "instantiation": "true", "pressure_advance": [ "0.056" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.6 nozzle.json index d2c6a7aaeff..d1e1545923c 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Qidi Q2 0.6 nozzle", "inherits": "Generic PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "qqhljlg48IjYwXDs", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.8 nozzle.json index 5cccd058d58..5d49cfaf738 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Qidi Q2 0.8 nozzle", "inherits": "Generic PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "jzIMyjJivnSAXhom", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json index 0de5cc8e7cb..4ca9c116b91 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "IcynzuX5ojXgX2dk", "name": "Generic PETG @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json index 49942121682..5a357083f98 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "7QauCi8rhighWkri", "name": "Generic PETG @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json index 5af2284e7f0..f24c9ab3f26 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "AM1y4FYs7fv4WTTo", "name": "Generic PETG @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json index 294611e3760..87c4b09afcf 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "b3TpL9kGWf1wSydw", "name": "Generic PETG @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json index 15a15c408a7..21ed221909e 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json @@ -3,7 +3,6 @@ "name": "Generic PLA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_0_1", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json index 4fb0fdee07a..f9166759aa5 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_0_1", - "setting_id": "GFSL99", "name": "Generic PLA@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.2 nozzle.json index d8f6bc16126..fa5a88320d8 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Qidi Q2 0.2 nozzle", "inherits": "Generic PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Xu74nlBWPIpq34Ix", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.4 nozzle.json index 73ab650c81f..8c13d5c58f2 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Qidi Q2 0.4 nozzle", "inherits": "Generic PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "5a3TbkJQXJmFQgPU", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.6 nozzle.json index 73fe0d5b850..ff324699a4a 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Qidi Q2 0.6 nozzle", "inherits": "Generic PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "WZyL3qjBW8aZXXbq", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.8 nozzle.json index 505445cfb7b..69e3abce4ea 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Qidi Q2 0.8 nozzle", "inherits": "Generic PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "qqdkpr73SubpHEBs", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json index ed83612ba92..2f4f15b1a9c 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "CWSMY19Jhd6LzFUN", "name": "Generic PLA @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json index 756ffcedf7c..42f22ee9b70 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "kraVpglrBGD9sQyx", "name": "Generic PLA @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json index 05e6855feb9..8e515fb7058 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "0DL2rwUIpvOFPKE0", "name": "Generic PLA @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json index d929ad6a7f9..28d0b656fc9 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "wtOTxeDyt3j7HsQD", "name": "Generic PLA @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json index ee01cdb59d6..a24a0f4d6f5 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json @@ -3,7 +3,6 @@ "name": "Generic PLA Silk@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99_01", "filament_id": "QD_1_0_4", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json index 43214269e24..89d1dd4273c 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_0_4", - "setting_id": "GFSL99_01", "name": "Generic PLA Silk@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.4 nozzle.json index f1716e90660..9addeb84764 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA Silk @Qidi Q2 0.4 nozzle", "inherits": "Generic PLA Silk@Q2-Series", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "D0kRrF3bQSZvs0dA", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.6 nozzle.json index e935651fe47..1719b7f1e0b 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA Silk @Qidi Q2 0.6 nozzle", "inherits": "Generic PLA Silk@Q2-Series", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "aDLepQfXlpjIPYfY", "instantiation": "true", "pressure_advance": [ "0.014" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json index 81df04d8363..460e6f45db5 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99_01", + "setting_id": "tsr5C6eghwRIitda", "name": "Generic PLA Silk @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json index cf3dc051508..edfc93a77a5 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99_01", + "setting_id": "5V4coBYC2JEZQSbX", "name": "Generic PLA Silk @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json index fa1a0692b30..47107a8614b 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json @@ -3,7 +3,6 @@ "name": "Generic PLA+@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "GFL99", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json index 8e542a9f688..b9c00254aee 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Generic PLA+@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.2 nozzle.json index 3531320f309..e3703aef5a0 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA+ @Qidi Q2 0.2 nozzle", "inherits": "Generic PLA+@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "0CGp5pTYUipUZH9t", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.4 nozzle.json index bfb3cdfaba5..0e6a5149018 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA+ @Qidi Q2 0.4 nozzle", "inherits": "Generic PLA+@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "7oSZal6SCo4OtiB3", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.6 nozzle.json index e7719992620..12b2db7e774 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA+ @Qidi Q2 0.6 nozzle", "inherits": "Generic PLA+@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "nA9GQTkjSXojeH1I", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.8 nozzle.json index c9e1c82ac0a..e672a5524c3 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA+ @Qidi Q2 0.8 nozzle", "inherits": "Generic PLA+@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "njN1ifYSUyLzPjo1", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json index 43bfe476337..5d881e5f443 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "cP5qtEGISpluvrXW", "name": "Generic PLA+ @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json index 993399e32ed..b15b57a2fa9 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "INOTrdxOY3ewHs3Z", "name": "Generic PLA+ @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json index 69e375dcc11..aa86b84debf 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "QWeloGY9T9GkaFK1", "name": "Generic PLA+ @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json index 3c8738f6fd4..3658a4752ac 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "C2oqTFXtdd2clnM3", "name": "Generic PLA+ @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json index 9b1bd8bcd19..e85ca393754 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json @@ -3,7 +3,6 @@ "name": "Generic TPU 95A@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSR99", "filament_id": "QD_1_0_50", "instantiation": "false", "filament_adhesiveness_category": [ diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json index 4d3828acf3b..2be0d857de1 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_0_50", - "setting_id": "GFSR99", "name": "Generic TPU 95A@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.4 nozzle.json index 3f9be876c5a..1f5022e8a18 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU 95A @Qidi Q2 0.4 nozzle", "inherits": "Generic TPU 95A@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "5axszAjnZIipFG0x", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.6 nozzle.json index 9291187a8e3..b76cf3e73c2 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU 95A @Qidi Q2 0.6 nozzle", "inherits": "Generic TPU 95A@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "X8UakUz9froeOdOG", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.8 nozzle.json index fc495b8e689..180b745e5cb 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU 95A @Qidi Q2 0.8 nozzle", "inherits": "Generic TPU 95A@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "kPew5LiROoFxJPKj", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json index efd80304697..279d732847d 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "HeDaMTs4C6suBJvO", "name": "Generic TPU 95A @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json index 5e2b16ab12b..c3e782b1ca0 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "TOHG37PMxN9MzVub", "name": "Generic TPU 95A @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json index 1ee7b0dd661..27f3b05a1c9 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "HqURiXvBLRyvLAxP", "name": "Generic TPU 95A @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json index 400c7efc367..66271afb20f 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json @@ -3,7 +3,6 @@ "name": "HATCHBOX ABS@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFB99", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json index 9ab8361d259..9db585481a9 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "HATCHBOX ABS@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.2 nozzle.json index 2d6bdb2d8cf..9f39e6e3147 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q2 0.2 nozzle", "inherits": "HATCHBOX ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3crqR4Lq2v0nbSSF", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.4 nozzle.json index 11dd628265c..3b4e470c436 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q2 0.4 nozzle", "inherits": "HATCHBOX ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ktvlByc5ZYr6wZ7L", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.6 nozzle.json index e4039dc57d7..0324b7802e0 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q2 0.6 nozzle", "inherits": "HATCHBOX ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yk6xtgojznV3KVMb", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.8 nozzle.json index 4fb44357960..25c083b0a99 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q2 0.8 nozzle", "inherits": "HATCHBOX ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o9ZNdbNvwCA02wrr", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json index 1c7a42d4dfc..67c130c50a1 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "UesqbiCMHRmklDRk", "name": "HATCHBOX ABS @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json index 54a819975f5..d9c305e08ac 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "mEWH2YlONmNpempZ", "name": "HATCHBOX ABS @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json index 6378cdf7694..dd3d9769436 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "khy95fONrq7reiSC", "name": "HATCHBOX ABS @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json index 4350827c9fb..82b5e8b9dea 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "sHLcYLMcJTimp3ru", "name": "HATCHBOX ABS @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json index 7717c31d1e2..44d0907bb83 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json @@ -3,7 +3,6 @@ "name": "HATCHBOX PETG@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "GFG99", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json index b65fd0b94e6..e70a0e8bdab 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", "name": "HATCHBOX PETG@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.2 nozzle.json index 8ac2667b4a8..f7ffdfac1c1 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q2 0.2 nozzle", "inherits": "HATCHBOX PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "4aKj83MzHWJiBwS3", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.4 nozzle.json index 4da30910b8f..4e2552bad60 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q2 0.4 nozzle", "inherits": "HATCHBOX PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "CuW8JDCGlx2HMEAh", "instantiation": "true", "pressure_advance": [ "0.056" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.6 nozzle.json index 4d47d98104f..6cd813f16f4 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q2 0.6 nozzle", "inherits": "HATCHBOX PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "nqt0XuGvwSGjGnEK", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.8 nozzle.json index 3b55e5cce58..98b08393ce6 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q2 0.8 nozzle", "inherits": "HATCHBOX PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "6wBMMo9MKxBPDMGL", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json index a8d22f38c02..6d115fbb6fb 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "bZMXQWqTu8l3MYJi", "name": "HATCHBOX PETG @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json index 341b5c82b8d..f693e1013aa 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "DekQbcVeKQg9v5Zr", "name": "HATCHBOX PETG @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json index 390887af120..cdf86d53349 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "zVhQ76dkj0h0CQYk", "name": "HATCHBOX PETG @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json index 8fefd24f393..7bffd6c302e 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "Kzuc0pyjxtH6gI13", "name": "HATCHBOX PETG @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json index 51daac0878c..880ecddb29b 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json @@ -3,7 +3,6 @@ "name": "HATCHBOX PLA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "GFL99", "instantiation": "false", "filament_adhesiveness_category": [ diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json index 882be390aaf..7446be6e2ac 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "HATCHBOX PLA@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.2 nozzle.json index c8725092c52..618092e9bd5 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q2 0.2 nozzle", "inherits": "HATCHBOX PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "VTdCYihdM5VmBpiX", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.4 nozzle.json index a92a23f5370..2493035d4b0 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q2 0.4 nozzle", "inherits": "HATCHBOX PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "HmoGfF88x0jtISev", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.6 nozzle.json index c6c93873789..1dba59e82d8 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q2 0.6 nozzle", "inherits": "HATCHBOX PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "GV3Wg1QZsFXagniZ", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.8 nozzle.json index 91a67abc2f9..270f2d2528a 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q2 0.8 nozzle", "inherits": "HATCHBOX PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "T90I5VEkibdTbHzU", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json index 9ce9272e30c..e7909d67c20 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "11BHrX7imCTIzPP4", "name": "HATCHBOX PLA @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json index ce173b7a4de..5b680b590e8 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "VSgatTEDBtv2agXN", "name": "HATCHBOX PLA @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json index 37383efc749..ecb8c503396 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "24LLJRtj2iivS6vL", "name": "HATCHBOX PLA @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json index b894f7ecf8f..437b7bb3da8 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "HRdiQVVY5WjNXLYx", "name": "HATCHBOX PLA @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json index 102f96a9821..7011359a4b1 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json @@ -3,7 +3,6 @@ "name": "Overture ABS@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFB99", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json index 25529c480e6..98d987be8df 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "Overture ABS@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.2 nozzle.json index 3344fb100e0..0ab1aeb7372 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q2 0.2 nozzle", "inherits": "Overture ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tO957T39JVesXJ8y", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.4 nozzle.json index 446397cf1cd..2199bdd8d66 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q2 0.4 nozzle", "inherits": "Overture ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7WvjlWTFfRCDDO4u", "instantiation": "true", "pressure_advance": [ "0.033" diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.6 nozzle.json index 5acf3dfb399..6e47be60b12 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q2 0.6 nozzle", "inherits": "Overture ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4Tf72oGjrZT51gcl", "instantiation": "true", "pressure_advance": [ "0.02" diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.8 nozzle.json index 3494396cd56..18dcc1685a9 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q2 0.8 nozzle", "inherits": "Overture ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cpBr271yaztUzTpN", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json index 9964ad6ed8f..a73afb42557 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "VYySI4tCOnfTintD", "name": "Overture ABS @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json index d171e0daea1..f7013864a0e 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "JBDqdi6986HRAEXu", "name": "Overture ABS @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json index df32e70a642..ec16053469a 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "zfd7hNsD4gyvYjmL", "name": "Overture ABS @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json index b7b2471a87f..e9c17844d1e 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "dIK2bO9muHCLmfLE", "name": "Overture ABS @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json index daf2b37cc9e..2dbdffd469e 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json @@ -3,7 +3,6 @@ "name": "Overture PLA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "GFL99", "instantiation": "false", "filament_adhesiveness_category": [ diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json index 91a21a86bc6..16d59f71358 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Overture PLA@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.2 nozzle.json index ffcab973162..4c24d0c2a88 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q2 0.2 nozzle", "inherits": "Overture PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "mmuvOV5LzBTz1IK0", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.4 nozzle.json index 8e9e4417792..003e58a4b08 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q2 0.4 nozzle", "inherits": "Overture PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "lD2J5G4qCl18B2Du", "instantiation": "true", "pressure_advance": [ "0.037" diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.6 nozzle.json index 570cae31d82..5684a708acf 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q2 0.6 nozzle", "inherits": "Overture PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "HhjZwkodwhiXHKVe", "instantiation": "true", "pressure_advance": [ "0.019" diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.8 nozzle.json index 4d404f8a996..56412650559 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q2 0.8 nozzle", "inherits": "Overture PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "lXQhZdjX1xDHQWtt", "instantiation": "true", "pressure_advance": [ "0.012" diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json index a57a19e01b5..d0a478cc841 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "sR59dH6Xa2wZYoju", "name": "Overture PLA @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json index 302197169ed..5a086039caf 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "bwwB2ntJKEDSM6nC", "name": "Overture PLA @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json index 1bbc4a77915..4af8a954ba6 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "Bo9y4EOopqDnhhLP", "name": "Overture PLA @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json index 76503b1edc5..c40f1821327 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "G7hnYFzduUlF4ecC", "name": "Overture PLA @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json index d8b6c6f2607..6b4a385323e 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json @@ -3,7 +3,6 @@ "name": "PolyLite ABS@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFB99", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json index 3036b4437f6..0e912714a17 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "PolyLite ABS@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.2 nozzle.json index f58ae6c9cbb..0051897c4ef 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q2 0.2 nozzle", "inherits": "PolyLite ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qcxxzS9OxRkygztL", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.4 nozzle.json index 9ee72bf20f9..03d2afa08c2 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q2 0.4 nozzle", "inherits": "PolyLite ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FqECcDZTCbmnrEGx", "instantiation": "true", "pressure_advance": [ "0.033" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.6 nozzle.json index 784360aa12e..370f4f6ffbc 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q2 0.6 nozzle", "inherits": "PolyLite ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CHai30JzOc9xdGc4", "instantiation": "true", "pressure_advance": [ "0.02" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.8 nozzle.json index a15db013b17..a67f74062b3 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q2 0.8 nozzle", "inherits": "PolyLite ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QZ62A6WrszJ7Ghzh", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json index 969b73be2fb..aaca305b611 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "dO4VcqJOzHGsGTMp", "name": "PolyLite ABS @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json index ed5bcf56df2..1d40193bfb0 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "1IndaP5mD4ThRTLJ", "name": "PolyLite ABS @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json index 2780438ff24..af0dbf4d6d1 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "TUafLspNks0QbMsJ", "name": "PolyLite ABS @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json index 942f75cc1cb..b405b2c329a 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "Zl7BXkcC643FrwXj", "name": "PolyLite ABS @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json index 9308ead7fd4..be89bf96964 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json @@ -3,7 +3,6 @@ "name": "PolyLite PLA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "GFL99", "instantiation": "false", "filament_adhesiveness_category": [ diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json index 7422032108d..7baead0ac4c 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "PolyLite PLA@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.2 nozzle.json index f6bfc5ba047..cc80488c525 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q2 0.2 nozzle", "inherits": "PolyLite PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "M4HFfDaIMjb6xzKJ", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.4 nozzle.json index efab9c87868..df1d20042b3 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q2 0.4 nozzle", "inherits": "PolyLite PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "QTxRrs7QygtVfKTl", "instantiation": "true", "pressure_advance": [ "0.037" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.6 nozzle.json index 86fc6a97de0..06f45bd6b93 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q2 0.6 nozzle", "inherits": "PolyLite PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "0KDkSLzkJ2Z2hg3w", "instantiation": "true", "pressure_advance": [ "0.019" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.8 nozzle.json index 35d5b39cf63..2a3ddf67aab 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q2 0.8 nozzle", "inherits": "PolyLite PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "SnWXdbMVS60fzPyZ", "instantiation": "true", "pressure_advance": [ "0.012" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json index 239fbbf3005..f6f72ae2af2 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "70CH88wjjjp10p1v", "name": "PolyLite PLA @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json index f187eca59de..808daed644e 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "55gNJLcwSNCpFRLt", "name": "PolyLite PLA @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json index 6dac804136e..5f521634c74 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "lfJLLN90UJoDH6DQ", "name": "PolyLite PLA @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json index 341b748105b..c34dbd8c733 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "ZZWSUwsp8FdHoO50", "name": "PolyLite PLA @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json index 3a56321d46a..adc083302c7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ABS Odorless@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_14", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json index 68bbf59293b..f8bf048e388 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_14", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.2 nozzle.json index 059cedd0d2e..a6b652676c2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q2 0.2 nozzle", "inherits": "QIDI ABS Odorless@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IL50RqcaWBcR8YCP", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.4 nozzle.json index 7c2b05c5417..fc0ded50d44 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q2 0.4 nozzle", "inherits": "QIDI ABS Odorless@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u5y89iPYSkz4QHQN", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.6 nozzle.json index e6c3ae51cfb..47a4587ca7a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q2 0.6 nozzle", "inherits": "QIDI ABS Odorless@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "y1X04vewJnUMlfvR", "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.8 nozzle.json index e247ece0659..57d224ad898 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q2 0.8 nozzle", "inherits": "QIDI ABS Odorless@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4ipzt6SeTyaywGZF", "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json index 1d88931b5fc..33443ab95da 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "GxP0Whwhk4Cnxdu0", "name": "QIDI ABS Odorless @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json index 79280bb8285..f4037f59e8d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "XF8GYACz5foSzwPu", "name": "QIDI ABS Odorless @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json index 1f020c4b6bf..7ef82c2bac1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "S2ZKcCRBaIhCz34L", "name": "QIDI ABS Odorless @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json index 33ed015f8e8..7080c73d697 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "MKJrQNyu3db94dD8", "name": "QIDI ABS Odorless @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json index df6515efc0b..6137bc75a11 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ABS Rapido@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_11", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json index 6fe5eef4670..a11c5b01bc3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_11", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.2 nozzle.json index 7142c7778a4..2a537dc524c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q2 0.2 nozzle", "inherits": "QIDI ABS Rapido@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "C7jN0GZ9tv3lPqgf", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.4 nozzle.json index f4e6ad41888..0cb18976fa2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q2 0.4 nozzle", "inherits": "QIDI ABS Rapido@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8HIYmsVwqmihwMVw", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.6 nozzle.json index 2975aa6eb0b..086aedb8a41 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q2 0.6 nozzle", "inherits": "QIDI ABS Rapido@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "02qwJkk06bFbZTrv", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.8 nozzle.json index 57a7c981fb5..7286ecb01d9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q2 0.8 nozzle", "inherits": "QIDI ABS Rapido@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XEhyfnES6xFCJtWb", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json index c38a3943b55..3e4c7cb7956 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "qBCJHTf8UYAhtS9Z", "name": "QIDI ABS Rapido @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json index 397f089dd4e..cd0bb491a09 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "TKmusP00QtJde1tv", "name": "QIDI ABS Rapido @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json index 3ae075530a9..c15f087c603 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "hjWAIr9vj3lifTuF", "name": "QIDI ABS Rapido @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json index 12a2c6d467f..73d7cb17bea 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "PseIYzUGugsYqd0n", "name": "QIDI ABS Rapido @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json index db71b3577fe..8a59afe0bbf 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ABS Rapido Metal@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_13", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json index 55a80f869e6..fba8b9596d6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_13", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.2 nozzle.json index febc807f538..acf860840a5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q2 0.2 nozzle", "inherits": "QIDI ABS Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DvpAhpb3Pes6cum2", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.4 nozzle.json index 43c5db3534d..46e697994f3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q2 0.4 nozzle", "inherits": "QIDI ABS Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "O3UGFrYCpNqQpXin", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.6 nozzle.json index d141e4ac800..6580fb9b87d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q2 0.6 nozzle", "inherits": "QIDI ABS Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VxqczldYOZha7COY", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.8 nozzle.json index 336068e0756..2e8dd282e57 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q2 0.8 nozzle", "inherits": "QIDI ABS Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7WGPFQ6a7bsklsKt", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json index fc9473905a5..8b5375d3cfb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "aThu2ymueO59okjd", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json index 0c1b1809907..b91e0ee5b88 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "U9oVegNbFTAg0hI1", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json index 19fe43ef922..3b90d3d3634 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "1ZuCqDtoglHX0n3E", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json index caa76664888..1030b71c837 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "AtfdZuYrdD1DIwFP", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json index de714c0ab26..bdf566541f8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ABS-GF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_12", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json index 273dc85d4f1..4f09b67dc6f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_12", - "setting_id": "GFSA04", "name": "QIDI ABS-GF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.4 nozzle.json index d88f029bd7f..0c270a2dac7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q2 0.4 nozzle", "inherits": "QIDI ABS-GF@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u6pq22GuBBsB1DhD", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.6 nozzle.json index 1c41e55471a..29889bfdc2a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q2 0.6 nozzle", "inherits": "QIDI ABS-GF@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eGBJvGi279JdUbEr", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.8 nozzle.json index 6416f14ed3a..b62074a257f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q2 0.8 nozzle", "inherits": "QIDI ABS-GF@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nkgcPR2FOWnS1R8p", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json index 4e98bdd285c..b9ec956682c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "aOg4RWjgsKxj4d64", "name": "QIDI ABS-GF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json index 05ba572607a..96b26f3bb18 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "3S7sFSqdn1XuuXHd", "name": "QIDI ABS-GF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json index 8575898ce20..bfbc0aa7da7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "fJC5bkmVshJcddR1", "name": "QIDI ABS-GF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json index d2a3b2b52ef..3f385e1e207 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ASA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_18", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json index 3e56f7552b3..33b5374fec2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_18", - "setting_id": "GFSA04", "name": "QIDI ASA@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.2 nozzle.json index a26eeb43014..368a9afcc61 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q2 0.2 nozzle", "inherits": "QIDI ASA@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "57WYBN9i1xke9Meb", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.4 nozzle.json index d4cfa84f211..9745c3eae71 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q2 0.4 nozzle", "inherits": "QIDI ASA@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bpBTFAzrvFPRAzXS", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.6 nozzle.json index 9d1280a1cc6..d24959c5fe9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q2 0.6 nozzle", "inherits": "QIDI ASA@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LApJikdn8PAJYDOw", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.8 nozzle.json index b89e790007a..3f75a6b3bd2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q2 0.8 nozzle", "inherits": "QIDI ASA@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "h819SM0stfYmrAXx", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json index eaa56476e97..d4dd95c8859 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "4trzdB5fUzgXxLr6", "name": "QIDI ASA @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json index c97038e6988..c94814e3c76 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "2IWByRV9P9UE0erA", "name": "QIDI ASA @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json index 9fb4c72a48e..f6f0b4decad 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "b8YU4smViFgry570", "name": "QIDI ASA @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json index b8d26807bcf..03d9b03942a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "1TgAeftVfWoXHcKD", "name": "QIDI ASA @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json index 461a57029fc..71869ca1b5e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ASA-Aero@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_19", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json index d2947a802f9..536cee0b3c5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_19", - "setting_id": "GFSA04", "name": "QIDI ASA-Aero@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2 0.4 nozzle.json index d354d276c42..10d036ea07f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA-Aero @Qidi Q2 0.4 nozzle", "inherits": "QIDI ASA-Aero@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "X2066M8E8LDIrI69", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json index fd7bfe6ba6a..cc4df5b0740 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "oLZHWEc83L05TKNQ", "name": "QIDI ASA-Aero @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json index 6051ada238d..f7a738d8fb6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_1_1_20", - "setting_id": "GFSA04", "name": "QIDI ASA-CF@Q2-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json index 3e125f82a2c..094e71797e9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_20", - "setting_id": "GFSA04", "name": "QIDI ASA-CF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json index a9e49d96ce0..54afbdc6687 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "kLkuuwlQ2g8ApMCR", "name": "QIDI ASA-CF @Qidi Q2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json index 9272ed93c65..174d9f2cfd2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "qTg48cwBkLGytsgu", "name": "QIDI ASA-CF @Qidi Q2 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json index b31b6804447..25ad05f80a8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "UbgM0Eu2AGwYjS8s", "name": "QIDI ASA-CF @Qidi Q2 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json index 913966f571c..a6ef7644d41 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "3c5EBxNEeYAgyIUe", "name": "QIDI ASA-CF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json index 4bfe0359403..5aa60a991f6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "4sIBlrLnfparzSFk", "name": "QIDI ASA-CF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json index 6836c6e67b5..e88a3eda1fd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "4LCHbc83VORH1Hmk", "name": "QIDI ASA-CF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json index de99e42f7f8..b5601c41da7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PA12-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_27", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json index 33981b31f39..e351368f148 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_27", - "setting_id": "GFSN99", "name": "QIDI PA12-CF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.4 nozzle.json index b429add80b6..1967520f606 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PA12-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "v7C27U7IGURoq7xV", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.6 nozzle.json index ccc3e21178e..f9260201479 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PA12-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "RgWJDRCobNKRZZHu", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.8 nozzle.json index 219b2a7a2e4..3fbe9912899 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PA12-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "RmqULVYCgIPqurJQ", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json index 113583800c8..9f3401b5b3a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "1u8IFKUCIggct4ah", "name": "QIDI PA12-CF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json index f89039577ad..c9cd8ee8e11 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "czMRbKZQEfYYX2SC", "name": "QIDI PA12-CF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json index e325069ef0d..38e8ca89e38 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "qevQtRgFRnkNJlbU", "name": "QIDI PA12-CF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json index df5d842492a..b52f31c315e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PAHT-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_30", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json index 1971a0ba295..03b0f27f2aa 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_30", - "setting_id": "GFSN99", "name": "QIDI PAHT-CF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.4 nozzle.json index 3d90b140707..f317363b2f2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PAHT-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "LO7z6vuW9n4XjdLE", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.6 nozzle.json index d1b64ff81ff..d5692f5edff 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PAHT-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "Nxo29kZKIkw4bTPn", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.8 nozzle.json index 79953cd28b1..c96c13e9c5c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PAHT-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "uBTNaJyIa7Rd3glN", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json index 1ceea99626f..2eac92f0c05 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "19JEwv2utbuBcOd2", "name": "QIDI PAHT-CF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json index 20afedaf59b..6d04cdad4cf 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "cQvObLcttxZG7V6I", "name": "QIDI PAHT-CF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json index 887704a8eb0..208c06e64d8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "bUKhJUHlLLhYyq0v", "name": "QIDI PAHT-CF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json index f300cb3b920..8a76c255322 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PAHT-GF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_31", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json index 71f58c586c8..af89065e6c8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_31", - "setting_id": "GFSN99", "name": "QIDI PAHT-GF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.4 nozzle.json index 57e3399e2b7..5ac3f91e000 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PAHT-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "US3Pvd18eemq5hMi", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.6 nozzle.json index 77b769ae38b..6efa6f420e1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PAHT-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "qbEj9tCn6GRJZjoX", "instantiation": "true", "pressure_advance": [ "0.015" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.8 nozzle.json index 0e2603c11ca..9a41e567248 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PAHT-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "6FEFgL8CcOGSTRDv", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json index c9ac062eecc..0fa9c0ef165 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "vxdq7Nwg4esRFNu9", "name": "QIDI PAHT-GF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json index 4ff1ef860c5..ea111115fda 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "O3fRuZz1uLd5xrgg", "name": "QIDI PAHT-GF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json index ecbdb934d21..39b97843fd7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "fF4PUJX9cgyqBj5s", "name": "QIDI PAHT-GF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json index 7955c139984..f7bfd3bfd6d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PC-ABS-FR@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_34", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json index 0c1f5f38882..a9a7f91093a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_34", - "setting_id": "GFSA04", "name": "QIDI PC-ABS-FR@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.4 nozzle.json index 8e066d77d5a..bc9539178f6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PC-ABS-FR @Qidi Q2 0.4 nozzle", "inherits": "QIDI PC-ABS-FR@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oEKRPaYiY0f2ovtG", "instantiation": "true", "pressure_advance": [ "0.042" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.6 nozzle.json index 252357962a7..0865301e471 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PC-ABS-FR @Qidi Q2 0.6 nozzle", "inherits": "QIDI PC-ABS-FR@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NfD5oETfBil2j4GF", "instantiation": "true", "pressure_advance": [ "0.031" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.8 nozzle.json index ec46820d861..3a11087db38 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PC-ABS-FR @Qidi Q2 0.8 nozzle", "inherits": "QIDI PC-ABS-FR@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I330bqTxTPNgvocy", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json index e86ee1c5a91..bf20fd4b8cb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "MV0BnLVqbpTmN4pY", "name": "QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json index c147ad1b126..c97d92cd395 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "fpfPAd5ZXdxRIrcy", "name": "QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json index 77b778af392..a5bd083d101 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "ZqkkkXPjbuCIpnMv", "name": "QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json index cf33db4628f..f0af9e1f401 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_1_1_36", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A@Q2-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json index df087f10643..241738fe652 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_36", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json index 57aca74e97f..dc324d3ea20 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR98", + "setting_id": "A8c8z50h8irCTzgy", "name": "QIDI PEBA 95A @Qidi Q2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json index 609300aabe8..444af78ff9a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR98", + "setting_id": "UKXpo4G5hGGZsn3A", "name": "QIDI PEBA 95A @Qidi Q2 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json index ed0be1d6fdb..9d2006b8c15 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR98", + "setting_id": "vJ2SMIO0mxCouFWb", "name": "QIDI PEBA 95A @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json index 236326a0ca6..7969106f592 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR98", + "setting_id": "w9NXPAGugtCOi4g4", "name": "QIDI PEBA 95A @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json index 1f3b4626dfb..fe35c0b8406 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PET-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_37", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json index dc02a075fb9..5ab5930eb10 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_37", - "setting_id": "GFSN99", "name": "QIDI PET-CF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.4 nozzle.json index adbd1c7913a..037ac3c923d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PET-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "yeWsB0SGQo7nBdNh", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.6 nozzle.json index 3c43cd5f81f..65038375875 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PET-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "6zRPvpjMwhow7pQw", "instantiation": "true", "pressure_advance": [ "0.025" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.8 nozzle.json index 5c39f447fb0..d72baee376f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PET-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "7Bvliieb9W9v2GQQ", "instantiation": "true", "pressure_advance": [ "0.025" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json index 50efb02ad23..42ea7a834de 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "bqf0nv6TibBm2zIy", "name": "QIDI PET-CF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json index ae960d50141..e68ba6334d4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "ZyRe7KewhXKNHXUR", "name": "QIDI PET-CF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json index 726cf1d7b19..bd6a78e34e7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "Oz5J6NHYJpy0Qhm2", "name": "QIDI PET-CF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json index 3a78c0374e2..2de43e370e8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PET-GF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_38", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json index 8b28bcba40d..66c090696db 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_38", - "setting_id": "GFSN99", "name": "QIDI PET-GF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.4 nozzle.json index 27b30217f50..e71bccfd1b7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PET-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "Fs5LA1CHtwQmT5yC", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.6 nozzle.json index d6e7750c59b..f4a2116d675 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PET-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "8pGL3cqaPcWtNDix", "instantiation": "true", "pressure_advance": [ "0.014" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.8 nozzle.json index 32f71ed54e7..a875ccdbcfb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PET-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "ppEDBmq1fnu2mqvJ", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json index 02a9ed8e928..5be6ed7b525 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "zeqpSRbhDK45RDxT", "name": "QIDI PET-GF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json index 0e393e7550d..e049945b832 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "TKco12fyuw1wZ8yF", "name": "QIDI PET-GF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json index 9e8cee5eca9..e4b08053764 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "0zEwjck3KMuCUV65", "name": "QIDI PET-GF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json index d7adc3f9052..057b4272714 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG Basic@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_39", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json index 7cbfd85ef97..fd0687c6b97 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_39", - "setting_id": "GFSG99", "name": "QIDI PETG Basic@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.2 nozzle.json index 12dd9bf2824..1aa05eb40d1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q2 0.2 nozzle", "inherits": "QIDI PETG Basic@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "oZ3JTBRPsuXZRnJL", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.4 nozzle.json index 968f1cdd196..dacb1846f2a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG Basic@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "9prwI03Kli5jVnXW", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.6 nozzle.json index ba7f4fe86d2..84eb2945a77 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG Basic@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "GFpwaI9btfJMX6RA", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.8 nozzle.json index cf1ad5582f1..f4b58fa34bc 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG Basic@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "XO7d84ue5uQSe8Vb", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json index 3e0f0cbdbe2..ffd95ccd280 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "cmDsiuMabyDU7XoL", "name": "QIDI PETG Basic @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json index 00a3b3c491e..029a8255a77 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "myllwvTQwpkLwYOJ", "name": "QIDI PETG Basic @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json index 61219a60dcc..f7545df9757 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "uJRjUoz9NvS8UNbZ", "name": "QIDI PETG Basic @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json index 6a607ce36c2..29968a5c109 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "4GmsTinCKy3DJIRj", "name": "QIDI PETG Basic @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json index 3d2d2cd750c..328af0661d7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG Rapido@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_41", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json index 402a38f5eb5..0eb330fc47a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_41", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.2 nozzle.json index d2e200e1fec..8c963b0bcc6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q2 0.2 nozzle", "inherits": "QIDI PETG Rapido@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "UjTBlObQ8oMjHdHL", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.4 nozzle.json index d0a2da8ee9e..8343d63adea 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG Rapido@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "4bwNKB1GVQeIMcVK", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.6 nozzle.json index 173421a401b..3bd19b70678 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG Rapido@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "bQZyIRIno7acYWD8", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.8 nozzle.json index 31c7c9e164e..022958c7077 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG Rapido@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "qa0V0FgstQWaZ89W", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json index bcd8b976aa6..4688dd740b6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "GGulRExJ8O22prw5", "name": "QIDI PETG Rapido @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json index 21b0cefcdd9..f0467ebc005 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "aPlfkb8XVHh2ImCZ", "name": "QIDI PETG Rapido @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json index 008b8046fe5..c1281c715a2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "JKLS99QCyNqP6HpN", "name": "QIDI PETG Rapido @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json index ac20fcda05f..29852440cd3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "91jRijgkVsBVcseN", "name": "QIDI PETG Rapido @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json index cbc0f35be54..7c208b4b105 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG Tough@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_40", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json index 2caca86a36f..eebbf9eb2a2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_40", - "setting_id": "GFSG99", "name": "QIDI PETG Tough@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.2 nozzle.json index 797b09703b7..3973dae87c3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q2 0.2 nozzle", "inherits": "QIDI PETG Tough@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "zUJ72EF3umFGLash", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.4 nozzle.json index eda6f5b532f..d10e86beb17 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG Tough@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "CiBeqt50CKuYK1Dk", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.6 nozzle.json index db47586d0c6..9d4c9c5bb38 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG Tough@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "8vaVnkw2DCiJVRNx", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.8 nozzle.json index 2a8965c01f9..0a74df94f90 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG Tough@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "2r3TG5yjssBYJfm9", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json index 36907329fae..bb19426f611 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "rv26NO5Wot3ze5vT", "name": "QIDI PETG Tough @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json index b03b7e1ef49..413e1ebc22d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "GZWWBRvZwhVvxHqg", "name": "QIDI PETG Tough @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json index 5497df93c22..b5b8d2d5884 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "3rOOjrvu6WClnoDc", "name": "QIDI PETG Tough @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json index 0e7d2baf125..21a4edbcef0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "h2JK23LvFSKngIoU", "name": "QIDI PETG Tough @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json index 8815b518f13..b8541224c40 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG Translucent@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_45", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json index 0a5e7b3f9c3..984eead1b46 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_45", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.2 nozzle.json index 87f2030f0c1..f644eb18ca0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q2 0.2 nozzle", "inherits": "QIDI PETG Translucent@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "VEwJneFk2i7mTA4s", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.4 nozzle.json index 093e03253ad..b1cf532b350 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG Translucent@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "MvQfqR0nQw2Nzprt", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.6 nozzle.json index 816088934bd..694a0ed515f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG Translucent@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "sBnkqe9X1RnsC27Z", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.8 nozzle.json index abd5b6a6862..8bf42aa374c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG Translucent@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "DcFHqSQzIBlKq7Lp", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json index 3f17b07d1a6..b8239092872 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "e2GEG1ZDjxFPcf3T", "name": "QIDI PETG Translucent @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json index b75dc7cf516..c5625da33b2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "D1FXyPnXPva8J8GK", "name": "QIDI PETG Translucent @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json index 498a969573f..4d5f78d6711 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "93FRGhgEpKKEV1Us", "name": "QIDI PETG Translucent @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json index 9d8ca2b34a7..c6c343efd80 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "KTBwATMsWZDT9JSd", "name": "QIDI PETG Translucent @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json index f08d715064e..fa007aeb0d7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_42", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json index b3473443291..1a3bfa76e57 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_42", - "setting_id": "GFSG99", "name": "QIDI PETG-CF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.4 nozzle.json index 1ac2643c9e0..6cfb65c24ae 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG-CF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "8ZiJvrii09XkBvju", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.6 nozzle.json index 99cd433d17b..bfe62f8cff5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG-CF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "dYgZhRNJ3gRRbWIz", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.8 nozzle.json index ee5036fe672..202fcffa3c3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG-CF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "4WOfdCS8AwhIB41D", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json index 18d8d7f80e3..1d54a2ef386 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "a3TeQs2LPkvVHhuQ", "name": "QIDI PETG-CF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json index ddb38704a9c..76bd4c30ce4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "mIQgT9i0sI6nUk2K", "name": "QIDI PETG-CF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json index 4334dfab692..2c26e4f62c6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "e9OFaUogg3JwJ8p1", "name": "QIDI PETG-CF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json index 38c476726bf..a0cbef07ca3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG-GF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_43", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json index 57136f23a79..660a2a4d061 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_43", - "setting_id": "GFSG99", "name": "QIDI PETG-GF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.4 nozzle.json index dc876eb6129..80c9be027c5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG-GF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "itHwzuXGmD79gRTe", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.6 nozzle.json index c32dcfb038c..bd4d6e186e7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG-GF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "320OyFvmkPfl0RYb", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.8 nozzle.json index 5293d52c75c..d9fbcae9606 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG-GF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "sEKKsxH8XoCMc6JB", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json index 1cc49d19093..a8116f9b0b1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "88oBSw0H0cVUieZQ", "name": "QIDI PETG-GF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json index 7e96c254307..8023d9d26e7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "4tN3kEMXaHjBBxwF", "name": "QIDI PETG-GF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json index b8b088f8481..d13eb6d3565 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "Gf491nomAtcjhAvJ", "name": "QIDI PETG-GF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json index 41ef1517497..c2799f2f9ec 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Basic@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_7", "instantiation": "false", "cool_plate_temp_initial_layer": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json index 6589f8b19d9..ea9bfcb1cfe 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_7", - "setting_id": "GFSL99", "name": "QIDI PLA Basic@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.2 nozzle.json index 4709bbfd088..d7178f3a090 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q2 0.2 nozzle", "inherits": "QIDI PLA Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Zb1RsUGnK1dOKZpd", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.4 nozzle.json index 3db6244af8e..9227c6518d0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "crOYfahwnNJ4Q93y", "instantiation": "true", "pressure_advance": [ "0.038" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.6 nozzle.json index 89c3626acd0..d2ca96bb550 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "1IwXw98b2wR0WkVU", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.8 nozzle.json index d27c07eef6d..ffbf81119f1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "YDm3NqTmmoS2a9x1", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json index c67b90420dc..30afead70d2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "wpQKjPe8jRwQ3WBI", "name": "QIDI PLA Basic @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json index 9fc0839a22e..66d36a13b94 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "jlX2OfKRNzFI682k", "name": "QIDI PLA Basic @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json index 76b3d2f65b4..fe3ec70e7ef 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "oxEN8DYf9kkKS8qg", "name": "QIDI PLA Basic @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json index 1a8871944db..59a50b46e7d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "gEs3guvsWgjmTsHz", "name": "QIDI PLA Basic @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json index 20175b091f4..4a25bf91f3e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Matte Basic@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_8", "instantiation": "false", "cool_plate_temp_initial_layer": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json index 97736ff3b44..a487a0a0049 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_8", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.2 nozzle.json index 4e1135df6c8..ee0b29398c5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q2 0.2 nozzle", "inherits": "QIDI PLA Matte Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "eMibrVuLWIEFjeoD", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.4 nozzle.json index f90da09a75b..5909346e959 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Matte Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Bp4SKFAqK9gEvxIN", "instantiation": "true", "pressure_advance": [ "0.038" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.6 nozzle.json index e3d470dde34..7483863c62e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Matte Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Qq0CIvgYzdxdcLZ4", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.8 nozzle.json index 1c6e9748cce..441d231c5a5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA Matte Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Nt59HnGKjIHV07Kd", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json index 7471e49faef..5ff9cf828f7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "FYKnzaxIcuv1gjpL", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json index 4a458023567..0e7b800526b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "KMss48gyKoL4j5zn", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json index 2e4fb320354..f2560dbdecb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "bausfUncYuKRihBt", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json index 81e6c8a8c7b..df852a8a748 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "5yqKP3fPaQr6GJvk", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json index f4321f32d03..3f57b73a1f3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Rapido@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_1", "instantiation": "false", "cool_plate_temp_initial_layer": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json index 5820937c000..48c549235ec 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_1", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.2 nozzle.json index 5efcec840d1..605cda1d1d3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q2 0.2 nozzle", "inherits": "QIDI PLA Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "wIKPtF9PbNVBx8Qy", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.4 nozzle.json index 63821b4c7e4..de3e0ae3856 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "YkBoaeDwyqZXulOn", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.6 nozzle.json index 409aadb1e9e..f1d3ffff096 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "c2Lp8H7mc4jUyZQK", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.8 nozzle.json index af9ee4d6c04..df8008b5e10 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "h5pW4UHneDl8pwqL", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json index cfe462d29a5..eea346db62b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "jwbytNUPLwz51w3j", "name": "QIDI PLA Rapido @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json index 67bac820e52..620b0808420 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "YRPfFnPdVsDfaafq", "name": "QIDI PLA Rapido @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json index 7a51f297cd3..ceefe5e06e3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "eGM1To6M3Nonr9WC", "name": "QIDI PLA Rapido @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json index 77fd091161e..69c4b11a208 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "NMRzlpF5RoggSMUB", "name": "QIDI PLA Rapido @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json index 619bdc8919f..e4432822ada 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Rapido Matte@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_2", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json index 11743dd5121..644d98f36ce 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_2", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.2 nozzle.json index d32fd1eeeaf..4e419d9dbd6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q2 0.2 nozzle", "inherits": "QIDI PLA Rapido Matte@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "GS4njT7svm7OASXo", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.4 nozzle.json index 3aaeb608c80..e9214e1aabf 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Rapido Matte@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "WWGoEkZCNPgXAxEv", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.6 nozzle.json index 8ff57fe92a0..9e44a655f33 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Rapido Matte@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "WkmpiUAmisY1naT9", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.8 nozzle.json index 157e8c888bc..1361c471b7b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA Rapido Matte@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "I9hqGxHIv0dweWEN", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json index 56438ef12b0..252cd5e317a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "RJQBUrDfhHtKj6XI", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json index 0fb8930cdc0..47ef0abb3f7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "tH0zT7nTGNX82gV3", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json index 64cc8abe7df..3986d88e733 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "H9XIQdpvredK4doN", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json index 495df9e4bfc..238e5ea3419 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "ejvNsJ67Q3e5GQLN", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json index 71eb16f367d..9728e57f4c6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Rapido Metal@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_3", "instantiation": "false", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json index a9e220c5333..9ae9864bd7e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_3", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.2 nozzle.json index ba0f0005b3a..563c3b7a984 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q2 0.2 nozzle", "inherits": "QIDI PLA Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "QKlfYgbwgaybIMf7", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.4 nozzle.json index e5e7dd900ba..d2ec6620dc2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "fs1YpwwgYi8zrupK", "instantiation": "true", "pressure_advance": [ "0.038" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.6 nozzle.json index d21f817b09d..73faa4892ad 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "RauxCLbBqrmJtT1i", "instantiation": "true", "pressure_advance": [ "0.020" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.8 nozzle.json index c924e58d803..7ed76f76622 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "PONMhhSUpYB0JO5J", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json index 61d1ee599f0..83db10e234e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "6zLncXZ6JCWQWc69", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json index af0fb4afb75..b8c7d0f1f16 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "mn6J5ZBTjcr4cINP", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json index 0bd317f2776..e71aca74bb8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "mGnSMw4Pg5llLuLo", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json index 99b78dc2aaf..dfc789c39a6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "cAFmKJHPAshlluST", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json index 50b388e0443..ae38a9189f6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Rapido Silk@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_4", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json index bf518649674..fc484b6eadd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_4", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Silk@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.4 nozzle.json index 7e6bf5f7e0c..f14cba6c53a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Rapido Silk@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "srlXh4ddJ3lqHi70", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.6 nozzle.json index a9cbf94412b..55de774f017 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Rapido Silk@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "I0nEd5g6SxZfIYzL", "instantiation": "true", "pressure_advance": [ "0.021" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json index 137ead43b3b..d79972344a5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "UiribWz6dXt3jzup", "name": "QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json index b6accf53214..c658450bc25 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "yZ3G2LyyN2iP9RTu", "name": "QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json index 248b4062c1d..4e1b88726e0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL98", "filament_id": "QD_1_1_5", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json index 31e21dd09d1..e472c6c14b4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_5", - "setting_id": "GFSL98", "name": "QIDI PLA-CF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.4 nozzle.json index 6b75e67fc2d..502019ca69e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA-CF@Q2-Series", "from": "system", - "setting_id": "GFSL98", + "setting_id": "KsfbhGEwSkHLERy7", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.6 nozzle.json index 3e3dee731a7..d433a33bcf1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA-CF@Q2-Series", "from": "system", - "setting_id": "GFSL98", + "setting_id": "ndrSgMqHkHTsUYFA", "instantiation": "true", "pressure_advance": [ "0.012" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.8 nozzle.json index a56efa3e2c5..6e8ef1ddebc 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA-CF@Q2-Series", "from": "system", - "setting_id": "GFSL98", + "setting_id": "b4zVmMvS88E6elwe", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json index 55e2308ae6c..8b683ddf123 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL98", + "setting_id": "n8Oq2FaJ7D6LodTC", "name": "QIDI PLA-CF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json index 5c7701f1c44..530b7ffa845 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL98", + "setting_id": "lmelEA4doZJ4NESg", "name": "QIDI PLA-CF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json index 2e7673509f0..0f93d1446c0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL98", + "setting_id": "YCDOpbUtf3MQEMW9", "name": "QIDI PLA-CF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json index e54853403d3..b660907a06a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PPS-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_44", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json index bc8f35a4049..f6c81f01cc2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_44", - "setting_id": "GFSN99", "name": "QIDI PPS-CF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.4 nozzle.json index b1c2f1f699c..2bc9654971f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PPS-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "JbIx9poPAriGdp13", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.6 nozzle.json index db48246b307..c3376cdc054 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PPS-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "3O3yEvndc2Zzpqln", "instantiation": "true", "pressure_advance": [ "0.021" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.8 nozzle.json index 60f3adff3d1..b15add0e676 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PPS-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "BZZisCpYqzdD9lvl", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json index 54b62254b82..942442c9703 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "gskPF1tpzSKrb6zt", "name": "QIDI PPS-CF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json index ab2f1da2e33..d37c2ad801d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "E6qMYOhwcaLXpho8", "name": "QIDI PPS-CF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json index 94431c52c78..ae6c940b29d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "PyswXDniz2jG2qcr", "name": "QIDI PPS-CF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json index 9e9a281d03a..5b856a470e5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_1_1_46", - "setting_id": "GFSN99", "name": "QIDI PPS-GF@Q2-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json index 5f58a0704a2..24edfefc73a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_46", - "setting_id": "GFSN99", "name": "QIDI PPS-GF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json index 48a0ea6eab1..5e0f3658dd7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "VNDS3Q7xaoZKbu92", "name": "QIDI PPS-GF @Qidi Q2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json index 1a97896205d..e82f6c1a548 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "Pmt9r3KLuDxb36mX", "name": "QIDI PPS-GF @Qidi Q2 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json index fef263004ef..b922eaf99b8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "x4hehtim7NYSSmaf", "name": "QIDI PPS-GF @Qidi Q2 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json index f76de518553..5f6cb39bb4e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "DXf7va4b0pLFJAI6", "name": "QIDI PPS-GF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json index 57a7ff2f05c..91dfdf41bca 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "FigvAJn38PfjU9LR", "name": "QIDI PPS-GF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json index 325b9bed4c5..3bb98f4f5a1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "6pOI4AUFTKKOtmdi", "name": "QIDI PPS-GF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json index 5b81300521b..7d3df895ae2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI Support For PAHT@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN95", "filament_id": "QD_1_1_32", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json index 3eeea472c3a..7a263101f0b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_32", - "setting_id": "GFSN95", "name": "QIDI Support For PAHT@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.4 nozzle.json index d75f0501823..eafcce4d500 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi Q2 0.4 nozzle", "inherits": "QIDI Support For PAHT@Q2-Series", "from": "system", - "setting_id": "GFSN95", + "setting_id": "PspiqLXugdtXT5xZ", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.6 nozzle.json index cc07109d228..fee163cf570 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi Q2 0.6 nozzle", "inherits": "QIDI Support For PAHT@Q2-Series", "from": "system", - "setting_id": "GFSN95", + "setting_id": "qYVq74fCsC8rPJiL", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.8 nozzle.json index d9ac627df34..bc838ab09a7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi Q2 0.8 nozzle", "inherits": "QIDI Support For PAHT@Q2-Series", "from": "system", - "setting_id": "GFSN96", + "setting_id": "cY35hADOl3BxUYZM", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json index b6380fbd9fe..4f7c6a3527d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN95", + "setting_id": "4lFfvmONQVUb7PSr", "name": "QIDI Support For PAHT @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json index 97b52eeadc3..0be3a07ba38 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN95", + "setting_id": "a8HNWpPJjrCglxFd", "name": "QIDI Support For PAHT @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json index 56d37428da5..045df06e14c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN96", + "setting_id": "rSb8eojmAbRLKH5t", "name": "QIDI Support For PAHT @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json index 105fedadf02..e0f9db452af 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI Support For PET/PA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN96", "filament_id": "QD_1_1_33", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json index 0bef0d40d13..4a29cb7f0fd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_33", - "setting_id": "GFSN96", "name": "QIDI Support For PET/PA@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.4 nozzle.json index 806c4c9e898..e03e9584d76 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi Q2 0.4 nozzle", "inherits": "QIDI Support For PET/PA@Q2-Series", "from": "system", - "setting_id": "GFSN96", + "setting_id": "oywAhSTOaqNv9ROQ", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.6 nozzle.json index 9812fc17ad2..780fdf5a7b2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi Q2 0.6 nozzle", "inherits": "QIDI Support For PET/PA@Q2-Series", "from": "system", - "setting_id": "GFSN96", + "setting_id": "UiCqcraA0FAmVheo", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.8 nozzle.json index 663654002fe..967da042c00 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi Q2 0.8 nozzle", "inherits": "QIDI Support For PET/PA@Q2-Series", "from": "system", - "setting_id": "GFSN96", + "setting_id": "2B0iekCofB9usaAS", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json index e3c7a8bd6ad..fa401f781dd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN96", + "setting_id": "G3r0SQ4Ms90nYDmW", "name": "QIDI Support For PET/PA @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json index 5d9ae937c0d..33bb3ec8a01 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN96", + "setting_id": "5ZtHiuELFCXDNEZq", "name": "QIDI Support For PET/PA @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json index 4a22efe5841..ad2242cc58f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN96", + "setting_id": "qM1c1tU9XPi4CiyV", "name": "QIDI Support For PET/PA @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json index bc84dd50ad5..5393003f871 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI TPU 95A-HF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSR99", "filament_id": "QD_1_1_50", "instantiation": "false", "filament_adhesiveness_category": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json index d9970e4afca..8280fbdea7c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_50", - "setting_id": "GFSR99", "name": "QIDI TPU 95A-HF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.4 nozzle.json index d4b22b457a0..b6812bd686f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU 95A-HF @Qidi Q2 0.4 nozzle", "inherits": "QIDI TPU 95A-HF@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "4HK1LYIjrGTonFG4", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.6 nozzle.json index 6a61d205b3c..3e3605ea37d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU 95A-HF @Qidi Q2 0.6 nozzle", "inherits": "QIDI TPU 95A-HF@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "ooW5XfQhmdOt0bY5", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.8 nozzle.json index 45d3237e63c..1f81169f5cb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU 95A-HF @Qidi Q2 0.8 nozzle", "inherits": "QIDI TPU 95A-HF@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "a9QyPBu8SIsM6EeU", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json index c69f7fb911b..1e7d7eb482d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "fDu71TIyslwqfIIC", "name": "QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json index 77ad48950f3..00bc79f4a00 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "X3Bq50h7OpyI5cwA", "name": "QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json index c7bb629db5b..faff7dea65c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "4U8zmwkMTYVejPbB", "name": "QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json index bef81111239..be5148f681e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI TPU-Aero@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSR98", "filament_id": "QD_1_1_49", "instantiation": "false", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json index 45de2286d59..81b31b797d1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_49", - "setting_id": "GFSR98", "name": "QIDI TPU-Aero@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.4 nozzle.json index da32ab4060a..d19dd9c668d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi Q2 0.4 nozzle", "inherits": "QIDI TPU-Aero@Q2-Series", "from": "system", - "setting_id": "GFSR98", + "setting_id": "0KNVBgGBbpSQVsAy", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.6 nozzle.json index 3afc908b6a2..cc7a9c5c1ce 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi Q2 0.6 nozzle", "inherits": "QIDI TPU-Aero@Q2-Series", "from": "system", - "setting_id": "GFSR98", + "setting_id": "T9Gpz3ivPh7hiLJr", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json index c41620b1a61..e4e1048735e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR98", + "setting_id": "A1IqfJw7OqImKRHJ", "name": "QIDI TPU-Aero @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json index d58720ada61..15a8ce05fef 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR98", + "setting_id": "XeIEGj6ExW5qlZ1J", "name": "QIDI TPU-Aero @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json index d278dabeadf..ed14acab0ff 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_1_1_15", - "setting_id": "GFSR99", "name": "QIDI TPU-GF@Q2-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json index d0ccd1a71e6..928aac67159 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_15", - "setting_id": "GFSR99", "name": "QIDI TPU-GF@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json index 671bf19172c..1766326a1d7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "d6oaFn6pmW0P34cY", "name": "QIDI TPU-GF @Qidi Q2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json index 1c56cf6c298..689d9a86a8b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "K8X4uDSRbm3mPQEq", "name": "QIDI TPU-GF @Qidi Q2 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json index 79141e4577f..d2eff0e7abe 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "s2xF6tQzUnKYjAUQ", "name": "QIDI TPU-GF @Qidi Q2 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json index 555693425cd..f062c3cc833 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "NsOYbxppmw9kQgvx", "name": "QIDI TPU-GF @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json index f51a4c65ff1..97f52e1a6c5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "1GHTHZoint67pkmJ", "name": "QIDI TPU-GF @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json index 8b8a3f87e47..e559383456c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "XtqGcST9qlQZzfHa", "name": "QIDI TPU-GF @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json index 7f1dfaf7247..3139b843c95 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI UltraPA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN98", "filament_id": "QD_1_1_24", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json index 43171a8d241..144f055c321 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_24", - "setting_id": "GFSN98", "name": "QIDI UltraPA@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.4 nozzle.json index a2b99a2d93d..9633d14c828 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA @Qidi Q2 0.4 nozzle", "inherits": "QIDI UltraPA@Q2-Series", "from": "system", - "setting_id": "GFSN98", + "setting_id": "yCyZ2ltpPfMARrTL", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.6 nozzle.json index 2d392160136..b7153cd667c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA @Qidi Q2 0.6 nozzle", "inherits": "QIDI UltraPA@Q2-Series", "from": "system", - "setting_id": "GFSN98", + "setting_id": "qfK4FpDVsjlZshg1", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.8 nozzle.json index 144e5c48eb8..d6e059cee2c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA @Qidi Q2 0.8 nozzle", "inherits": "QIDI UltraPA@Q2-Series", "from": "system", - "setting_id": "GFSN98", + "setting_id": "G35duZRxZzwmKg3e", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json index e65db927e73..12982db3cad 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN98", + "setting_id": "Sp4WwVIaTBVVDnDc", "name": "QIDI UltraPA @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json index 9da119d11f3..6faeea6437f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN98", + "setting_id": "OXR5eUAK3x6nPOM3", "name": "QIDI UltraPA @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json index cf62861db06..596f1316e5d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN98", + "setting_id": "VbDeId9i65hJlNYr", "name": "QIDI UltraPA @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json index 1de3a74cf81..71dfd883fb7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI UltraPA-CF25@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_26", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json index 99c1637270c..0fd084680ac 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_26", - "setting_id": "GFSN99", "name": "QIDI UltraPA-CF25@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.4 nozzle.json index 97f4be215dc..6a707dd5441 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q2 0.4 nozzle", "inherits": "QIDI UltraPA-CF25@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "fGxyWcWEXmua9y4Z", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.6 nozzle.json index dce891b7274..086ec92cb91 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q2 0.6 nozzle", "inherits": "QIDI UltraPA-CF25@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "GobHpUPsRZBrfGwF", "instantiation": "true", "pressure_advance": [ "0.022" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.8 nozzle.json index 0b4cf131fa8..58fd81c119f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q2 0.8 nozzle", "inherits": "QIDI UltraPA-CF25@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "pRs9dWPzsT7aXQ3B", "instantiation": "true", "pressure_advance": [ "0.02" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json index 07f255244fd..c064ac9ba43 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "ggjTMm3h4Arw55tk", "name": "QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json index a363a01acb6..eb7136af9a5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "ZOb1u0Ah3o9PI6I8", "name": "QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json index 3ab8c870b61..afd7dee7068 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "mQuwjxr0XlcacKg5", "name": "QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json index fb9248e9a93..380d48bcb15 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI WOOD Rapido@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_6", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json index 3853d54bd92..556dc012528 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_2_1_6", - "setting_id": "GFSL99", "name": "QIDI WOOD Rapido@Q2C-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.4 nozzle.json index f71fddd7cd0..6b10371392d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q2 0.4 nozzle", "inherits": "QIDI WOOD Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "F0J4IJeR9K99QyvR", "instantiation": "true", "pressure_advance": [ "0.044" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.6 nozzle.json index ad3b9bb506a..c708e24a8c3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q2 0.6 nozzle", "inherits": "QIDI WOOD Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "ShYSni251UBQ6ez0", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.8 nozzle.json index 5773d747674..4c400a05537 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q2 0.8 nozzle", "inherits": "QIDI WOOD Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "N8NPPp8HiFMdVTvr", "instantiation": "true", "pressure_advance": [ "0.012" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json index 87c84ba9926..b1348b7aed2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "F750rXpmPM7beVmY", "name": "QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json index ffb6dd95603..082ac7d7936 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "fMxaTtxy9Zsksahc", "name": "QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json index ee10469e23f..747c76fe128 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "ILkX32CTmrBR01UC", "name": "QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json index 560ab1e0b8f..fb1ae0ca890 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @0.2 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Z0J9YPS8382vLms4", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json index 5e42afa81f4..5e272b3e756 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @0.6 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SA5qLMqlZg0lBV9u", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json index d90b17231e2..b49c26fbc63 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @0.8 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MzM45pddZsnN8jk4", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json index bde51d0fd9d..c59b3a85eef 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Tq1aLmF5jT1fx5mZ", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json index b1431fa5c55..e68e7cf3faf 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1hhkoG2E1z6ya5hY", "filament_id": "GFB99", "instantiation": "true", "during_print_exhaust_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json index 1faf1db3128..395f1dc9345 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Vr1wXzAo5OR2PASA", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json index f49a8ba8ff2..5416a7b5800 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OCg8c9SWQrZP0SrH", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json index 6447de36ed9..ac47e75f007 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3fkdGYKFpaJ8yjwg", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json index 4123a22d98b..b0467052efb 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Tkh7jC3ZhD7qchMF", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json index 0a63e9c5877..e259f79655e 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wOJOXhIjWFMUvDsB", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json index 8341e66e60f..b3b3c6007f3 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WqbBySroQTCBWMoz", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless.json index b8c7d13251d..9b2cc8c8fd3 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5GyjZE2Ukzo3BDdg", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json index 10bf718aafa..8d00ff5d333 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido 0.2 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CeOohxHZCLelVMCk", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json index fc36d2efa91..1b40a92d7a8 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido 0.6 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VzAotqGZviabVuS4", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json index ad741cac55e..9edf8f842aa 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido 0.8 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1hpYHzEDBeO8jwDr", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json index 00a0cd29f30..606a4e781d0 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2ZB4CZPo7OnsVeFj", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json index b2a04c1736a..51d96df33db 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ANlmZnKFevlds1x9", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json index 138ba052d52..832ace793f8 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qGAb3jPiiSZqPc0W", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json index cce7028de4e..939c2fc5bde 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zPlNGjze5nz0Sqtn", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json index ccece3db527..a57fa1b64f9 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L6hmbX1bqdrGd9g2", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json index 6900e9f0b31..c05f92c7f4f 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZKLPQIUecFL5GG2P", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json index be183ed0f05..a4838feb1de 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OlI3NRTSS4Vb9ABn", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json index 4b9b196000c..f02644b876a 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7AXe36Wqh6uupouS", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json index 946652f1254..e8393047ddd 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @0.2 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CQa9Ke6ku0jK7juR", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json index a0f1a30a0b9..aa05221df48 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @0.6 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KBXExHIJGyOE02sr", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json index f7e9c2265f9..0a1d5c95452 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @0.8 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QjDN8l4fq8nrEtZS", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json index c8c0d350d5d..b7e9c56d7e8 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "83M8HRLtzoEyAgdd", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json index cbb243a8d7a..cd38da27837 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JWNlbq8qmrVoCjJZ", "filament_id": "GFB99", "instantiation": "true", "during_print_exhaust_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json index fc13b021fd5..2cfbfdf4de8 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "igcuTXhdFT9QEkki", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json index 598a51f662f..ee01bbbb304 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Rci7D9y258kLZl3F", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json index bac4ff8148d..98b64f2e924 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LClDGDpaf5l4XinA", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json index 8d0a8f50e08..71c73d5a261 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TbTSNtElyeqwuhI2", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json index 657b0a08fc2..a3bde066121 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lRSAQSUdgEOvrWOZ", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json index f8e9bd17e5a..fa0b2629ec6 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sV1XN1EnDMTMC6eZ", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal.json index 7a51ddd9bf8..b3b7260b51c 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EcvWsnEhikUy64mA", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido.json index 9ded1bbce9a..75518e19d53 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sru9yX08jyTVNmOz", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json index 3a2481c7090..ddcb0ad3899 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BG8J7FyU5Sn6pmGk", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json index 401875ea732..5a8cd10de21 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "87bAUrovoG3W1WZK", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json index 3b69cf957cf..7714206d33c 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "v0K7uK7rq54uGbrE", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json index 3c1fefb424b..8aba17e8196 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OD1YZ5gmmk39jI21", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json index 8ea5d1c6cdb..af4a24396dc 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QzCAZozPOpv3IOzz", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json index 4e8a078e0f3..ab0972598bc 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fvB8ilSXksTr2ahl", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF.json b/resources/profiles/Qidi/filament/QIDI ABS-GF.json index 5dbd3d315f9..08f59fbf97f 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FW543AnWfRtseB8W", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json index 4397987bd62..4e532d3a340 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uskWZUmvzYkVgG0l", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json index 443981bb6ca..464b555e28a 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9laiuOlfZEWIjQ3u", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json index 5b434115316..92b8fbb0368 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Jh3kEQrLdoGw4WLW", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json index 1f7120e7460..863ace51a57 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3tblNpw8VgOlt8VU", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json index f43cb80c46a..e22b3251139 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tssoWES4nOoMEh90", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json index a1c89c86854..64b7fd6f576 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cgzmqzFT32UhNW5Q", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10.json index df82f517f50..6d01edd1786 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hxsu8XybSxfesTJf", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json index eab98029935..1d88686ecc3 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Do5JLiLyzue036L8", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json index f82d4ca7ad3..df3f1224175 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hTEx7UgX2wWanON5", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json index 03c9a66e6eb..2c99858ffa7 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "shInwFwd1Yh5wUJB", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json index bf432a4f1bc..dcdb75359cd 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LQoXGFsJRpjCTBKm", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json index cc40b94b9c4..43b86fdab1d 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5ONV5cuwTbSMWPMf", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json index 174ecd7a827..8f090308d59 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nvfnoGOwhELWArss", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25.json index 27a6931ed6a..8f45e5f7467 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mFWkL9nlS289XAWu", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.2 nozzle.json index aaf326097b3..1f61623cb05 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JPrwCFLO4P82f5lz", "filament_id": "GFB99", "instantiation": "true", "nozzle_temperature": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.4 nozzle.json index 79ecb101574..fed39958bf3 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zku756j16aST1ugn", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.6 nozzle.json index abe63c355c0..5dd51ba6e33 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EcewU7mP5y2vDwRn", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.8 nozzle.json index 3547c48a6f9..4595c5cb563 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JPCSXfcIngQGTuOz", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Max 3 0.2 nozzle.json index dfe7bcafd5b..53d965df8fa 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Max 3 0.2 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hhkWOEdIbQrB4IR0", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 3 0.2 nozzle.json index d01e4467123..bf52b6954e6 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Plus 3 0.2 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QiV5OREyiy9cb2yA", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.2 nozzle.json index e225c6911a4..8fa1de7e858 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yOWilrQPhpvcpWM4", "filament_id": "GFB99", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.4 nozzle.json index 11122141855..3c259e858a9 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tohpo42HW9BLvVcH", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.6 nozzle.json index 310bbd908fe..33505ecf752 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iDF5lahr0TRvLF8F", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.8 nozzle.json index 2d509a165f1..ace413d4d2c 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "p371tUSbBj3WOi5M", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Smart 3 0.2 nozzle.json index d1665adef98..8d1bb937b10 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Smart 3 0.2 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4NUwEIv3156HKgev", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json index 5d4a18fc007..eb8a8863000 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "UZg7s2SVhCGDcdkA", "instantiation": "true", "filament_settings_id": [ "QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json index d05c8b18974..391b25db427 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "x8avbSHn73PayVfR", "instantiation": "true", "filament_settings_id": [ "QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json index 70bd90407b0..53cb7bdfee8 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "FagCR4bLL1ctSXax", "instantiation": "true", "filament_settings_id": [ "QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json index 40f8e74d941..1eacf83551e 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "T6U1oaEsA0T3ogMM", "name": "QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json index 0e7f840b75d..09beb03076d 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "8Xm0AjRaktaNfo4o", "name": "QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json index b47a9623eaf..7aa7d428001 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "4p12RphItNlfwqwT", "name": "QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json index 82feb1c322b..81a273ab264 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "346HiaeZvs3BoFUb", "name": "QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json index 0c70da16d5c..4d1131e3edf 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "LROz60JZsh6GN7CK", "name": "QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json index 2d6f0163497..2526df2bf86 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "5OR8LnFPipv3h4h8", "name": "QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json index 03582e8a29b..6fa01a68be8 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "0pF0sUnOWKqV3N78", "name": "QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json index 6dc93a3ebf2..fa87cb0ea2c 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "Ag8e5im3pDAL1G7F", "name": "QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json index 81fe8010198..ab0da7d4189 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "Hxv9UhjQyQbFkTc1", "name": "QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json index 39f7396deee..4142c5d0273 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "wyns97Rn3EVTl0v5", "name": "QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json index c686180f217..2736dcc0ea7 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "zituWsHG83yRR1lM", "name": "QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json index 5da14451a94..58f0689cdb4 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "2CgI1u8NrWGqxN1C", "name": "QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF.json b/resources/profiles/Qidi/filament/QIDI ASA-CF.json index 6a1c41192e5..85fb38e2b70 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_0_1_20", - "setting_id": "GFSA04", "name": "QIDI ASA-CF", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/QIDI ASA.json b/resources/profiles/Qidi/filament/QIDI ASA.json index c7fb51ba7a7..952390ed4a8 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA.json +++ b/resources/profiles/Qidi/filament/QIDI ASA.json @@ -3,7 +3,7 @@ "name": "QIDI ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "v2LrEujF68PPbrux", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.4 nozzle.json index 4e8340bcb8a..04cc184d19c 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rDi5X7jq3PrXGeSo", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.6 nozzle.json index d1af286236b..12696f5c4ac 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tF0ym95Eo2WVjYrv", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.8 nozzle.json index 91e10ac8c3f..3bde720ab27 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bWc3l0t1llvWvFei", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.4 nozzle.json index 4b079add240..56512094caa 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qdecbUennyPdmB0A", "filament_id": "QD_0_1_24", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.6 nozzle.json index 8a910fe1ebd..3b0d9029c21 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oAp4leYdCEJY771O", "filament_id": "QD_0_1_24", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.8 nozzle.json index df02adf1c90..795c6dbbfce 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "d5wSCLXU0dhvtbM5", "filament_id": "QD_0_1_24", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra.json index 2a6e6c60105..c1f7e61556e 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN98", + "setting_id": "Rp1vbScHgwAZAwNT", "filament_id": "GFN99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.4 nozzle.json index ec7ab4f707f..4c287235efc 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q3votaRX4HuxZl1j", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.6 nozzle.json index 7514e7c1b25..6b57b653e16 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aaAKfscwITCW1cIY", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.8 nozzle.json index 9296e83ab72..ba8250d7b88 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nsFoTEFnTCbVM5VS", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.4 nozzle.json index 417d93b9674..14e508b5016 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e8Lz1jXDuBS8tzvW", "filament_id": "QD_0_1_27", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.6 nozzle.json index ccf3d671672..8d024087cf2 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2DYXiTX67NfmBSCX", "filament_id": "QD_0_1_27", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.8 nozzle.json index 607ade560e8..a9f43cdaeea 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Kkj773eEVzhT6B7Q", "filament_id": "QD_0_1_27", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF.json b/resources/profiles/Qidi/filament/QIDI PA12-CF.json index 9850593754c..7e2745e42c5 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "tDdg0DlqE4Nle5Xo", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.4 nozzle.json index ffc4489ccdc..483308828c9 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wBwy10qTZT9LPkX7", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.6 nozzle.json index 6472c690be7..559d626e6a6 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "a7pcw1dTC3bXjkqQ", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.8 nozzle.json index 9a5188b8779..a70309e85ad 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pRBh7YZdJFYv4rED", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.4 nozzle.json index 04fdb73cad9..66bf7ff7270 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3HTNW0nsdZy151mm", "filament_id": "QD_0_1_30", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.6 nozzle.json index 0102cc21fc3..0e3da99aed3 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "t9VMvRmLwAT37YHm", "filament_id": "QD_0_1_30", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.8 nozzle.json index 98d891a1c7a..1c5730c8740 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "F30WpUvosUoiAKry", "filament_id": "QD_0_1_30", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF.json index 89dfb9ef967..f21d9bac1bc 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "Hws8EIuQkAfaCJGk", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json index 17be142089b..c544698fdcd 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @0.6 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "jRV6kS5c49Jf0IBJ", "filament_id": "GFL98", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json index dddaedb48ba..69ae49e7763 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @0.8 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "ic09uwyOjmjgZhCY", "filament_id": "GFL98", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.4 nozzle.json index bf84bcc9abb..3202c6fce1c 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BGwcBuMu2dcF1nGB", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.6 nozzle.json index 3c126cfebb4..35daa7f0052 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "R8msB42rgbyfT0sG", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.8 nozzle.json index 4f68081db39..5c2461e5353 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "D1nnJWlyUV0wvZnz", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.4 nozzle.json index 3986aad4eda..0d83c210792 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xHG5cy5GGfu88GoC", "filament_id": "QD_0_1_31", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.6 nozzle.json index b93a4ffe39d..d90f8c3eecc 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "z1EQUUwgsLHYgeHG", "filament_id": "QD_0_1_31", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.8 nozzle.json index afa21eabf54..4d1b97b8fd1 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yTNCP86ycfXgy8zV", "filament_id": "QD_0_1_31", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF.json index e2f756eef92..806dcb1a63a 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "A6BaDz936RbO2EW1", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json index b2f411ccd2b..07d12f2df77 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "VNbCsg7HAvK02shi", "instantiation": "true", "filament_settings_id": [ "QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json index 277ee545f97..cd94ebab15d 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "SBJaM8xcxmruL8Sx", "instantiation": "true", "filament_settings_id": [ "QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json index d7eae7591f6..778a6ae1df4 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR98", + "setting_id": "TbhTBJp30kh8yQFL", "name": "QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json index f5530a6c2eb..6d191276b6b 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR98", + "setting_id": "dU7GaenYyWsX49Hf", "name": "QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A.json index 627d8b65d0e..6f8b9c1367c 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "QD_0_1_36", - "setting_id": "GFSR98", + "setting_id": "qkErLCeMU5ufGB0k", "name": "QIDI PEBA 95A", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.4 nozzle.json index 6c2a289e724..fe24beddf78 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sPox9vMaLAuoZoP2", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.6 nozzle.json index 0e039248cd2..beaa69e235f 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6BLOwVDtDPvTqanQ", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.8 nozzle.json index 6676935664d..38ba31b9c21 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "znZt3ns7eHGTA3sX", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.4 nozzle.json index 119bf5e46b4..5a9f9e7aa53 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3k9qy3LCbhnnRRad", "filament_id": "QD_0_1_37", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.6 nozzle.json index a7700e13106..a6477c90bba 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xYAAeJcC83x4RoIl", "filament_id": "QD_0_1_37", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.8 nozzle.json index 74bde5847b1..4670fe40bc3 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JXE7r9nJqui21eJW", "filament_id": "QD_0_1_37", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF.json b/resources/profiles/Qidi/filament/QIDI PET-CF.json index 07f5b6ca674..e426cdf3207 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "X4zXjt7t9eLbESzJ", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json index 3e830ba6877..a07d1a326ee 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @0.6 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N9zX7M4yR8u5Jqjd", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json index b868bd1c75a..cd3c601da66 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @0.8 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ATyJ8qPoYVqi7J3I", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.4 nozzle.json index 791ffbe21d1..d5e51c61020 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I48bgbR8Rq9DDxmR", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.6 nozzle.json index 5428d0f0f44..ac877dc6cac 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hGLyYZ2WBTIFnWnc", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.8 nozzle.json index 3ba5c5ec37a..4554a3b5747 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XC3F1NLZxw1v5Bh3", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.4 nozzle.json index 6d50361bb4b..e7131b8b4ac 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zSjGCRFJPKjrnxXj", "filament_id": "QD_0_1_38", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.6 nozzle.json index 82f09ee427a..62eaf75e854 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qKGOeBEUrafs1H1C", "filament_id": "QD_0_1_38", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.8 nozzle.json index 1827d597b66..96112b42833 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "S3VakjOmAENmBhoU", "filament_id": "QD_0_1_38", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF.json b/resources/profiles/Qidi/filament/QIDI PET-GF.json index 2c721010b05..61fa65632bc 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "nXZR8ykt6JdxvTCd", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json index ec35ded3320..fc121649894 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @0.2 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSG99", + "setting_id": "U8Tz8l63gQMoW1TR", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json index ae6faf01b90..4165ed02c7d 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @0.6 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSG99", + "setting_id": "i5DnDzOFFFsd4ear", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json index 60f942020e6..1620d6cd709 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @0.8 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSG99", + "setting_id": "eqwWKpJur2oPzaig", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json index 3f1f21cc8bf..1c7fb7e0d3a 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZwdzHcsJbYBI04Yn", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json index 5e90ef0d2a7..dbf88b47cc7 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wYE4aUeszHw1HJrZ", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json index b0b19d9c485..ae41acdb9e8 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SbHnONYlR2WneAjS", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json index 5f0ec1e7ea0..0880da2befd 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EQrNIdbODkHki7pY", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json index 0e760ddffdf..dd6e20b2ed8 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SaZRrBNZwbPUxSRv", "filament_id": "QD_0_1_39", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json index 32dd79c90ae..853d55b5065 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "33Anr90IUQGC3jJZ", "filament_id": "QD_0_1_39", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json index 2e0edfcc1eb..8758f39eb59 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l4LT5GPolnkeEEK6", "filament_id": "QD_0_1_39", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json index 3dd13b54786..55db9aa1260 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "r6LnysrDaSyIserx", "filament_id": "QD_0_1_39", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic.json b/resources/profiles/Qidi/filament/QIDI PETG Basic.json index 2ba661074d0..1899fa6b7c9 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "7uiFWB9SSJvhXKt0", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json index 1a1fcbe4f86..48826d07039 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @0.2 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSG99", + "setting_id": "17nQzSvxOhC8RqMv", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json index 7109279be94..6a214eff463 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @0.6 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSG99", + "setting_id": "TJja29CvUqlXnhWM", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json index d124a75e9fe..7b5941164df 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @0.8 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSG99", + "setting_id": "6rVVNiYVHxsxqk0M", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json index b601069ab8f..3aff0af94f7 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MoKlaB96ptTjnoa8", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json index b15315f6f8f..45ba611152d 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "S2CUnrPuZuvBo19K", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json index 335f4d173e9..8f72cf31ed9 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kEUCaWmAo3xZC09A", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json index e8f1f9ab785..bf500050a6a 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4Tse2Ycxud3qX0aQ", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json index ee8f1fbeec7..a2098e7af14 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "O2SmSJeOq2QkMawy", "filament_id": "QD_0_1_41", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json index 3b9d6421820..c2a930616a9 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UkzoaZIuBEwTCUYL", "filament_id": "QD_0_1_41", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json index d75da73dc31..fc646776560 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wMG9FBNFTJR3mI2Y", "filament_id": "QD_0_1_41", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json index 258b28d3454..da2dbce4844 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WF4EIoqqebSQYJCL", "filament_id": "QD_0_1_41", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido.json index 27215363611..67d19f82a2e 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "YK77S7a06UMEQzum", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json index 74fca1f39fc..d5cdf158bfe 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough 0.2 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSG99", + "setting_id": "wl53hiPD7EGYabrt", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json index 6678dd884a5..2f7579c984c 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough 0.6 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSG99", + "setting_id": "QUkztHAxlI1gg1xe", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json index 2f306e7a7e6..5a5a9a4a4db 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough 0.8 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSG99", + "setting_id": "vtQb2QBD5ongR7vC", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json index f47c2f3be45..26589c581eb 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KHeb2TVAxtw6fbRm", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json index ced98fb9272..5317b9f51d5 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "22HUqZbuYgOGNRfN", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json index c3790819b3e..f32ca31314a 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "U35fhYtgLMsDXEws", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json index 11bfdebbbc0..2a524dda6ad 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wqzUWt3IiEURFRYL", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json index fbf51d1ddfc..5a24596ad8c 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Mu4RDxD4sVyJwRXc", "filament_id": "QD_0_1_40", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json index be522df3aae..20e2ce86052 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FJryx96xxfATPqls", "filament_id": "QD_0_1_40", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json index 1b04bfcde33..f0676efd808 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SmywHXjvv1Ju150F", "filament_id": "QD_0_1_40", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json index 9dd342dee60..a669d37ca31 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BwMkyVGyL0Pmqp1w", "filament_id": "QD_0_1_40", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough.json b/resources/profiles/Qidi/filament/QIDI PETG Tough.json index b7bd1440632..a9193be4b4e 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "SrZXxBXWXda9boGv", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json index 199bb0194e6..8f169985b8a 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @0.2 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSG99", + "setting_id": "I8DmnTJey0BaBBAN", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json index 30d1f21d30b..3335b5984aa 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @0.6 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSG99", + "setting_id": "0SbgoW822S43QDoX", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json index 00d632796ad..df1157dcc0f 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @0.8 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSG99", + "setting_id": "rOakaeWOHKz9immU", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json index 30d3b11a51c..2926cfa7d46 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RBy7wrl1ZQOdKe8i", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json index aaff090dd0e..23ed635640f 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Y0jCXY0Ihd6eRlm4", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json index 219d5fcc3dd..b2397ddb336 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9yzSrCFgR00Lx8Ab", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json index 67fb0db5eb6..8c86c181346 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uMHHs1N1fLMq56FF", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json index 3f175425a02..5082d4d9f0c 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6bASygXwTEKR4Twi", "filament_id": "QD_0_1_45", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json index 46052bf7bda..22d8ffe823e 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QL7Ob5qH7GBsl9ga", "filament_id": "QD_0_1_45", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json index 55ce33f31c9..e1fbad24e96 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wwodlWk71rHgZ323", "filament_id": "QD_0_1_45", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json index 376ede57fa7..7ad9a35a0c6 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Nh88D1u7mMVGhqCU", "filament_id": "QD_0_1_45", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent.json index ca90a9d3c21..a7e1a3f943e 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "5k6FnlL39pSbrei2", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.4 nozzle.json index 4b4ca1731c8..15e4f9f4c60 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6EOvD75tBRyvffZF", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.6 nozzle.json index 8c698b098f9..06118ac1281 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ByHCLDgv1HFiA1Bb", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.8 nozzle.json index d95a5d7bbd2..aff00a2a31b 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NBrZJME5Jt7jwU4W", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.4 nozzle.json index 36661d4add2..42fe672412c 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OSLMQVT2l2Yert5l", "filament_id": "QD_0_1_42", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.6 nozzle.json index 88414fd2908..a0b04d61be1 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rpJAbHlG6bJhJoAs", "filament_id": "QD_0_1_42", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.8 nozzle.json index 136044c0b79..91265bb6b33 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yyB4FvX6mflpfiZd", "filament_id": "QD_0_1_42", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF.json b/resources/profiles/Qidi/filament/QIDI PETG-CF.json index db4f170be0b..f3b49b6148f 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSN99", + "setting_id": "vg3YJMhVaXTMTVLJ", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.4 nozzle.json index 669f7924053..c6635252e2a 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4kBE3NMTit44g7S1", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.6 nozzle.json index 608962f4ba8..753888565db 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SzH90qDpFuNpG7Ud", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.8 nozzle.json index d405104a66c..ff22c08ab93 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9XoDC8DHvxvgrRor", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.4 nozzle.json index 05970e46ec5..b7f85630bd4 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I6Tg5JVz1Q0RigOW", "filament_id": "QD_0_1_43", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.6 nozzle.json index 2c94d736166..4b29595ea8e 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RmitFKegDy89lNH4", "filament_id": "QD_0_1_43", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.8 nozzle.json index 812fbe62e47..a7a0295a94b 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AoO0ihxQmsL2up4w", "filament_id": "QD_0_1_43", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF.json b/resources/profiles/Qidi/filament/QIDI PETG-GF.json index b523e8ab060..1dc5312349e 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSN99", + "setting_id": "bex5zSdkQThZQi0s", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json index 9db65cdcd21..da76bcd6654 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @0.2 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "hWJXKDKNjeBqYYFk", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json index 30a34fd5c5e..c649d8d658c 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @0.6 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "LMfV673NzArmzY44", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json index b091ab26fb9..14da2310e75 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @0.8 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "CyXcxvEKE6gnCRm9", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json index f505e3ab809..449e7e207a8 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "g7OVjk2xNWWNQo9D", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json index e6dd92e3e81..c2f7dab865c 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EdgtTQVIiPatR9Rt", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json index 33e720de42b..ade21c62a60 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UTbL94nFN0Cx30p6", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json index a6b75138936..5648eb9fd54 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "INxFTcta59v2Ukpy", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json index 990b748fcd1..e49360108e3 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AOa9WW2IN1VHGXGM", "filament_id": "QD_0_1_7", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json index ac6feda98a0..951227fba2e 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qdagUM7IIKyfHB2g", "filament_id": "QD_0_1_7", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json index 5df275dc395..c7f30d1c03b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CwsM4SCrRAhAJVfN", "filament_id": "QD_0_1_7", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json index bb7a1b75a71..a255f2e3687 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HE3KK8QRsGrgLnr5", "filament_id": "QD_0_1_7", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic.json b/resources/profiles/Qidi/filament/QIDI PLA Basic.json index 085587ed86b..c5e219dd3f7 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "UlF92qvJnOYzq0mw", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json index 304448f34e5..50120cf72e5 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @0.2 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "vzT3dsogzkZSegM0", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json index 934322151cd..2168a18fa2b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @0.6 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "rdGuWICdcIZ3fXJb", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json index 11884f42e0c..0c1657f487c 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @0.8 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "9z0BoiNtKlwPoCI4", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json index 13d16cdecef..86b7154e888 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Txg82qpCGVco78Ih", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json index 5b8b119fdc0..9097ca2c19f 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "smHGcdmpWzQy1vW3", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json index 8100281ef13..69f09b85cad 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hGKQJNUIQR0srofE", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json index bfb588b519b..f9450293429 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kARyA9JRV7f6Wu3E", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json index a33d2be8d20..a6d7f3b66bf 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8JEZpQeq7FEoUQQd", "filament_id": "QD_0_1_8", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json index 220fec3a9ce..90b3876c66f 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6Z2ery99xHlP2ciV", "filament_id": "QD_0_1_8", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json index 9a16d30605b..35d11757ce1 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "27eKOPtsQZIRwQYo", "filament_id": "QD_0_1_8", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json index 19d4260f277..de7de4d803f 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nf5VwfZ4gpGG5ufO", "filament_id": "QD_0_1_8", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic.json index 42f4c4dcff6..6204fd0d38b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "53yYF0gK91AQcKAy", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json index ac76af94c2a..64c3e9bf692 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido 0.2 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSL99", + "setting_id": "jpTA43XolFvODs9f", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json index dcb54bfdc99..c01fcd8cdb3 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido 0.8 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSL99", + "setting_id": "MGW0kfdHATaAzL1P", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json index 121ce4c6e89..8cabbff1a58 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @0.6 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSL99", + "setting_id": "eQOfNVt6OqCFj0bV", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json index 8e842f04d0b..f72a01ceda8 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tdL1kK6jLbREgYna", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json index 6310dc60b9f..05e66e91b66 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zfL5B7iAlx3PbJ1j", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json index 51538da7143..29f2a5e350f 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oZZn5VxcrwDJX9fE", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json index 94727985766..9aedb1f2143 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o1lfFStVDZMsdFtr", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json index cce3c6cef88..49115068c6d 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xaGFbFpbrZ9v3RKy", "filament_id": "QD_0_1_1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json index 77215fd2bc8..1a17ca5b693 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Vy1gTRsTAyLCcyTC", "filament_id": "QD_0_1_1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json index 31dcae5b7d2..03d69431aff 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Rt3UcmwI8R8fxKUa", "filament_id": "QD_0_1_1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json index a0751c5b310..e62b729ec9b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dWb415VG0AlqTWFD", "filament_id": "QD_0_1_1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json index fec0602b84f..ee82976dfe1 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @0.2 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSL99", + "setting_id": "HK2fT6TYIIS94MZD", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json index e7fead6a5e6..6922e1e7022 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @0.6 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "User", - "setting_id": "GFSL99", + "setting_id": "syivJeR1eO6H8wsK", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json index d73761221ba..218c704674a 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @0.8 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "User", - "setting_id": "GFSL99", + "setting_id": "WC8KpzKwpQcHOStJ", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json index f0110131a6e..8cef6a51f96 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RccxOqWrkZljiU5Y", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json index 0a91f702bd4..8a6e89f6671 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8KV7AfivVZHM6ReD", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json index 00e3853e7e7..648c46e7173 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "c5lFoguRq8sBwQ1K", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json index fb93e621414..3cb87903ff8 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "95NdLwU31HQJthJE", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json index 0e6f9c7b55a..28111c4f07a 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9YVeedSIviWv3n9F", "filament_id": "QD_0_1_2", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json index 866637c544c..dce300b652c 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "M7OXECFdZK4ZAoba", "filament_id": "QD_0_1_2", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json index 63aef169206..b95ff5f588f 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zXKa67Oj1qSsHlct", "filament_id": "QD_0_1_2", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json index a1614626096..14732dfba7d 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iJ0geNRlmJkSPQfN", "filament_id": "QD_0_1_2", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte.json index 0f41552b2a9..0794ea2af4d 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "gwmsxvv6cpmVlBDa", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json index de1197129a1..2b1a0d27ec4 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @0.2 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSL99", + "setting_id": "oZC1FZ93158dUC0j", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json index d2b3615c315..7a9ffd41551 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @0.6 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Ix7a15ABLu7ykbMb", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json index 6a6cd52db94..6089fca9f40 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @0.8 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSL99", + "setting_id": "NdUtpGmW1Rl2h1Xc", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json index 010768c5e4a..a4d88bd29c4 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6obXUws35j7OkE2v", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json index af2b19a7e19..571decc29b7 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Z0YSeNJQ3rKDwzsp", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json index cdc75b8566a..4119d9da159 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BoVtyU2REc0Ayzc4", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json index 880eac96c04..17f7a4818bc 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EKWOHWk37Yn1jS5V", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json index 94217bd906c..0ac378e9e83 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PvK39S1OvklDcZiB", "filament_id": "QD_0_1_3", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json index 0846aff06c1..171ae933d8d 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9CsEnbzkLosi8Y4Y", "filament_id": "QD_0_1_3", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json index 3e1c5e78c12..46940dd8b6d 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kQGl05whrHW2T43U", "filament_id": "QD_0_1_3", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json index ab3a89dbb7b..b007ae0bf60 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "m2ctHQXA57lyjj4Q", "filament_id": "QD_0_1_3", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal.json index e18a6098dd5..b118bcfd02f 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "yrS51y3N1ooM5ULv", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json index 1706a417ecb..f90993ad9bd 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @0.6 nozzle", "inherits": "QIDI PLA Rapido Silk", "from": "system", - "setting_id": "GFSL99", + "setting_id": "AaBBTIJSMkxxTPDt", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json index 4383803b33e..63cfb9c6b0e 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Rapido Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hnWx5ZM2ecclYvKA", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json index a28a9eae1cc..c81d897d304 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Rapido Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bQTjglDv2qjgrUNl", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json index f4822d6e1bd..0cb15c1cae4 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Rapido Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "X0DxlkkldQnTUfLy", "filament_id": "QD_0_1_4", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json index 772058c295f..bacf625ed24 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Rapido Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "McXMhVyp029M56kU", "filament_id": "QD_0_1_4", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json index 2c45d173885..be0f4226926 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "zifqr9yiIZKivCNu", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido.json index 5773669488c..1add171288e 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "JdGWg2Kn3T2L2Ai2", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json index 03f17660112..59d8a28bd70 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @0.6 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "BTqlIKpYFQCC8gJt", "filament_id": "GFL98", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json index 1f12ae5b674..4c265e6c644 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @0.8 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "0Wr2y2a7rHYbk5fS", "filament_id": "GFL98", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.4 nozzle.json index 419a94a876f..3b236b0420f 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "xGqY059EYGUevj9G", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.6 nozzle.json index 2cfdca0b034..cf77b2cdf0d 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "Fh7yuJKSeYs8doRG", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.8 nozzle.json index 0f1e16a755e..49c9d3c0f25 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "vs5bFF3r8Kid59u9", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.4 nozzle.json index c512d32b065..890f9d3f5af 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "Uue4WvW1uAwK2o0Y", "filament_id": "QD_0_1_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.6 nozzle.json index 44a5f5de0a1..ed3f0d52acd 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "3SSQEk5a2vnHKG2g", "filament_id": "QD_0_1_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.8 nozzle.json index beb335d8a9b..29df7c92ea9 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "jlUhowcsrMLKZBHH", "filament_id": "QD_0_1_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json index 2c3c9ab207b..766cbc9d76c 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @0.6 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "E30t78jBGCkTztFC", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json index 1bd52279000..85bcda5991f 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @0.8 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pYmENqkzOsA9LRLW", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.4 nozzle.json index 03327e9e48c..d135252ac8b 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7ozi6TNb3ObLpD2v", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.6 nozzle.json index a97d0b97a19..eecd12264a6 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iNx7JrGG0r5s24dV", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.8 nozzle.json index b748af9aa9b..50bc577d0e8 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tQnGlZa0FL2FpHho", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.4 nozzle.json index e5d5c290e13..2060c981140 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HVN6Bfz9FENqgw14", "filament_id": "QD_0_1_44", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.6 nozzle.json index 4e92005c047..37cd2a368dd 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "T5f0IJeUy3XIzrVw", "filament_id": "QD_0_1_44", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.8 nozzle.json index 8e2ee48a58b..2910fe2bd7e 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eXV1ZPiBolFIU4Ub", "filament_id": "QD_0_1_44", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF.json b/resources/profiles/Qidi/filament/QIDI PPS-CF.json index 71d619f4449..9956719bce8 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "ODM3oXV1OSv3qTbZ", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json index 7ef1b370096..9bfcda342be 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "VgQiY3csDj6bBWSk", "instantiation": "true", "filament_settings_id": [ "QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json index 9b99299a64f..11af4ff9fb1 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "8hFaMBYD7pnmsZWd", "instantiation": "true", "filament_settings_id": [ "QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json index 3d4a4dc4c33..fabf608b4b4 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "BcrvpHAPx0FBvOi3", "instantiation": "true", "filament_settings_id": [ "QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json index 5978789200c..d33145496d0 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "U9L7E06Sy2Wnwskl", "name": "QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json index e8f3ba2c217..ec108b2b4cf 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "crnZYfMj2aMvTdj3", "name": "QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json index 755f9d60046..97b8c8b7f6f 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "MuexSudjg1ht7pBE", "name": "QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF.json b/resources/profiles/Qidi/filament/QIDI PPS-GF.json index 5953ece5f64..22115f44230 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "QD_0_1_46", - "setting_id": "GFSN99", + "setting_id": "uoOOXPpTEGa9bqhx", "name": "QIDI PPS-GF", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.4 nozzle.json index fa044b0d39d..7093e58d9e5 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI Support For PAHT", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aQUPvUd9uPbi7HEx", "filament_id": "QD_0_1_32", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.6 nozzle.json index 486565c43c4..2d85b489c1d 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI Support For PAHT", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2RpRJwkUVzHwU6Ts", "filament_id": "QD_0_1_32", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.8 nozzle.json index 53099f16117..77b6a34209d 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI Support For PAHT", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Arig0uL9inQi0NKf", "filament_id": "QD_0_1_32", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PAHT.json b/resources/profiles/Qidi/filament/QIDI Support For PAHT.json index 549f4e75db4..29a044f7cfa 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PAHT.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PAHT.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "7cd7R9xbuNtLfCHa", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.4 nozzle.json index 8f6fc82b4d2..bd6310ae729 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI Support For PET/PA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EzPLJJzV7W1GfAuZ", "filament_id": "QD_0_1_33", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.6 nozzle.json index ac8e2f0cdbc..7899b0435f7 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI Support For PET/PA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Nfu1o1YZL9zK1VNS", "filament_id": "QD_0_1_33", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.8 nozzle.json index 5f8b0a08816..43ffafb5bbd 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI Support For PET/PA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xJQLw0SvSPItH0wa", "filament_id": "QD_0_1_33", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json b/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json index a8162593205..1c051198532 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "Am158VMH3y6FDxON", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.4 nozzle.json index cea114d7259..a99ea32ca74 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI TPU-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "O7oxTgsH9q8jlqzd", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.6 nozzle.json index d9724e3b0ed..159561dbbd8 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI TPU-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FR1LQ5DM0upGQQfs", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.4 nozzle.json index 9402c381243..18134da7e2b 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI TPU-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6PFep2VmiWoOZLSn", "filament_id": "QD_0_1_49", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.6 nozzle.json index 299d21c8e79..fc9b28c722d 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI TPU-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cqXDJN6nwBX3xVB7", "filament_id": "QD_0_1_49", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero.json index 440e8886980..12020a0fcb0 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSR99", + "setting_id": "BARooxJKaDXbGd9B", "filament_id": "GFU99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json index 6063dea416f..3944b54bcf9 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "GufOfCCphUDzeSo1", "instantiation": "true", "filament_settings_id": [ "QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json index 07d68d36c04..a49857f4d4c 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "nY6q9vd6lpaXiQpc", "instantiation": "true", "filament_settings_id": [ "QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json index 9dab3e9b6a2..2679b15ab13 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "67agKUajM0pFFhia", "instantiation": "true", "filament_settings_id": [ "QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json index 0458f7db3e5..a0956abad67 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "YPsFiwLaWWLToPfS", "name": "QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json index 141c8091ebf..38135ff5ba9 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "jz0KDkNI4lYi5wi2", "name": "QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json index 47b852c9e51..f11f5aeff6a 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "R45ynb8LjuLowV3e", "name": "QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF.json b/resources/profiles/Qidi/filament/QIDI TPU-GF.json index e6f7b430030..71de3ddcd40 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "QD_0_1_15", - "setting_id": "GFSR99", + "setting_id": "r8sdMolKGn3b52NX", "name": "QIDI TPU-GF", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.4 nozzle.json index 04e324c1c10..1921fd982cd 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RgmbbSJpyUyTXPO9", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.6 nozzle.json index 8c113470a88..d800b11f706 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aiGnr6fBoUCuwPS5", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.8 nozzle.json index 7d28278a289..082b2893a32 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "G0qM351aUv23WFmP", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.4 nozzle.json index 48cd812f929..38718910907 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5Two6xier5Pt2f8V", "filament_id": "QD_0_1_26", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.6 nozzle.json index 43e0121bcd5..31b300d45f5 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "H011um5zj6afHdTI", "filament_id": "QD_0_1_26", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.8 nozzle.json index ec214204fa5..8a2ce25ae49 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "26BECX2hYZ6JNFRq", "filament_id": "QD_0_1_26", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json index ec63d4196e8..d0751aa6de0 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "2AOnWEOsaS2w9Nmr", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json index a25ff375efd..184fcd067ed 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @0.6 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSL99", + "setting_id": "y4aq26TNkKEafwbN", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json index a3f33c3239c..bb19d9a0b93 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @0.8 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSL99", + "setting_id": "1y0tvUmMkDHYmvWC", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.4 nozzle.json index bb9bd79de0d..6a9b8b61f29 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "n4ywS2KDL59hb8nA", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.6 nozzle.json index 269179bff63..2c556b42d6c 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AZB82l14yp3vT5sz", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.8 nozzle.json index acee4aee924..825fc4d3bdc 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0ZZ9ygXQqnKrrWlL", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.4 nozzle.json index 0024edc29b5..ec46dd83ff5 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gfnllytSwMCbiB6b", "filament_id": "QD_0_1_6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.6 nozzle.json index a6d144559c2..1e7359636cb 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PLrMThf2TXZGtp7N", "filament_id": "QD_0_1_6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.8 nozzle.json index aa445d3fc53..f184003ac0c 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ErWlv0gKexLj8wjB", "filament_id": "QD_0_1_6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido.json index 5391854b32e..b80cb7bbe8f 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "NANyXYa8NOQ45Gy2", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi Q1 Pro 0.4 nozzle.json index 94c71fb7a0a..1002faa6567 100644 --- a/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi ASA-Aero @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi ASA-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OVQGLLS3QOoDEPNp", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi X-Plus 4 0.4 nozzle.json index 14547a72379..e70b832791b 100644 --- a/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi ASA-Aero @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi ASA-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FKWhpunDSV0iusbz", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi ASA-Aero.json b/resources/profiles/Qidi/filament/Qidi ASA-Aero.json index 10aa9751887..72e771f0834 100644 --- a/resources/profiles/Qidi/filament/Qidi ASA-Aero.json +++ b/resources/profiles/Qidi/filament/Qidi ASA-Aero.json @@ -3,7 +3,7 @@ "name": "Qidi ASA-Aero", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xTg8UPJXoXdyGccz", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.2 nozzle.json index f90e6e2c4cf..2e6b6d9089f 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BNOS859dmAw7GIZp", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json index ba047bbab7a..11fb8e0fad9 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XfuwzYZzTauK0ADk", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.6 nozzle.json index 6acb0f934a4..05b680a74a3 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ziWmRGMYOpjc7Hpo", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.8 nozzle.json index e6337ca70a2..b9e1f232321 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lLXYczQE4YfPiyDO", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Max 3 0.2 nozzle.json index 3639ae3f999..576f73e044e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o62pcRmFnj2mIXhf", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 3 0.2 nozzle.json index e2fa37fd73d..10d886d12ef 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UBWjZCCGQrpgmlpa", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.2 nozzle.json index 445a500bc46..7bb68abc197 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qB4eDc7UuoKv5m2U", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json index b4e9c92f41b..6da9142823e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N3Ca9PN8nDnvhmak", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.6 nozzle.json index 0760135c0f4..d499ccf4905 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UkNcVB3bJZqLN3fu", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.8 nozzle.json index 8a77eca9993..0c76ed7e666 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uK0zY0a6MpcFTZWr", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Smart 3 0.2 nozzle.json index 518d4557cb9..06b75195a87 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "veNBpzcNYa6TAMry", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS.json b/resources/profiles/Qidi/filament/Qidi Generic ABS.json index 2e8eef78aff..31a71e8698b 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wcv9ZpNwvZ0ZcWKw", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.2 nozzle.json index dcb8053763c..7e1c6c50f4e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OLkg128vxsk27w03", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.4 nozzle.json index 2844defe242..4e79e3b9d4b 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pGOT3C5eREsHRylS", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.6 nozzle.json index 87b872a0177..95c9fa660cb 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QRlzPtO4mqLKcdws", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.8 nozzle.json index ecc72af9982..81a1153f11d 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vLLCDxhI2GR76M1p", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Max 3 0.2 nozzle.json index 54bc085367f..f68bcca3f07 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6pY4I5kAFdSYPOte", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 3 0.2 nozzle.json index d42f392ee5e..4b2cbc742d9 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "A85OmyjS63OgZa0V", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.2 nozzle.json index 2f3f7288f30..e070398a5e5 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1CBWjstSdMJLJWuv", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.4 nozzle.json index 0d04f73ccf2..28a74dadb1a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UIsup1TGWKg0Fq72", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.6 nozzle.json index a2680f0a6bf..422c63c216a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HQupWXd5yKceVrm4", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.8 nozzle.json index b34f6eec9c6..e24a3519bf2 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "R6FcpVRhnSp0i8bK", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Smart 3 0.2 nozzle.json index fda09bfb827..2f3fa6a9d8a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sE2DGjOmcjRuuh0z", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA.json b/resources/profiles/Qidi/filament/Qidi Generic ASA.json index cf0f7bb83e3..9f5ea3921b0 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WTOEo36YTIFcXDaI", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json b/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json index f1e12d9aba1..09df2572a39 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "aOVEazsct9L3eD2u", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PA.json b/resources/profiles/Qidi/filament/Qidi Generic PA.json index 704722ab43e..cfbca393981 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PA.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN98", + "setting_id": "S6S5nM9zZbNCyhya", "filament_id": "GFN99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json index 8bffa7efa9d..dd155a633ec 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @0.2 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "i4Nt0riiDwptxOIe", "filament_id": "GFC99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json index a9fd4853d5f..f11b7b87370 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @0.8 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "8mJysYABmQTBlWLw", "filament_id": "GFC99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.2 nozzle.json index 3993632f5fd..1e6313bc34c 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "be2KpgVjm4APQtrt", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.4 nozzle.json index eb0bc76c205..0aee03bd654 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "9aGpKzNCjXDcfmqr", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.6 nozzle.json index f0e2993ec50..5b348523abe 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "1BjBpSDoLs6nTHeo", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.8 nozzle.json index 5e9ea42fc4d..a5513236649 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "8ptIGtXeMSwVqkVB", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.2 nozzle.json index 6157e1221f2..8dcb9f5e4e2 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "IQCYG5yZFPsvTuHY", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.4 nozzle.json index e47d484a20a..297315300a7 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "TPbG7zlsPowdKEVw", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.6 nozzle.json index d742f4ff82c..32c4f84112d 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "mzsetSq0CzwqbGnP", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.8 nozzle.json index c3a13fdb7fd..e3b4be943f1 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "wlnm88gEKcNzvx7W", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC.json b/resources/profiles/Qidi/filament/Qidi Generic PC.json index 1afb655c647..8707544feff 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSC99", + "setting_id": "wd4PrqXE2um46ueW", "filament_id": "GFC99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.2 nozzle.json index 52d57fad79e..f40180cc1f4 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "GfDMSO3DjLxfMnUc", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json index a4a2a337b53..6d920bb9820 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SzQLWO8poDxEU0ez", "filament_id": "GFB99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.6 nozzle.json index 8772ffd70c8..70b8be014e0 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "yyfoSMlQsvkmUGR5", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.8 nozzle.json index 9653316aa6e..69c74caccbe 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "ogHITGUcn1r2bHXc", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Max 3 0.2 nozzle.json index 844a8d8f677..1a55f382801 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "CVyv3PHeZaSGmD6E", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 3 0.2 nozzle.json index 532e0a5f2fb..e820fe24b2f 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "tNl6q6MadSoFZ3EH", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.2 nozzle.json index 59e30b87871..289b97e7e8a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "1xGw8fYiSf6YzBnk", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json index b281abf95cd..3f3fdb2dae8 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MMSCic1l0b3e5qe3", "filament_id": "GFB99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.6 nozzle.json index 61972465d10..403177c5d77 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "KD0ABMKuQunww07p", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json index d4cd1df6acc..adaf03f5de4 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "ZFkH9oLkRWDVovLu", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Smart 3 0.2 nozzle.json index ccd4db5d760..2afbdbde974 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "ixR5wIrehSmn8Inz", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json b/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json index 8aad0906df4..122ddcd44af 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG-CF", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG50", + "setting_id": "kjmXKWCMonhYhy8U", "filament_id": "GFG98", "instantiation": "true", "temperature_vitrification": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG.json b/resources/profiles/Qidi/filament/Qidi Generic PETG.json index 69c747f5783..11ade0545fe 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "Yk3w834THlnAS3jr", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.2 nozzle.json index 4e98f68cd13..2492a8ea781 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "6e0DHBzRkQvU0419", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json index 528acc7d950..4569902a190 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eCR3lbTRdkYcMZgl", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.6 nozzle.json index 42b9441efa2..7aa69c184d3 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "JSQupeTNYtzE8l6q", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.8 nozzle.json index f1d4bdd96ea..017b42a7815 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "n4rp1Pooux07hwx1", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.2 nozzle.json index ad4582d04cb..46523499eef 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "P57Nm7E7KTnHMov0", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.6 nozzle.json index 8bfc571a4f4..b10017757b9 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Max 3 0.6 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "DWfVtYimjZxqyDzM", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.8 nozzle.json index 11be4f51b22..e8d63727213 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Max 3 0.8 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "ausfQ4SuKLMuruFb", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.2 nozzle.json index 2b32f6bb462..b1b1b2e9e9b 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "JJmzlY5XOz9eGO8n", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.6 nozzle.json index b8f4619b751..6cd43b32465 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 3 0.6 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "EpYu1ME5tSsFYirK", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.8 nozzle.json index 01809a2ee53..ce7016ad715 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 3 0.8 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "wZ8U1Ga1bQXbd2nN", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle.json index 3fa48600ec3..b9c1fc36d17 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "M0JCDyI7icGyqs43", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json index 80b9f03d037..922bef83ebd 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tRztgu06hBi9IxSE", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle.json index e3acd2e08ad..7c9a86cdde7 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "8XzQCGoYi01mIjNY", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle.json index 79692664a5b..4bb1e59e0bc 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "hkeictJYR1KDX7kB", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.2 nozzle.json index 4e29f4d5f57..f6131e0ca7c 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "4YnRWwYLWMODUHXq", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.6 nozzle.json index cf7b642dd72..2289deef1eb 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Smart 3 0.6 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "bKi57zeQX7mAw7kl", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.8 nozzle.json index a25376ce5aa..15336f706aa 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Smart 3 0.8 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "lscOLQTFf4Y3Ax1f", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.2 nozzle.json index 3682c1acd91..a27251d78ab 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA High Speed @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle", "from": "system", - "setting_id": "GFSL99", + "setting_id": "HaE0HFgjT8wysrVT", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.4 nozzle.json index dc4d73eb0e8..2f0e4b53b12 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA High Speed @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle", "from": "system", - "setting_id": "GFSL99", + "setting_id": "vxXEJP3C4k5Zjvsx", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.6 nozzle.json index 0c561bd8824..866b9b97073 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA High Speed @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle", "from": "system", - "setting_id": "GFSL99", + "setting_id": "VqVyXnU77CZCKsNy", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.8 nozzle.json index 487629837a3..47ac6107434 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA High Speed @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle", "from": "system", - "setting_id": "GFSL99", + "setting_id": "0504CZkoYLx6NMI0", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json index 4a47dec8b96..08b2fd475b2 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic PLA Silk", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "lRRlOS4Xd1pGLIEq", "filament_id": "GFA05", "instantiation": "true", "enable_pressure_advance": "1", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json index 23fde5367cc..0c9b1b3d15f 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PLA Silk", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "DaBZGfcdheWjNdgr", "filament_id": "GFA05", "instantiation": "true", "enable_pressure_advance": "1", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json index eba040f9a8f..daabd5f8c9d 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA Silk", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "OATeG6kIIRyViXbn", "filament_id": "GFA05", "instantiation": "true", "enable_pressure_advance": "1", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.2 nozzle.json index 6756c4e0e6c..4ea48e5379b 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "dmKDk6Yb4zQFCWIe", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json index ae35d6daf29..d7be267e763 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vwFHzxD2MrRieUIw", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.6 nozzle.json index 0bfeb48bd6a..9884783666e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "wlXNWvECV8ylNVFF", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.8 nozzle.json index 44583fd72e4..751e8592019 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "gR4NZ8mgTNVxxjhh", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.2 nozzle.json index c4f52b5402d..3ceedcf5da1 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "wCdBhg6B4tQZw7dp", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.6 nozzle.json index 58815200651..865f18fe1df 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Max 3 0.6 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "7Bxn8OUT1MJbNvxC", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.8 nozzle.json index 0a6e262878e..320e1a5e379 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Max 3 0.8 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "miQxMqjI3odS4V1O", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.2 nozzle.json index ae7f149e281..96d49de8627 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "WwUGv09h9thWkzMf", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.6 nozzle.json index e70e9e33a7e..5942ed4406b 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 3 0.6 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "oAIJyTMV5EnXTJDF", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.8 nozzle.json index 35188d5def5..62529fb34e8 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 3 0.8 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Ya2viE6yXmdshs75", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.2 nozzle.json index 1935f16bf41..88086dd8e54 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "XUhGdonOGCUI34EH", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json index 1920d2e25db..7ed74cb2d58 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yvokLiCctDUmcDCR", "filament_id": "GFB99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.6 nozzle.json index b791b6284fc..225c8203c75 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "gZxafcPwX1hqI7Dm", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.8 nozzle.json index e946f31714c..662d6b70e9b 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "j6fJ7L02mVcZ01fO", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.2 nozzle.json index 3118cd54ef4..85de90bcfcf 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "KTkq14RsduGBSdMZ", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.6 nozzle.json index d9684f7fdd0..6d7b0c81e91 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Smart 3 0.6 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "xiomvJqo2HAwsxT0", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.8 nozzle.json index b28abe56b7a..d81651533a3 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Smart 3 0.8 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "3SemJWSvKeN7OXVy", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+.json index 4df73c84d09..4d2a6d490dd 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "LNjBixpjLg5i8P1d", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json b/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json index e68b66533b1..347dbea2205 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL98", + "setting_id": "bJKgxsU0tR1NDtoN", "filament_id": "GFL98", "instantiation": "true", "required_nozzle_HRC": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA.json b/resources/profiles/Qidi/filament/Qidi Generic PLA.json index e722d672681..51b1b0e4c82 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "tmrmjsN8vDKGlNpX", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PVA.json b/resources/profiles/Qidi/filament/Qidi Generic PVA.json index 565e4b130f8..72fb04eeff3 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PVA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PVA.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSS99", + "setting_id": "8450opPMJm6GG5Cq", "filament_id": "GFS99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json index adba8650c1a..15423913f86 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic TPU 95A", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0gGSrFIulk4gPLSp", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json index 149109cf501..f83e24e1474 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic TPU 95A", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5fkE2aGkghsMdZ1W", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json index 8a32bdf4488..3856665525f 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU 95A", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSR99", + "setting_id": "JWZrlYnOOlGpTEg6", "filament_id": "GFU99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi Q1 Pro 0.4 nozzle.json index 51ce049da85..ff81ed67436 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "s0MMbJlTt9Cbh8FQ", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi X-Plus 4 0.4 nozzle.json index 200c56837aa..4e9f07c0c52 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KqdGTkLW1x7oZpvj", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU.json b/resources/profiles/Qidi/filament/Qidi Generic TPU.json index 418f5bf2698..99091f6e70b 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSR99", + "setting_id": "qvJXA6V5mxiOguUj", "filament_id": "GFU99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json index afc761e382c..072f445d572 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0J1PKDesfiwmiXT3", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json index fba287b596e..02776d5d004 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CYzutFjZzD3tLXwM", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json index 6ebbcca7d77..60a8329be24 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YJvwrEo0BwfXMOqo", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json index 32c5a64cc58..6116b161494 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WZuAmHHfdACv1F6k", "filament_id": "QD_0_1_34", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json index 80888e6bd54..859df30d32d 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JCCjjewJVs13S08j", "filament_id": "QD_0_1_34", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json index f0116a1390c..63911a15675 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lWfYhsmJo1Q8FmM8", "filament_id": "QD_0_1_34", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json index 52b62c84d85..e247cc7bd1e 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0pBt0usHW6MGQZXl", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi PLA-CF.json b/resources/profiles/Qidi/filament/Qidi PLA-CF.json index 0efe8af2fba..6b8a3e88995 100644 --- a/resources/profiles/Qidi/filament/Qidi PLA-CF.json +++ b/resources/profiles/Qidi/filament/Qidi PLA-CF.json @@ -3,7 +3,7 @@ "name": "Qidi PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL98", + "setting_id": "oqzsRA4OuCqTWPGM", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.4 nozzle.json index 68c4cc0582c..aa18a6f5e70 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi TPU 95A-HF @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi TPU 95A-HF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zqfVVsyY5ZMsfqjK", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.8 nozzle.json index ac28036e5a8..7679296a7b7 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi TPU 95A-HF @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi TPU 95A-HF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fZISb4jbF8jv60dL", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.4 nozzle.json index ed4d743f3d1..469f1909538 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi TPU 95A-HF @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi TPU 95A-HF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MQ5o43Gclt9U65x6", "filament_id": "QD_0_1_50", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.8 nozzle.json index 47dc6006f24..e56f67abf24 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi TPU 95A-HF @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi TPU 95A-HF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wNxGljiKmTzCPgzk", "filament_id": "QD_0_1_50", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json index 7cf7f7129c8..8beacd464c2 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json @@ -3,7 +3,7 @@ "name": "Qidi TPU 95A-HF", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSR99", + "setting_id": "QCS6zw9BRMWWvrCo", "filament_id": "GFU99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json b/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json index f3436e2cdf6..4e4424936f1 100644 --- a/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json +++ b/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json @@ -3,7 +3,7 @@ "name": "Tinmorry PETG-ECO", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "uVa250OrqClMz41k", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json index 20c92167bec..79b53cd63d6 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "ObaWhyOT9RNUMdI6", "name": "Bambu ABS @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json index 3f119088e20..2fda0a076ec 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "83TZ1o0skCCYg62Y", "name": "Bambu ABS @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json index 9deeb5efade..4df827d40d2 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "e4v59EmfFFUmBihO", "name": "Bambu ABS @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json index d5c3a63eff6..ec0679bd489 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "3AQsEBmdQQWNiIO4", "name": "Bambu ABS @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json index a79d23354aa..12f403b5dd6 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "Bambu ABS@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json index dc61177688d..8a562059563 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "9TNhIV7wgatcYh1N", "name": "Bambu PETG @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json index e1be9cf6967..4eb8ad86585 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "nVBMZmiIghleaUTP", "name": "Bambu PETG @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json index 056a25d230e..f8755d705bc 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "uUNbXyfDOU57SVNN", "name": "Bambu PETG @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json index 17a30f6bc03..40d20530872 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "hrxYuEAVW4fZYJmK", "name": "Bambu PETG @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json index 115ad36b101..540ec2a828d 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", "name": "Bambu PETG@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json index dbc41bf2201..fb4cff4b0d9 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "96Jkldwh5ncSfFDu", "name": "Bambu PLA @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json index 05ffc94d5d0..459a2004feb 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "aU8ZGs9t4nFOU6gO", "name": "Bambu PLA @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json index 13a1c1511d8..b2ac2772a59 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "NGrzUVbjJYUmUH8b", "name": "Bambu PLA @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json index 1bd142da073..140e2df96c2 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "HoqzQQGC1YAYrE0K", "name": "Bambu PLA @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json index 2782cecae11..c6f987b072c 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Bambu PLA@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json index 168458f94f4..fba3225f6c3 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "FZbHj2p2roIxznOM", "name": "Generic ABS @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json index fef8ab7fe85..ff87f48a23f 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "ysDcErFoFj9ed7bU", "name": "Generic ABS @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json index 93cb5d4ef4f..47f97d0f8c0 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "qLHOUz2Ygnup2DQB", "name": "Generic ABS @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json index 54bcb4f5991..dedf402f34e 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "tnWPrR1DH65ueDeo", "name": "Generic ABS @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json index 8400b8a49b7..35acd35fd0e 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_0_11", - "setting_id": "GFSA04", "name": "Generic ABS@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json index aeac1b440e3..fb4099671dc 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "0jPfHsrKufenRV54", "name": "Generic PC @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json index f32c1ef59d7..0ddf9878bcd 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "SL8yGVK6yyh7Ce0P", "name": "Generic PC @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json index a19ebdb8009..555e4f994b3 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "KNMYMJ4gcwLaJrXB", "name": "Generic PC @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json index c7e34bee05f..25a87d7047c 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "7YEkA5j3W20o8tTN", "name": "Generic PC @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json index 788bef8b7c1..79b5ad6df75 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_0_23", - "setting_id": "GFSA04", "name": "Generic PC@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json index f5474826011..54be6195d1f 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "yEnyAQ47lfdqYm0q", "name": "Generic PETG @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json index 460fb27535d..f953534dfbc 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "XCv5iF6yKlQSg53I", "name": "Generic PETG @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json index 0d8ed79afa6..f99ba18992e 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "vMG4ik94FbjX2HGU", "name": "Generic PETG @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json index 38ed186eba8..7d48cb368a1 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "lHOyUewbi7eXOiX2", "name": "Generic PETG @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json index a1dbc45ae8b..95729f6f269 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_0_41", - "setting_id": "GFSG99", "name": "Generic PETG@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json index e950b7b0418..5d86c316e86 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "VHIjYrFQCcCuLx3y", "name": "Generic PLA @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json index 4340fa25a17..da6649ec098 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "yE9wOy1UAO2mMq9b", "name": "Generic PLA @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json index b9ffd93bbc9..edcdc800da5 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "q4GoIMWFilTiYsxq", "name": "Generic PLA @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json index e0b1c99e9f3..3d68584be98 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "K7Rs9SipNTYpW0NV", "name": "Generic PLA @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json index 19b0f0f1e85..61bf876a2fe 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_0_1", - "setting_id": "GFSL99", "name": "Generic PLA@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json index f9325d1cb43..7fd5d8f4c86 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99_01", + "setting_id": "H5WaVHBEGGXCBNCG", "name": "Generic PLA Silk @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json index 58d14c272c0..4c44f7e405a 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99_01", + "setting_id": "U9QBvAi10Oy73olq", "name": "Generic PLA Silk @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json index 4a58091d1fa..d09639f39c0 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_0_4", - "setting_id": "GFSL99_01", "name": "Generic PLA Silk@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json index 911a94fdeba..b3c59516347 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "5zmqHwM0HFBxi2xH", "name": "Generic PLA+ @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json index d626a05e618..2fee85c05a2 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "G43aOOmnvhwXsZ3L", "name": "Generic PLA+ @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json index 2e4664e2e5b..013e9d99b47 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "x2KsG7GA8CRgmngd", "name": "Generic PLA+ @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json index 7c84dd470ac..d8b298f5b3d 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "p0gZGSbqtHedXLe4", "name": "Generic PLA+ @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json index bec539f6e8a..9f552d2055f 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Generic PLA+@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json index cc7ab98b416..2ad8273d99f 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "qBceIx6IKWOfED8g", "name": "Generic TPU 95A @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json index 45f053228e9..04799caeb04 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "Uh1TenQIQNw4u4JD", "name": "Generic TPU 95A @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json index 9a468fa5e6e..c0093ad6344 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "pkkTq8YNVI54H3nT", "name": "Generic TPU 95A @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json index 64ecd452831..1fa872badd9 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_0_50", - "setting_id": "GFSR99", "name": "Generic TPU 95A@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json index 5e89e28990a..d364f209741 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "oEc7qBp8hGIUKMhs", "name": "HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json index b98edfa4263..f89eeeee9e1 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "pkguUnnJl8nPCxfU", "name": "HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json index d3f8ef830ec..853aa2a5d16 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "FMrsa95wzL2qFuLP", "name": "HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json index 7cc35c9a5f7..323a0ddcfe0 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "JR1t0jGog7DCHEzN", "name": "HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json index 115d692f511..35434f69c7d 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "HATCHBOX ABS@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json index 386d5164c6f..5349842e9fa 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "sGRdg0IX4MrMGWpj", "name": "HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json index e2eeba025a3..feb59955cd7 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "WDKsFE4N46eYgxds", "name": "HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json index ac76a9fe41c..c28b55a7bdf 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "U3ssAv86SBQsTGzv", "name": "HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json index ca42d9a3d2b..af1affe66db 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "Y5FdpTxdj2CmzU7R", "name": "HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json index 0756031a438..4cf0e985040 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", "name": "HATCHBOX PETG@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json index a634cd78041..b9379ed924c 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "O435vUq8oUXZh0L5", "name": "HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json index 1aaa05ef46e..15174b1dedf 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "kjoWs9L40bAEED57", "name": "HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json index 0042b033b80..d1cdc13052c 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "d9Zcvd5g3fN8TZw9", "name": "HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json index ac9fb230f21..f082447bd7e 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "15ojXVF9I50YBsnG", "name": "HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json index 5c9036e7b81..42a8ad8af95 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "HATCHBOX PLA@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json index 15336bcda75..d39feec3f66 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "GCuVY57NORejEknS", "name": "Overture ABS @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json index 3efa1d44439..4296fbbeb52 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "wmt9ksAtegWWht1z", "name": "Overture ABS @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json index 3cee4ce1a98..b990151e565 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "jDN2TUgHD6iLIZ7D", "name": "Overture ABS @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json index 42d99f26c5a..8c0a9c172c3 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "2EkhezFbXvWIoAZL", "name": "Overture ABS @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json index 426574efe98..a3a689a2ede 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "Overture ABS@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json index c6c80785a8e..2021327b82d 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "fviMGr9MBOAvKSMl", "name": "Overture PLA @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json index 08c0c5e37a9..e60ee9fbdd9 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "3QdWBhSArEkFau2X", "name": "Overture PLA @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json index 409d3ca390d..e830d41b28d 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "38fBe2sB0HgNFCoW", "name": "Overture PLA @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json index c8aa8c0b804..638efeb7877 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "CRiRufyTStiGQonN", "name": "Overture PLA @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json index 87057063c8d..513a5b3ca10 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Overture PLA@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json index e3c168d3772..30de0350425 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "0tZA7mEPnBAdWefh", "name": "PolyLite ABS @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json index 2d417cd0d22..26828e39c28 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "CVP2UVOtfgJoI2NW", "name": "PolyLite ABS @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json index 0dfdc9a5df0..ea4bfcfaf4f 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "cO252ch3uc4X0sUb", "name": "PolyLite ABS @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json index 25a14f9718d..018c41ea29e 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "wADGmAQqZes67Lqy", "name": "PolyLite ABS @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json index 770c75cb692..371d89eacc0 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "PolyLite ABS@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json index a883dfde1f5..ded9914cc7e 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "ka8gZuf48AuqSkSU", "name": "PolyLite PLA @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json index 6e4e932f345..28e74e39230 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "lW8UIaUPIj0pljBX", "name": "PolyLite PLA @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json index cc8f06a7e2d..80158c1852a 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "AvqYCDxCnR3mvEw5", "name": "PolyLite PLA @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json index 03e76ae1af1..2c6d53b0359 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "SCUFdT0Jg2I90rjB", "name": "PolyLite PLA @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json index 4e1f6706d7d..f13ced863cb 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "PolyLite PLA@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json index 73ace6c773a..0b3471f5111 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "P9rZniuGhkyBT4xR", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json index d0d93a36884..88932fd1328 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "w5Cgcs8HAWM0Gmx3", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json index f200833da69..1da14e505ff 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "GXg11Gby0pXOyr5J", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json index a0520f6ed90..83a6cb83b35 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "tOi3ws4LIN7tR2qs", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json index fcf0ee420d5..e329451f0f6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_14", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json index 12c94e96724..162059643e5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "oOA6I3Q7KelWtMFu", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json index d0307d3f0de..af63f14075b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "WvzjNaRg6EkNgzjf", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json index f3b64c9c6a1..7ecdcb828ad 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "6TTHdmjRlvqpH5IG", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json index 830773ad575..951468d2054 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "X2wpQ4ikglynRcLd", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json index ab0755fca14..95bcbdf733e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_11", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json index 7d8a67f467c..d67b0d6e843 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "DgxYozgTj91Hs07I", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json index bd5b0011319..e7f6850e31c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "Ri9lbsfhJ9pWPpm0", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json index adb92769647..265c1bf0fb8 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "cNyXIPAHCyRz9Okg", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json index 439b26250a4..3e0d7dd6a76 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "JIvkxvNlR0MCJrQs", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json index 5da78652af9..5bb429b414c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_13", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json index d2e3d2aa87d..9c03598127b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "7rBwXoSZicndxSxN", "name": "QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json index 00e8cdb0b22..74283eea0a6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "D1xWI85mnQvPbOuZ", "name": "QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json index 7ed4ba82958..aa3d6099b6d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "dcUYtrXA3WEz7Qw7", "name": "QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json index d3de50be230..fb6604a6915 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_12", - "setting_id": "GFSA04", "name": "QIDI ABS-GF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json index 50041ed8b72..0a2cca8395e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "5MVL667eGducTxlJ", "name": "QIDI ASA @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json index da116a9261e..bfb0cdf8474 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "YDuJZ0iqN7SAWpTC", "name": "QIDI ASA @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json index 35a663dcb17..a5253cdaef1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "XpaM6LL4AaIEi5gv", "name": "QIDI ASA @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json index 31eec9155e3..c178f358bf0 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "1OZ3ubOH5ohBw93u", "name": "QIDI ASA @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json index 4f9e8c7476b..dc0e0a267de 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_18", - "setting_id": "GFSA04", "name": "QIDI ASA@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json index 1bf6809ae87..dd37bb5010b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "jco0JlspeZFkBZGm", "name": "QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json index fdaf5d7b26d..e082ad92eac 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_19", - "setting_id": "GFSA04", "name": "QIDI ASA-Aero@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json index f5334c99f07..86f68d4beef 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "5xQW6rGlxlsZ4WhW", "name": "QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json index c7a799694b0..8327f5b9215 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "s5YLcZKFAILv0wjd", "name": "QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json index 2d93e394930..2af4e37ed72 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "8lzlWAr4uET3GYfl", "name": "QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json index 25fd6a35983..42cc1566c87 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_20", - "setting_id": "GFSA04", "name": "QIDI ASA-CF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json index 280b4db8a60..81756a7c903 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "bvcofqyzQpeYVWTm", "name": "QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json index b6bdb682529..72e1e03a40c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "SVtAHcmEht7OlGN8", "name": "QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json index b95e9a99a85..f060ca5d5e2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "bScZQ1EI4JxMsx3C", "name": "QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json index 17020bd0c23..e18c8aea7d8 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_27", - "setting_id": "GFSN99", "name": "QIDI PA12-CF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json index 916ec0c62e8..93797a0128c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "DQcIvG8x4BpZjdQA", "name": "QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json index 5b8972ca5b9..5e605fc9b3d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "XgMFDDBcAUniNXKJ", "name": "QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json index 594f3bc4790..1e78202989a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "BGadPdyFw29nwAsN", "name": "QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json index 74216c25e76..1228b841d3f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_30", - "setting_id": "GFSN99", "name": "QIDI PAHT-CF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json index aaee1568c42..daf1de3feaf 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "EK8Y1A5fxjCeEYUC", "name": "QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json index d7f9fa981c1..a37e607a3a1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "a7EgUbRW0oiTv2h6", "name": "QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json index 5e258bd991c..398f8528c1e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "Awxpatb5e911W0ob", "name": "QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json index e1657049360..ffba1289bda 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_31", - "setting_id": "GFSN99", "name": "QIDI PAHT-GF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json index 49d7ef3d531..6ecad2e89d8 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "EpS2lRAk9UncJ0Qh", "name": "QIDI PC/ABS-FR @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json index 516df0be1d4..98b1d448971 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "Jw5thBn1X17HLO9z", "name": "QIDI PC/ABS-FR @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json index db2702bad39..afb01369581 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "BWOz40OlG1iMj6Vw", "name": "QIDI PC/ABS-FR @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json index d2f1f2a17de..4c1a7a0551d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_34", - "setting_id": "GFSA04", "name": "QIDI PC/ABS-FR@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json index 9b796c6e845..0629d6e5d67 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR98", + "setting_id": "LoUbSrp97ASAWCv0", "name": "QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json index c4a5fa0b68d..9bff8649246 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "i1nFTiljEkCDsFuv", "name": "QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json index 92549cd415f..410c24b52ae 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_36", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json index 8d5e77b997d..05344430420 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "mT9CQnGe7QsIIhSe", "name": "QIDI PET-CF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json index 8734efb1721..f8645a8cb6d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "wnPptldjH9zMQbkt", "name": "QIDI PET-CF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json index 2de3d754b1e..adeea38af5c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "YXvYJNsbPq1I73qT", "name": "QIDI PET-CF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json index daa5d4a2e65..fef1a864bfa 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_37", - "setting_id": "GFSN99", "name": "QIDI PET-CF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json index 32f6d786753..5a8a17b2807 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "C3LQIPedb6PsEmGT", "name": "QIDI PET-GF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json index d7ea6e81460..dabc0baa77b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "KJ4oFQ5v88asP6iA", "name": "QIDI PET-GF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json index c57d593eb40..41ca4745138 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "oJkEJM2H0stUQMK3", "name": "QIDI PET-GF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json index 86ab6342497..a8471b4e8f5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_38", - "setting_id": "GFSN99", "name": "QIDI PET-GF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json index 8e159abc9a0..28d09eefb24 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "WEaXpXvyA5hqq0im", "name": "QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json index f2d9a1132ef..cf48f1bf157 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "wCCu8057Era4CijT", "name": "QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json index edd30b44b82..bcd4fc82ebe 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "qWr1RECkmgLE4twO", "name": "QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json index 1d0f5d7bc71..bfe75162a9b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "5cteLaAFOkUiomwZ", "name": "QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json index 15712e12bef..c143ef6dc1d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_39", - "setting_id": "GFSG99", "name": "QIDI PETG Basic@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json index c5f424ba4fc..eb08dcae9f6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "l8Gi0pl4dIfwZa7q", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json index 4a09d3ab4b9..7a26f9d924e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "OaXBvDWS1KlXsk35", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json index 495eccdd078..a1287461151 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "UWgxbuEi0PR1Bk9x", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json index 9744d0a32a8..3d50a6e8b4c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "ocfw23IsmIIFawjn", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json index 333cb9eee7f..9e605a7b30a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_41", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json index 9f28a069244..dd0aab33626 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "recYp5LV45rKzUq3", "name": "QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json index 6b9fca011f2..caab74c35c6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "IFt5bMViSdnVkDAl", "name": "QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json index 4f743fbbd47..a4ce524ce8c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "7GJvjbWv3gOXoUvj", "name": "QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json index 61ebb7d727e..c6921f4d9c5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "YYal7rkOGoxl5M90", "name": "QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json index a01a6737c71..28514379baf 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_40", - "setting_id": "GFSG99", "name": "QIDI PETG Tough@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json index 93c3bc5ce50..2282637b576 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "xV6r3J8c0VyXevMw", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json index 8ca6adb893b..3dcf8524540 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "eSXGagVI0DLddfoG", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json index 0c6bc9a4356..30a79b60573 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "C9cBAgUo3sugnEaq", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json index 98ee712ccc7..4338b2c24e4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "xG2wymZpv7dQzfVO", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json index b5bfe487d1f..b3f1028714b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_45", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json index c316d6cbfa6..9f5093e3b99 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "TDyJQysBZx5uUrXh", "name": "QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json index 5d781544683..78371efb6aa 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "etqMwbqNIOEghI9H", "name": "QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json index 4dbf07bc5ed..744d0c9bd22 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "V4quEOjLx2qHAENH", "name": "QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json index 0cb5a455b52..2c4d7820603 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_42", - "setting_id": "GFSG99", "name": "QIDI PETG-CF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json index 5dc122c03d9..d8dbbf4d74b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "DfvA2AssIgxg2koP", "name": "QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json index 9ef584fbd10..19f6f0ffd5d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "w2EZhFm9uYLHfoY0", "name": "QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json index 0db22e5a46f..f5b536e7315 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "NpAT6MflDcl3D2rS", "name": "QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json index a486fd2dd0c..7b50dbef69f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_43", - "setting_id": "GFSG99", "name": "QIDI PETG-GF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json index af21513d712..26a930ddd59 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "pddM6YtMN5SKOSMQ", "name": "QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json index 5d77581d09b..95f3534ad29 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "umI102qmWo3VoYi2", "name": "QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json index bb48d4bf11c..d81d83caeb4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "URPeTXoO4r5OBh25", "name": "QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json index ea62b11058e..f9da44a522c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "ZdqynZo83hNZawRl", "name": "QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json index 86281c9d0e9..240ccf69bc2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_7", - "setting_id": "GFSL99", "name": "QIDI PLA Basic@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json index 65b094d3328..7e621e82e87 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "h5G8OJslnFi8fmdc", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json index 071b9ebe860..9081e59adb4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "DgGnTvWpHJFGfJCL", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json index 8903d64309f..788438a7e56 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "SZEGJceJHgMEypjt", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json index 3648fd56255..ab7d7008dce 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "AgUB1GEL5WUGnWsQ", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json index 6747f96cbd3..4b1d114494a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_8", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json index d3101217e53..c7400c45a94 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "0OwEIMl2JDQ83ncL", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json index 37917074b08..36866372348 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "cxfsTjUCjfXJJy7O", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json index 5e880030867..f0f93e48b5f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "EM9t6mc5WT25tSIb", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json index 691d43d6ede..2777e5e808b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "CiU7D3vAVnI4xrwj", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json index 75abd5c197e..a705cce6e52 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_1", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json index dd5ee7b4534..eede4a017e0 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "DhEvGD0RSCSk2d70", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json index 1c9a6bd41bb..28ec114ab3a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "EBkHdd7eIzYaFq4Q", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json index 09fc34f1340..b3396582823 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "hJTZCUqdro9cM0iU", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json index fb0cf2f956e..8ba8df38d62 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "ZlwpCyFIbmdKAFNg", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json index 98f23679320..bcb92786ec2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_2", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json index 63c5b5f5eea..8aeddf082da 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "CKpTA0DVUTXA8qjd", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json index d1164301e4e..4e35fad83e8 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "TJU0fHGhDcWt7GPM", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json index aaef8ae66ee..7832d2936ba 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "JYahu02iwuKpbggG", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json index 91774f233cd..929bb30eed7 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "uhlIGeykRuykDpRI", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json index febec49d935..1a9c7cd235b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_3", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json index d961d155dcb..d4d2acd0a71 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "TKspEfbNEp1WaWQu", "name": "QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json index 7d2dd7d4b73..d330cf2ffaf 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "gwb8oIZXCTsucanO", "name": "QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json index e37ac821166..33e1b4ecc74 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_4", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Silk@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json index 30b9a59ca06..90c7715de02 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL98", + "setting_id": "zIWB6n4Y6KbWWKuf", "name": "QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json index cf67570a51f..d20e595d0f1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL98", + "setting_id": "CbQ9Va3xYMh6UIyM", "name": "QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json index f7d7603bc73..74ad535dfac 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL98", + "setting_id": "YkwsVaruM5PpT62P", "name": "QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json index 9e1010670da..96dc7d3b30c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_5", - "setting_id": "GFSL98", "name": "QIDI PLA-CF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json index ef72f400ab8..098716ece73 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "sVoMm6efHm39fUK1", "name": "QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json index 9f9c3bc6cb6..c6052fda79a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "y8Xv7Pqorh4ZF8Ww", "name": "QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json index bda58401be2..92c2cbd8e8b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "txGnWJtLJxdfF7Ig", "name": "QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json index cee4f7d64b1..f5e31a939eb 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_44", - "setting_id": "GFSN99", "name": "QIDI PPS-CF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json index 9be5e036d00..fa6686616b6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "6R6uV98QWzvGnfdF", "name": "QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json index a7f85ed7b8b..64a21e811e7 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "GRzzsOhAcBUXfeqv", "name": "QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json index bc4261c16b6..03435c9ddd9 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "4C4lvz22vs9gYyoc", "name": "QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json index 6839a69d78c..2fddfed82b7 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_46", - "setting_id": "GFSN99", "name": "QIDI PPS-GF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json index 40308612ab9..26da2f1ff9f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN95", + "setting_id": "5XqtyE2cFilMZ5oq", "name": "QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json index 59685e39a01..fc2fbd2fe9d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN95", + "setting_id": "qHgcoY85C9pOvHYc", "name": "QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json index 408225bc866..29bcaa2d57f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN95", + "setting_id": "8jwLzHbcdONs3hjM", "name": "QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json index 225926ba0b8..2866fb5e5cf 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_32", - "setting_id": "GFSN95", "name": "QIDI Support For PAHT@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json index 4ce23f6fd02..4f8f19afb93 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN96", + "setting_id": "cG5iURd9NCebOAh9", "name": "QIDI Support For PET/PA @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json index 4e25bbee911..9402e7dc55a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN96", + "setting_id": "mm8A9WWVfwTmqaPl", "name": "QIDI Support For PET/PA @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json index 1bd96134c70..38e2b4db477 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN96", + "setting_id": "Z9QN6YE7IWNY5IHb", "name": "QIDI Support For PET/PA @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json index 3f5838e51b4..5014408699f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_33", - "setting_id": "GFSN96", "name": "QIDI Support For PET/PA@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json index 7445ba2daab..0b90ed0b14c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "DMbPx29AcKUuqzsv", "name": "QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json index f254f4f2369..8b75e0f31c1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "NFokjNJ9qsILhMSx", "name": "QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json index 5ac4ca463c8..5a0d31b2cd6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "SE0coLF7Tk072e8V", "name": "QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json index 5b96c207be2..a2efbe6df4c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_50", - "setting_id": "GFSR99", "name": "QIDI TPU 95A-HF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json index 5072fbb5f18..1ab60c94bba 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR98", + "setting_id": "Fkhiu19XGkXfBFY2", "name": "QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json index b9fe006de32..3322222f122 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "ee5KMq5e4UacCHvc", "name": "QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json index 59e8ce4088d..cf37b31de9b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_49", - "setting_id": "GFSR98", "name": "QIDI TPU-Aero@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json index afb39621656..7ddadf0b0d2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "2c4nAo9FUfwdwYkK", "name": "QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json index f038d8a1305..2faa3c9a72d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "NtAR4vgqjQ8xKSME", "name": "QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json index 395b6b68e6c..5c2cd9898bb 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSR99", + "setting_id": "MfXlO4PPSwLn750m", "name": "QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json index 972d21d0608..fcde31942cc 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_15", - "setting_id": "GFSR99", "name": "QIDI TPU-GF@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json index 0d3cf4be32a..879b2b56255 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN98", + "setting_id": "drEdS5phclobkiNO", "name": "QIDI UltraPA @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json index 67038751f5f..eed99a78acf 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN98", + "setting_id": "3XnXQeVV7CjgvnrM", "name": "QIDI UltraPA @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json index 6f3c4949fc7..7269771e1ef 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN98", + "setting_id": "9j84XHFT395HsjDa", "name": "QIDI UltraPA @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json index ba039ce341f..0b0a02f22cb 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_24", - "setting_id": "GFSN98", "name": "QIDI UltraPA@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json index d7d3d02a76f..f65978a6f3c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "vPCQfOT2QXyEpBWg", "name": "QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json index af7a151d88b..65428f606df 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "NWcMSTjsGdH8otAe", "name": "QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json index 6fa041dcf2a..7b3083a4e30 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSN99", + "setting_id": "1KMg11UnJuf06LFh", "name": "QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json index d4ae5142eb2..16903363a98 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_26", - "setting_id": "GFSN99", "name": "QIDI UltraPA-CF25@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json index dbeac869383..b8469f502cf 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "PbuzdsBOxIvSbjXa", "name": "QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json index 2ab6d8dc531..fa1f27bdc3d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "MdLYL9OkYMo0bBue", "name": "QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json index ee1aac3a68e..6e9d7835d07 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "uJnCn3Hls6d5gHQA", "name": "QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json index 6845869182a..e1633ea57d0 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json @@ -1,7 +1,6 @@ { "type": "filament", "filament_id": "QD_3_1_6", - "setting_id": "GFSL99", "name": "QIDI WOOD Rapido@X-Max 4-Series", "from": "system", "instantiation": "false", diff --git a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.2 nozzle.json index 06a6ade6e0e..8b4274e0946 100644 --- a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Q1 Pro 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "wp17yJNXUGPUMl5m", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json index a8ce9a82d6b..a97a66730b4 100644 --- a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q1 Pro 0.4 nozzle", "inherits": "fdm_qidi_x3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "U5MWs9u3tWvrlVwP", "instantiation": "true", "printer_model": "Qidi Q1 Pro", "gcode_flavor": "klipper", diff --git a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.6 nozzle.json index 6b860faa852..3e2e07d54f2 100644 --- a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Q1 Pro 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "hjj0vhFSNDg1t5V4", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.8 nozzle.json index df244cebf69..5dea524660e 100644 --- a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Q1 Pro 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "nC4aLix0qoflGLDK", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Qidi/machine/Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2 0.2 nozzle.json index 6037e6e4f02..48e0fd81094 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2 0.2 nozzle", "inherits": "Qidi Q2 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "xtu7540jmpjIWUjN", "instantiation": "true", "printer_model": "Qidi Q2", "printer_variant": "0.2", diff --git a/resources/profiles/Qidi/machine/Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2 0.4 nozzle.json index 6593d851bb2..6f3115dbd56 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2 0.4 nozzle", "inherits": "fdm_q_common", "from": "system", - "setting_id": "GM001", + "setting_id": "m9SR0PtzYpYRKgSB", "instantiation": "true", "box_id": "1", "printer_model": "Qidi Q2", diff --git a/resources/profiles/Qidi/machine/Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2 0.6 nozzle.json index 5f2ce4b1e32..3962441185f 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2 0.6 nozzle", "inherits": "Qidi Q2 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "FL8T7GqmzobiHQ4N", "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido" diff --git a/resources/profiles/Qidi/machine/Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2 0.8 nozzle.json index c1c7cacbbed..aa479188e9a 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2 0.8 nozzle", "inherits": "Qidi Q2 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "DrFTCJ0UXdEP6Zuo", "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido" diff --git a/resources/profiles/Qidi/machine/Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2C 0.2 nozzle.json index 67d3ae366a7..1c0f863f2ad 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2C 0.2 nozzle", "inherits": "Qidi Q2C 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "2uuRLbBZvLKjlVli", "instantiation": "true", "printer_model": "Qidi Q2C", "printer_variant": "0.2", diff --git a/resources/profiles/Qidi/machine/Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2C 0.4 nozzle.json index 290ca222106..fbf61a6af98 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2C 0.4 nozzle", "inherits": "fdm_q_common", "from": "system", - "setting_id": "GM001", + "setting_id": "xMMjCIf1aSek99az", "instantiation": "true", "box_id": "1", "printer_model": "Qidi Q2C", diff --git a/resources/profiles/Qidi/machine/Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2C 0.6 nozzle.json index 59dfbc7ac28..f1a6bf189e6 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2C 0.6 nozzle", "inherits": "Qidi Q2C 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "ThVecKGDfuhKDwQy", "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido" diff --git a/resources/profiles/Qidi/machine/Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2C 0.8 nozzle.json index 93eb8c7f2d8..1a424d39306 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2C 0.8 nozzle", "inherits": "Qidi Q2C 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "U9m6kWHky7qHk9JL", "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido" diff --git a/resources/profiles/Qidi/machine/Qidi X-CF Pro 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-CF Pro 0.4 nozzle.json index 223c2a4407c..c82db4969e1 100644 --- a/resources/profiles/Qidi/machine/Qidi X-CF Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-CF Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-CF Pro 0.4 nozzle", "inherits": "fdm_qidi_common", "from": "system", - "setting_id": "GM001", + "setting_id": "WPVxrQhAgGqjT11Q", "instantiation": "true", "printer_model": "Qidi X-CF Pro", "default_print_profile": "0.20mm Standard @Qidi XCFPro", diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json index e8329405edb..76577d5f384 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Max 0.4 nozzle", "inherits": "fdm_qidi_common", "from": "system", - "setting_id": "GM001", + "setting_id": "xn5DRJ8PySGduKjg", "instantiation": "true", "printer_model": "Qidi X-Max", "default_print_profile": "0.20mm Standard @Qidi XMax", diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.2 nozzle.json index a0e749b208a..d6b10d422dc 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi X-Max 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "w9xj6SBvIfjutls6", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.4 nozzle.json index bcdc7df69a3..655b4e32c80 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Max 3 0.4 nozzle", "inherits": "fdm_qidi_x3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "6e68LcMl17yl7Ii8", "instantiation": "true", "printer_model": "Qidi X-Max 3", "gcode_flavor": "klipper", diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.6 nozzle.json index f13326c9b42..d0d5ac6e045 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Max 3 0.6 nozzle", "inherits": "Qidi X-Max 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "zminbxV7Q04jQS05", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.8 nozzle.json index 319c195850a..c8042e7e3a3 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Max 3 0.8 nozzle", "inherits": "Qidi X-Max 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "gU4KypJqroWrTbDW", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json index 9850a8e59ee..7b5b19bb50b 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM008", + "setting_id": "QgiXsDkRCjIHtpEa", "name": "Qidi X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json index fe4cad7500f..6c9fac780bf 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json @@ -1,7 +1,7 @@ { "box_id": "3", "type": "machine", - "setting_id": "GM001", + "setting_id": "uzcPSO0U1ZQCXXNN", "name": "Qidi X-Max 4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json index d9c9ecaccbf..0707b7a1a33 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM008", + "setting_id": "Ict0ZAEiGgYeu7AJ", "name": "Qidi X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json index 51a13986a79..2c063d9fc91 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM008", + "setting_id": "pJbz2SGfvEar8cGh", "name": "Qidi X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json index b0c4ab2c214..ed7f0c24a16 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 0.4 nozzle", "inherits": "fdm_qidi_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PNGBV9xF2DA17fi9", "instantiation": "true", "printer_model": "Qidi X-Plus", "default_print_profile": "0.20mm Standard @Qidi XPlus", diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.2 nozzle.json index 6c35a2be841..382cd364fdf 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi X-Plus 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "yJLmYnXCZesnYsUq", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.4 nozzle.json index 48bf153e6d8..03159944f0f 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 3 0.4 nozzle", "inherits": "fdm_qidi_x3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "qupFKHV83yltlRMj", "instantiation": "true", "printer_model": "Qidi X-Plus 3", "gcode_flavor": "klipper", diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.6 nozzle.json index 5bcd3c2b329..5af64f99344 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 3 0.6 nozzle", "inherits": "Qidi X-Plus 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "vGNyS2kkmz1MEAGt", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.8 nozzle.json index 2a287ae3750..43aa1a2a2b9 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 3 0.8 nozzle", "inherits": "Qidi X-Plus 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "ctAgR8JLuCNonuS0", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.2 nozzle.json index 65295fb21ab..b16849ea806 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi X-Plus 4 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "4w9IlgEciz4ITCHN", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.4 nozzle.json index 1773bf68e3a..c4e758a4516 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 4 0.4 nozzle", "inherits": "fdm_qidi_x3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "74ARpc1l6Vh7OYij", "instantiation": "true", "printer_model": "Qidi X-Plus 4", "gcode_flavor": "klipper", diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.6 nozzle.json index 1a78d06c631..f33fbeb5dcd 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi X-Plus 4 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "j7rsk7qDSN6EAkX8", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.8 nozzle.json index 87a2563d063..e66c252d0f0 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi X-Plus 4 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "y7578aVMt4H1aVnW", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.2 nozzle.json index f7c42a543f1..bd5d6b5bba2 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi X-Smart 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "y61rAluWLMdxyx7v", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.4 nozzle.json index d70e47b42d1..d224dbf9710 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Smart 3 0.4 nozzle", "inherits": "fdm_qidi_x3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "mS7RmjSwsNzkV6LT", "instantiation": "true", "printer_model": "Qidi X-Smart 3", "gcode_flavor": "klipper", diff --git a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.6 nozzle.json index e50034e64e3..255f4d67db7 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Smart 3 0.6 nozzle", "inherits": "Qidi X-Smart 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "GlQr5TpSBRGEYgp5", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.8 nozzle.json index d1033027fe8..ef62543341b 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Smart 3 0.8 nozzle", "inherits": "Qidi X-Smart 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "GWRUzX26tWoJ5dlM", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q1 Pro 0.2 nozzle.json index fdfaa4bfaec..ceb26e58ead 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi Q1 Pro 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "VyI9dXN8nPd56A8s", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2 0.2 nozzle.json index c5268c02afb..5c35ef03e00 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi Q2 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "SmovT7N61GTtr3uW", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2C 0.2 nozzle.json index 122e86ce1e9..e36b26b6cdd 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi Q2C 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "VR7n9vmGIprNfKnO", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XMax3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XMax3 0.2 nozzle.json index 2c4141f242c..b2e899b5a6e 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XMax3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XMax3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi XMax3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "eY8kXZlD7W4BjSyx", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus3 0.2 nozzle.json index bf37bc358be..80a602b159c 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi XPlus3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "3ZkSsl3zkwcYHQ3z", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus4 0.2 nozzle.json index 4ec0632d308..050ff90dc22 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi XPlus4 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "zWkRrz184BXVRtih", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XSmart3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XSmart3 0.2 nozzle.json index e92b1be4aa3..0538eb1d4df 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XSmart3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XSmart3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi XSmart3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "UqRnMFZdp8Y5pTlU", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json index 242bef4fc13..6043f3b0720 100644 --- a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP025", + "setting_id": "9aEE4QRwpA84OcRn", "name": "0.08mm Extra Fine @X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json index 069fb122bb2..715a3c2772b 100644 --- a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "669lYZL76CKm2XKo", "name": "0.08mm Extra Fine @X-Max 4", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q1 Pro 0.2 nozzle.json index 1b976d5e5bd..67bafe3c23a 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi Q1 Pro 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "wHapyxEK3bmRU3bE", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2 0.2 nozzle.json index 3da461f14c5..4bebf536ff0 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi Q2 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "kOCn8EeGy5wWz3yG", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2C 0.2 nozzle.json index d51e6543183..279002721b0 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi Q2C 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "6d0dGb8V3ss1mpBd", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XMax3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XMax3 0.2 nozzle.json index 583915c6b9f..4b465055baa 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XMax3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XMax3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi XMax3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "L5T0e98ytPDI8cCg", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus3 0.2 nozzle.json index 4a7e8162ab7..4af731ee247 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi XPlus3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "DTEDUVqCaAuWk4Ji", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus4 0.2 nozzle.json index be2e10c6733..ef4dc141a65 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi XPlus4 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "FaI488g48s1TLag2", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XSmart3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XSmart3 0.2 nozzle.json index 579598901bf..c48ee650bc6 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XSmart3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XSmart3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi XSmart3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "dI5YH4wbuDaeeG2q", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q1 Pro 0.2 nozzle.json index 9dfd9cb3504..d2115db8e65 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi Q1 Pro 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "JGdcHQOH8Wfu0dIi", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2 0.2 nozzle.json index 465c6d2cb0e..b2c96c5c6fd 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi Q2 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "IJg7bDEPK77J9gMj", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2C 0.2 nozzle.json index 68946b3d010..a13f7227535 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi Q2C 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "pEbk09LwnOBuDNzw", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XMax3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XMax3 0.2 nozzle.json index 6ddf49b2922..c2b3264ef55 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XMax3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XMax3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi XMax3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "2QtHMFZFhYWo6OHB", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus3 0.2 nozzle.json index 6fa804a64de..beac90a69f2 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi XPlus3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "RjnFaTzedJN9ebW4", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus4 0.2 nozzle.json index 741251c8129..2925bc7b6de 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi XPlus4 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "gUQwgsr0iCET0r8j", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XSmart3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XSmart3 0.2 nozzle.json index 52e9f92486e..932ef6e5878 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XSmart3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XSmart3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi XSmart3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "R3IAf2iEa4OkqlIJ", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json index eeebe263c60..a9221284429 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP007", + "setting_id": "ABeYedxpPRk7Mv4k", "name": "0.10mm Standard @X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json index f763f83e5e5..d455be4044d 100644 --- a/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP026", + "setting_id": "CcdlmUxcXQuw5HGG", "name": "0.12mm Balanced Quality @X-Max 4 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q1 Pro.json index 85d49263eeb..fcafc435ad7 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi Q1 Pro", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "TBlCRTd2wMm7TPvA", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2.json index dcc449dcf54..82d3b35c56b 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi Q2", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "ZeVPKnsvp6XqllNV", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2C.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2C.json index 27f0bab7015..27094ac5761 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi Q2C", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "qo9ZoXKCpbUaCp1w", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json index 856c04af32f..7bafb22f060 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json @@ -3,7 +3,6 @@ "name": "0.12mm Fine @Qidi X3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", "instantiation": "false", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json index aab6b90d00e..993afe48988 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XCFPro", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "iQXhsvqnRSjNDxK1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json index 30f8b1e2d72..897fdb45047 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XMax", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ls6f3OYdkl6qG2i2", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax3.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax3.json index 9cdba458659..f7585d90b67 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XMax3", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "u5bf5vU7uc7kbez0", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json index 2438a546329..ab371384d31 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XPlus", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "4Gy3FqymogmRSeVq", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus3.json index 8ffe084aa3d..f6d510b7f65 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XPlus3", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "6roOwkuwwPHUq4DC", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus4.json index a279d62cf62..5e4f92b30b2 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XPlus4", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "4lB0gsFHO5ptCI9b", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XSmart3.json index 9fe870ab7de..b5f6d7de6fb 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XSmart3", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "GpIwZD9OVYk5sTYx", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json b/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json index 0084fbf27d1..cff83485862 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "LwuGo5RPFaXOdGOP", "name": "0.12mm Fine @X-Max 4", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q1 Pro 0.2 nozzle.json index 63aa0013d47..09bae764bda 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi Q1 Pro 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "OSy7OCG3mULyeT1h", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2 0.2 nozzle.json index e6b16d32c43..4a6308700fe 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi Q2 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "EYyWGulCi3yWgUFW", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2C 0.2 nozzle.json index 4dc6b4fa8bd..81f86a2fc12 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi Q2C 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "EgZaVmXhDmE3Bhfe", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XMax3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XMax3 0.2 nozzle.json index 2c58a795dc5..dfa43133876 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XMax3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XMax3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi XMax3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "CxlV3UafOjSdk3N2", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus3 0.2 nozzle.json index b29ffc5c3f5..5c096ce6b4b 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi XPlus3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "dLaVho8pgyKa0sMN", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus4 0.2 nozzle.json index 98a3a5b8222..85562375b64 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi XPlus4 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "LxzmB4U9M8HJWbF1", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XSmart3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XSmart3 0.2 nozzle.json index 6ddd321938f..eb0421845a2 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XSmart3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XSmart3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi XSmart3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "MfNFXPmS475vvVnJ", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q1 Pro 0.2 nozzle.json index 5e90185efe9..0d5a1ef945a 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi Q1 Pro 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "An9GlUfXRQjDEDju", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2 0.2 nozzle.json index 6ef0f84489d..9936bc26247 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi Q2 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "tEfG0Hv0ZMrrEiY4", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2C 0.2 nozzle.json index 9775e87a997..bdac128d306 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi Q2C 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "3RD9kvNB5bxCa72A", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XMax3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XMax3 0.2 nozzle.json index 72711d45867..80126e883aa 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XMax3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XMax3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi XMax3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "URZtguJUTJLbttZG", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus3 0.2 nozzle.json index a650e063b30..b5c17e8699d 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi XPlus3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "Eji80JJWYpQnRvc0", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus4 0.2 nozzle.json index 25c6e919860..12af9a72e1e 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi XPlus4 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "7Bmj1f4J8Di3ZgFJ", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XSmart3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XSmart3 0.2 nozzle.json index f56ae57f5aa..59584cb9828 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XSmart3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XSmart3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi XSmart3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "65oF4hgVr03zD4wt", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json b/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json index e35a6d0fc5d..7610bd5ca25 100644 --- a/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "AhcbXuW6Py1OlLEz", "name": "0.16mm Balanced Quality @X-Max 4", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q1 Pro.json index 02041a2582a..c5dfec5cfa8 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi Q1 Pro", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "tjUELNlfeeNj2m4o", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2.json index 085ce572b67..bd68715311c 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi Q2", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "DqWxBnPfKbDVm5xk", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2C.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2C.json index 0298437063a..8d175d3d68d 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi Q2C", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "HSsR88yRyghWJ1TH", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json index 1de2e534875..4b5aa16e592 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json @@ -3,7 +3,6 @@ "name": "0.16mm Optimal @Qidi X3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", "instantiation": "false", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json index f48d5ed26fd..3f0504ddb35 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XCFPro", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HLcracgY90tIkYwN", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json index 61070ce4e11..7e058d924d2 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XMax", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "6Be5iq2K9VppN5gE", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax3.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax3.json index e6c480d5dd1..78ae96f1697 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XMax3", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "EYOQSrbzc4s8nVf1", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json index ee81050de7f..7cb52d8cbc8 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XPlus", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "R1lqL3bMvvg6NMgD", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus3.json index 96d9121e799..1ebac67ec5e 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XPlus3", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "yU6LdytjdYq3zLxp", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus4.json index b9c5ab7f203..9608c37cb74 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XPlus4", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "9RfqD5EIb2qDEHwG", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XSmart3.json index 6667c5a3c24..daea6620109 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XSmart3", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "jsi0bTk7zKsHGZ7l", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json b/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json index bfdbdba8d07..a556f237a9c 100644 --- a/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "JpZoDa8jLalawI6Q", "name": "0.16mm Standard @X-Max 4", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json index f76b501cd15..671d097afca 100644 --- a/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP028", + "setting_id": "VRTEmrje8hig7qJc", "name": "0.18mm Balanced Quality @X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q1 Pro 0.6 nozzle.json index 295d6abfba4..9fee7b47721 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi Q1 Pro 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "hCD4Z5xNnglT9ZwO", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2 0.6 nozzle.json index faa1178fb5d..15eff9c4484 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi Q2 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "gaWYHzyVu6g7DthH", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2C 0.6 nozzle.json index 8610039cf50..8cb6ca202a9 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi Q2C 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "WeCeAciTwyvaEZ2i", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XMax3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XMax3 0.6 nozzle.json index 1e83692631c..61e4a737593 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XMax3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XMax3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi XMax3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "rfKLRQIbqmmr9VuY", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus3 0.6 nozzle.json index 3ef69dbf784..ab8a97e60f7 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi XPlus3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "AstTwAhJWB1RNAtD", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus4 0.6 nozzle.json index 6b1a27daab0..6b571d87c72 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi XPlus4 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "nByRfDx5kPDEsxHR", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XSmart3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XSmart3 0.6 nozzle.json index b2457646278..1791268da3a 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XSmart3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XSmart3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi XSmart3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "LZP68vcJ3ior6fu8", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json b/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json index 1bf7a8d7ae0..685d5c157de 100644 --- a/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "oM72sw3mW85qL45A", "name": "0.20mm Balanced Strength @X-Max 4", "from": "system", "inherits": "fdm_process_n_common", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q1 Pro.json index e866275aad2..f54045892d0 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi Q1 Pro", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "GqQo8WvzL7PTNnrE", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2.json index 83ba4866ee9..352980fb04e 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi Q2", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "Q175N1utLZoyzIIQ", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2C.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2C.json index c678eddaed8..cefd2ebce91 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi Q2C", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "SeoFcLaGzOCqGth4", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi X3.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi X3.json index 838c7785fbe..1d64f538149 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi X3.json @@ -3,7 +3,6 @@ "name": "0.20mm Standard @Qidi X3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", "instantiation": "false", "layer_height": "0.2", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json index cae0bca0c08..2866bac399c 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XCFPro", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WqYCTn83Ln11dpYC", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json index 73d92a8aad4..74cc5c814fc 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XMax", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2lJE6tuEIL22NBc2", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax3.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax3.json index e03be2291fe..1acbfc7a28a 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XMax3", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "sIfFEkAzwFYJgKNl", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json index 25d0f427adc..4dd2935975b 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XPlus", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MDu610revkMyZze1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus3.json index 12017df6bac..601b464ce3b 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XPlus3", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "6ynTOo1btrjCKmZs", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus4.json index e665238e963..7c5b4a78f75 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XPlus4", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "kH75l7UIdcAxOOgA", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XSmart3.json index a0a695758e4..d8f2f9d5d96 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XSmart3", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "21X0CiLS1BXhYWMX", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json b/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json index 676e27178ac..8f5969e8a8f 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "2TsaNedKJlTmULOi", "name": "0.20mm Standard @X-Max 4", "from": "system", "inherits": "fdm_process_n_common", diff --git a/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json index a97468dd08f..bf6a7dcd8f4 100644 --- a/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP032", + "setting_id": "kye0mwcHVzDEfide", "name": "0.24mm Balanced Quality @X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json index 14f011a0da7..e1898e9cb88 100644 --- a/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP029", + "setting_id": "FjwVknjxJnYTs3uo", "name": "0.24mm Balanced Strength @X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q1 Pro.json index 8f95753b1d3..368162ecd27 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi Q1 Pro", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "MLP8z9FkcBZAhPwx", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2.json index 29693297b0e..0c7e031daee 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi Q2", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "TlZRosXmpNb1uKfA", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2C.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2C.json index f93a750a338..58bfb81b3c0 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi Q2C", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "41f12jYvpuuNfNDJ", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json index c4319985ced..787113e6c6e 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json @@ -3,7 +3,6 @@ "name": "0.24mm Draft @Qidi X3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", "instantiation": "false", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XMax3.json index 532c24f53fe..7224f0046f9 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi XMax3", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "Et2lexPQDsBSlENk", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus3.json index 1e357604ae3..ee8af3d38fd 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi XPlus3", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "mjVabwzJ6PEHO6ED", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus4.json index f8da8dbba6b..e6a84ed2050 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi XPlus4", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "MzfWh23yUvJtOIQd", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XSmart3.json index 3a21c504b77..d1d86da64b8 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi XSmart3", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "AV4bqi6Ker7yn25c", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.6 nozzle.json index 7270a078104..6b7f99124af 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q1 Pro 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "csR0CenJRS43wpdB", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.8 nozzle.json index d1d569c45aa..7f55f9f2bda 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q1 Pro 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "8z3aXCOy8e3oC3QE", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.6 nozzle.json index d3c0e2b287b..d1fd30b9a93 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q2 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "H478oP0v8bM1t9Q7", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.8 nozzle.json index 915136ff222..0429a509260 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q2 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "N7qQBwcpoAiZReXs", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.6 nozzle.json index bcabe35ae0d..bee7e5e53e3 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q2C 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "alx5Qam4AuBl5DG9", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.8 nozzle.json index a819f0287d5..3ff9d898884 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q2C 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "dYgWEx444tswebB1", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.6 nozzle.json index 3dc2b027d12..a5771441497 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XMax3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "0Mm3kiTwXUFtqqTL", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.8 nozzle.json index 9a8cf033466..baa7992c687 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XMax3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "146sFuMkzi2r8fw0", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.6 nozzle.json index 1b33a5db956..c72510c336c 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XPlus3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "Qga4PB8UZbs0Jc8X", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.8 nozzle.json index 44db9231172..a4570f0f83a 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XPlus3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "gCM4UXwKTScpWbyJ", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.6 nozzle.json index b313c11c8aa..5ca56aa6b7a 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XPlus4 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "Dm5lhbr5ZQj4i9FL", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.8 nozzle.json index 959dd722bf6..8ba8e79cf83 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XPlus4 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "onACg8ns5ye1Hhzo", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.6 nozzle.json index 3ad46687e6a..905d5e0e8e1 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XSmart3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "1TsEJ5RSU3NR5bDA", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.8 nozzle.json index e309211e0ac..f87f6cf2969 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XSmart3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "in5mDmZ6CLNJYDkY", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json b/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json index 83c43af55d5..66650b0aa3c 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "fJge4LaVkm7mmi3g", "name": "0.24mm Standard @X-Max 4", "from": "system", "inherits": "fdm_process_n_common", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json index 752802d6154..c6e0b75c76e 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi Q1 Pro", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "o9SQqZdG3BoviCAx", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json index 1cf2127af95..1aa6974b57e 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi Q2", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QyCGFIxjMVprexDS", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json index 0c12c542e18..7a5d9d09aa2 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi Q2C", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "e0Mbd6kjHG3Tc7Zm", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json index 2a4a1939d71..f29ef5d0371 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XCFPro", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QfqK00Ymn3ss9qtU", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json index 779e51ce5c4..1eca5fc51ba 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XMax", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "YomLQtTbuHeQfrip", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json index 16f0898e67a..529864b8729 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XMax3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "M8F4v1shW7h3QyzC", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json index 35163be7857..a9026d4c86c 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XPlus", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "g73f1lIj9eH0MZjW", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json index 22314df1d64..7767956bb84 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XPlus3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "tAV9akzom1NHWPNJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json index eea82f1af6e..75bf45cef65 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XPlus4", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QvbM5h9XXrvsmdX6", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json index e1cd57fe1eb..4990f0d9f0b 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XSmart3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lag9UwMZ0uLbg6P2", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q1 Pro.json index cf6472d86ea..1261f59a8d2 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi Q1 Pro", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "SW988y6xTwSW831g", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2.json index 0964ac574ce..bcf38a1c04d 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi Q2", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "IRMypwv4rf2Zjcrs", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2C.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2C.json index 97068a080b8..c7baf2750de 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi Q2C", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "DtkwJnXBbuO4SjLE", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json index e455467d5d4..555f8f19d00 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json @@ -3,7 +3,6 @@ "name": "0.28mm Extra Draft @Qidi X3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", "instantiation": "false", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XMax3.json index 08177a08bbd..bf1b2ef2dc1 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi XMax3", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "hqByZ3REsEhyRfwW", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus3.json index c19fab57398..a7af9c56b60 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi XPlus3", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "rSubfL83h5MExIUO", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus4.json index 4f94c6f1f34..d2a14fc70ef 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi XPlus4", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "IxyD9ZcdowyAXi8X", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XSmart3.json index b18e9625efe..b9bc34751fc 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi XSmart3", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "VLb2IzAOIpbM6wuW", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json index abebe5a0951..aa4f96eb586 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi Q1 Pro", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "D5MjSxw3jZYf2Nja", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json index f9371fd9bcf..d9ea812425f 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi Q2", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "xV59wYWbrstGW5c5", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json index b8dd1809077..cc97b6c1b88 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi Q2C", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "96u0HvMr7kqleKBl", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json index 1e9e0b2206d..d5237c4d376 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XCFPro", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gR2HeEDYyNSjL2K7", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json index 186f136f679..a0dba6c233d 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XMax", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UA6RvPAtMfb2ryBL", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json index 70acdbf0260..d4abe3eeb64 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XMax3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QECWa3aznaYRN11W", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json index c7ce549965d..72754c91459 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XPlus", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jjrl5R7LpUXnxA8d", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json index fa9c82940bc..732f5aa1553 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XPlus3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TPJTTWCWFbrVv0bx", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json index ef03cf5818d..9825272cced 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XPlus4", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PypLIvy1do9mp98q", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json index cc645f7de00..4e5d2e235c4 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XSmart3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gzZakw9J3bzbD5D8", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q1 Pro 0.6 nozzle.json index 657bbbfe7c4..eb8d3e72ad5 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi Q1 Pro 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "zquvywFmiOGOI17T", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2 0.6 nozzle.json index bd9ee715678..54ef98e96fe 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi Q2 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "FSHTvNeoKVlPnziL", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2C 0.6 nozzle.json index 5dd12327e28..389540eaa15 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi Q2C 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "b2spm8zaLXU6dgfr", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XMax3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XMax3 0.6 nozzle.json index b43696adb4e..32ce87cee45 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XMax3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XMax3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi XMax3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "fpTfhEAfkYksV8lc", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus3 0.6 nozzle.json index da3e50c178d..ab211ba7d3f 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi XPlus3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "YTP7FTiKvCNeipFr", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus4 0.6 nozzle.json index 1edbff6128f..f975074236e 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi XPlus4 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "GhRs59zOs2E1pzag", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XSmart3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XSmart3 0.6 nozzle.json index 6821bf30d10..afb310ec414 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XSmart3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XSmart3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi XSmart3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "VvE1m2qOpvBdJPCF", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json index 40d4f263c6e..40ae121e1de 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP010", + "setting_id": "TOsqMoGa5GvywEWI", "name": "0.30mm Standard @X-Max 4 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json index b633301ece7..e404cb19ed1 100644 --- a/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP033", + "setting_id": "U4yjBHhJwsHTIDHc", "name": "0.32mm Balanced Strength @X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q1 Pro 0.8 nozzle.json index e1fedb6a521..a96a689c56e 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi Q1 Pro 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "TlseLAEYdLZPwov8", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2 0.8 nozzle.json index 18b41409012..f013efc4c6a 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi Q2 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "ah90wdTj814SHn9P", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2C 0.8 nozzle.json index 7e88f2ffcc9..e04d0315c01 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi Q2C 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "TMAmqLzfSzEP81Bs", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XMax3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XMax3 0.8 nozzle.json index 7ded79cd7fb..130df084229 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XMax3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XMax3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi XMax3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "dx9RAldsGOusV2mF", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus3 0.8 nozzle.json index 46735d3608c..440fb6633c3 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi XPlus3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "YI2UHfwzoQPCBMVY", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus4 0.8 nozzle.json index 65c7e6afe5c..26e6916d478 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi XPlus4 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "NLxo3f8QKWKBCvnm", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XSmart3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XSmart3 0.8 nozzle.json index 4edf7093ef3..429632509f0 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XSmart3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XSmart3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi XSmart3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "ulFw76eRXbwTKdlH", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q1 Pro 0.6 nozzle.json index bb7f42d0e75..bac2c2e1dea 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi Q1 Pro 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "rKEmZfckeM0dvoaT", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2 0.6 nozzle.json index 08d81ac0d07..02ac4f719f0 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi Q2 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "CUY6FJ2v3E4zfJUh", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2C 0.6 nozzle.json index dee6aa32640..b9e785fa402 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi Q2C 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "3KNn8FQt2UXdU72U", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XMax3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XMax3 0.6 nozzle.json index 8b5e11d4ded..8573104a480 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XMax3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XMax3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi XMax3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "9qiHoI8IcQnS7rC3", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus3 0.6 nozzle.json index ce9c7792695..3163012ff0b 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi XPlus3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "qKo2vmYRg6Q2spTN", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus4 0.6 nozzle.json index ae58405ac3c..e15e63783f8 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi XPlus4 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "A5KuXOdX0zNp8dRO", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XSmart3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XSmart3 0.6 nozzle.json index 10fae7d9b02..728c392d5b7 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XSmart3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XSmart3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi XSmart3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "ZaDJ1ztIamvZV5yJ", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q1 Pro 0.8 nozzle.json index e70aa11e3bf..cf3b8725acc 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi Q1 Pro 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "MJWRjYowI85IBd00", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2 0.8 nozzle.json index 6fa20e8bd23..5605e3d6b02 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi Q2 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "cJ7om61RCJGxCy24", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2C 0.8 nozzle.json index 37774a40669..2883581dfa0 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi Q2C 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "CV9g1mNus68OKZc3", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XMax3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XMax3 0.8 nozzle.json index 6c01403a33b..086792a522e 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XMax3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XMax3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi XMax3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "bYMWDwFr9J94kGYw", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus3 0.8 nozzle.json index c019eda98d4..6ee4b61e95f 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi XPlus3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "Ka6m8i4j0e2gDOse", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus4 0.8 nozzle.json index 6270b040076..b7295fb5b36 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi XPlus4 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "uVymBJgWqIqOfd6A", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XSmart3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XSmart3 0.8 nozzle.json index e7b67e6fb6f..7499fe5214b 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XSmart3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XSmart3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi XSmart3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "Riv86lzC8OxN8OfY", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json index 5c88771ffe8..7252d3d8a5a 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP009", + "setting_id": "qT32mSKhstIeb8R2", "name": "0.40mm Standard @X-Max 4 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q1 Pro 0.6 nozzle.json index 2b8b6a68d2f..3908e3a47fc 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi Q1 Pro 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "dj2uawVn2Hpsp2XH", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2 0.6 nozzle.json index fc8a5bb9825..01af4747246 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi Q2 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "1C9tqsJaScQr4ry1", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2C 0.6 nozzle.json index 1925f977542..003c4602a39 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi Q2C 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "MVF9jg2lGipnPD2S", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XMax3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XMax3 0.6 nozzle.json index fe2bd3a4225..761988fc41d 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XMax3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XMax3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi XMax3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "iG7Y0wLegu5jEkuI", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus3 0.6 nozzle.json index 3d9fca35011..a659004253e 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi XPlus3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "jr6cb1mLJQs3MirG", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus4 0.6 nozzle.json index 5f656841a63..be9ebc47380 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi XPlus4 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "pwWTe4QnGQO792jP", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XSmart3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XSmart3 0.6 nozzle.json index c6769277e1b..c242bdbe488 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XSmart3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XSmart3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi XSmart3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "0A780mPAY5fBh6qi", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q1 Pro 0.8 nozzle.json index d2cd0fa8ee1..2283ef8e9df 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi Q1 Pro 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "EtK4hyAHmcleF3wC", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2 0.8 nozzle.json index 4330cde0864..d5c36c1d40b 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi Q2 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "xeZk3fiBagmXMryi", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2C 0.8 nozzle.json index dbda2989d7b..308e0d76907 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi Q2C 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "BEO2NBgrDUkGExg0", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XMax3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XMax3 0.8 nozzle.json index 20000be1d8c..20bde18f84e 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XMax3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XMax3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi XMax3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "NXT7JIAxOtF1zkNJ", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus3 0.8 nozzle.json index 01f55479ec1..4ecbf08e721 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi XPlus3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "rKeC1SaKQ2TEESsE", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus4 0.8 nozzle.json index b4e0b096e99..269e33d9fd9 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi XPlus4 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "0djEc8TnuAUhIFD5", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XSmart3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XSmart3 0.8 nozzle.json index 68e453d3445..72d0e177617 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XSmart3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XSmart3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi XSmart3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "90Hs1AMDGlJJxbTl", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q1 Pro 0.8 nozzle.json index 184a3943d58..0fc92f63ef5 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi Q1 Pro 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "ylEXwLNVsM1wcLLc", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2 0.8 nozzle.json index 49f4a13199f..6f2645f031a 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi Q2 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "KIB3JhygERFQzV6J", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2C 0.8 nozzle.json index e55b71b02db..5e0ff53696c 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi Q2C 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "yoOgRHYtYal4vBl1", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XMax3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XMax3 0.8 nozzle.json index 8246eeb7d9e..b77395d80df 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XMax3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XMax3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi XMax3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "y2YD74ZXEnlo5HBH", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus3 0.8 nozzle.json index 21d92dea681..b4eb582e15b 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi XPlus3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "Pki6rGX3YtiCeaWW", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus4 0.8 nozzle.json index e1597efacb1..4939a360332 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi XPlus4 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "Qe5Adl1Z9ijqbBF5", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XSmart3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XSmart3 0.8 nozzle.json index 2ff39af3b45..fc801e4176b 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XSmart3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XSmart3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi XSmart3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "Um59bZdJjlPWqc1u", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.8 nozzle" diff --git a/resources/profiles/RH3D.json b/resources/profiles/RH3D.json index bb36f17f390..fc8aa574842 100644 --- a/resources/profiles/RH3D.json +++ b/resources/profiles/RH3D.json @@ -1,6 +1,6 @@ { "name": "RH3D", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "RH3D - printer profiles", "machine_model_list": [ diff --git a/resources/profiles/RH3D/filament/Generic ABS @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic ABS @E3NG v1.2S.json index c5be3019928..1c9cf63e437 100644 --- a/resources/profiles/RH3D/filament/Generic ABS @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic ABS @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic ABS @E3NG v1.2S", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "", + "setting_id": "VNx6rdTN7OIIXVpC", "filament_id": "Generic ABS @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/filament/Generic ASA @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic ASA @E3NG v1.2S.json index a1e0f472033..329de9f04d6 100644 --- a/resources/profiles/RH3D/filament/Generic ASA @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic ASA @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic ASA @E3NG v1.2S", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "", + "setting_id": "LK5M8q58HY86k9aX", "filament_id": "Generic ASA @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/filament/Generic PCCF @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic PCCF @E3NG v1.2S.json index 764dcbc56ac..49cff221dd7 100644 --- a/resources/profiles/RH3D/filament/Generic PCCF @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic PCCF @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic PCCF @E3NG v1.2S", "inherits": "fdm_filament_pccf", "from": "system", - "setting_id": "", + "setting_id": "fnnja8VlKHWpuOjG", "filament_id": "Generic PCCF @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/filament/Generic PETG @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic PETG @E3NG v1.2S.json index 1ec0ab6e0b7..6bd5e940fe6 100644 --- a/resources/profiles/RH3D/filament/Generic PETG @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic PETG @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic PETG @E3NG v1.2S", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "", + "setting_id": "IS3z7f5wnjsvv8vC", "filament_id": "Generic PETG @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/filament/Generic PLA @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic PLA @E3NG v1.2S.json index 1a05dd45eb8..86e514521c8 100644 --- a/resources/profiles/RH3D/filament/Generic PLA @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic PLA @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic PLA @E3NG v1.2S", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "", + "setting_id": "b1tuMVA0Hh27wYQH", "filament_id": "Generic PLA @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/filament/Generic TPU @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic TPU @E3NG v1.2S.json index 9d8f4e5806a..7c308efd712 100644 --- a/resources/profiles/RH3D/filament/Generic TPU @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic TPU @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic TPU @E3NG v1.2S", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "", + "setting_id": "kaTatels2H01rgeJ", "filament_id": "Generic TPU @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.2 nozzle.json b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.2 nozzle.json index 1188233e410..cc2c23cfd2d 100644 --- a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.2 nozzle.json +++ b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.2 nozzle.json @@ -4,6 +4,7 @@ "printer_model": "E3NG v1.2S", "inherits": "fdm_common_E3NG v1.2S", "from": "system", + "setting_id": "gPm0noz1896R4GyO", "instantiation": "true", "default_print_profile": "0.10mm Standard @E3NG v1.2S", "nozzle_diameter": [ diff --git a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.3 nozzle.json b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.3 nozzle.json index db7cf06ff7b..7c3e5e837f2 100644 --- a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.3 nozzle.json +++ b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.3 nozzle.json @@ -4,6 +4,7 @@ "printer_model": "E3NG v1.2S", "inherits": "fdm_common_E3NG v1.2S", "from": "system", + "setting_id": "UQ67wIWTbJiUiPoy", "instantiation": "true", "default_print_profile": "0.15mm Standard @E3NG v1.2S", "nozzle_diameter": [ diff --git a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.4 nozzle.json b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.4 nozzle.json index 75ca1cc0245..a0ee4cae854 100644 --- a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.4 nozzle.json +++ b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.4 nozzle.json @@ -4,6 +4,7 @@ "printer_model": "E3NG v1.2S", "inherits": "fdm_common_E3NG v1.2S", "from": "system", + "setting_id": "Ngr03MsSBAkmFnld", "instantiation": "true", "default_print_profile": "0.20mm Standard @E3NG v1.2S", "nozzle_diameter": [ diff --git a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.5 nozzle.json b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.5 nozzle.json index 20fe8ff3217..12131e5f84b 100644 --- a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.5 nozzle.json +++ b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.5 nozzle.json @@ -4,6 +4,7 @@ "printer_model": "E3NG v1.2S", "inherits": "fdm_common_E3NG v1.2S", "from": "system", + "setting_id": "GSUiav9EILSf8XF4", "instantiation": "true", "default_print_profile": "0.20mm Standard @E3NG v1.2S", "nozzle_diameter": [ diff --git a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.6 nozzle.json b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.6 nozzle.json index 79c634b0e2e..c8288a67bf0 100644 --- a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.6 nozzle.json +++ b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.6 nozzle.json @@ -4,6 +4,7 @@ "printer_model": "E3NG v1.2S", "inherits": "fdm_common_E3NG v1.2S", "from": "system", + "setting_id": "jVNTcmQwQIwJMfFd", "instantiation": "true", "default_print_profile": "0.25mm Standard @E3NG v1.2S", "nozzle_diameter": [ diff --git a/resources/profiles/RH3D/process/0.10mm Standard @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.10mm Standard @E3NG v1.2S.json index 1ef660d7bc8..dcaecb6b0ba 100644 --- a/resources/profiles/RH3D/process/0.10mm Standard @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.10mm Standard @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG2010", + "setting_id": "YhKounYUzB4FB9Em", "instantiation": "true", "layer_height": "0.1", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/RH3D/process/0.15mm Standard @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.15mm Standard @E3NG v1.2S.json index f86b5dc6728..deaded91ab9 100644 --- a/resources/profiles/RH3D/process/0.15mm Standard @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.15mm Standard @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG2015", + "setting_id": "jYPd3BedSG1oG6S3", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/RH3D/process/0.20mm Fast @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.20mm Fast @E3NG v1.2S.json index 3ee578666de..bca60006c4a 100644 --- a/resources/profiles/RH3D/process/0.20mm Fast @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.20mm Fast @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.20mm Fast @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG3020", + "setting_id": "S7z7EwSYYbjVWRK0", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/RH3D/process/0.20mm Slow @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.20mm Slow @E3NG v1.2S.json index fff6c6f9173..45be1506701 100644 --- a/resources/profiles/RH3D/process/0.20mm Slow @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.20mm Slow @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.20mm Slow @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG1020", + "setting_id": "JH4jITLGT8tbtnu1", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/RH3D/process/0.20mm Standard @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.20mm Standard @E3NG v1.2S.json index e500e5a5790..92ddcd9109c 100644 --- a/resources/profiles/RH3D/process/0.20mm Standard @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.20mm Standard @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG2020", + "setting_id": "XgaEHNWBsBQoPjbP", "instantiation": "true", "compatible_printers": [ "E3NG v1.2S - 0.3 nozzle", diff --git a/resources/profiles/RH3D/process/0.25mm Fast @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.25mm Fast @E3NG v1.2S.json index 0494e6b3344..bf910f676a9 100644 --- a/resources/profiles/RH3D/process/0.25mm Fast @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.25mm Fast @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.25mm Fast @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG3025", + "setting_id": "QqkHiZPjk3QWyKKN", "instantiation": "true", "layer_height": "0.25", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/RH3D/process/0.25mm Standard @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.25mm Standard @E3NG v1.2S.json index ea583d86e87..5ebe88f3fe5 100644 --- a/resources/profiles/RH3D/process/0.25mm Standard @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.25mm Standard @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG2025", + "setting_id": "2dPD9ljxZ8hknXZu", "instantiation": "true", "layer_height": "0.25", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/Raise3D.json b/resources/profiles/Raise3D.json index 0dcae032afa..b224025f6dc 100644 --- a/resources/profiles/Raise3D.json +++ b/resources/profiles/Raise3D.json @@ -1,7 +1,7 @@ { "name": "Raise3D", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Raise3D configurations", "machine_model_list": [ diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json index e5422620ba0..660abd55d41 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 0.4 nozzle (Dual)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "oY7vk6130jo4CbGr", "instantiation": "true", "printer_model": "Raise3D Pro3", "default_print_profile": "0.20mm Standard @Raise3D Pro3", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json index e4b5f94ea14..433dddfff75 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 0.4 nozzle (Left)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "GkEfeB8achuLpp8c", "instantiation": "true", "printer_model": "Raise3D Pro3", "default_print_profile": "0.20mm Standard @Raise3D Pro3", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json index 4359978cc88..2cbbe2fc496 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 0.4 nozzle (Right)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "t9qyWnYRI4gCffnM", "instantiation": "true", "printer_model": "Raise3D Pro3", "default_print_profile": "0.20mm Standard @Raise3D Pro3", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json index 38d3057a6bb..566911b4c66 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 Plus 0.4 nozzle (Dual)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "EaDsMQaW3zwoD8am", "instantiation": "true", "printer_model": "Raise3D Pro3 Plus", "default_print_profile": "0.20mm Standard @Raise3D Pro3Plus", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json index 30fc384658d..daaef6abdbe 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 Plus 0.4 nozzle (Left)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "os4fCVfJmKYPG02M", "instantiation": "true", "printer_model": "Raise3D Pro3 Plus", "default_print_profile": "0.20mm Standard @Raise3D Pro3Plus", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json index 9fd75dd37bd..1e842a07ae5 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 Plus 0.4 nozzle (Right)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "jYxNL8Vdara9s74e", "instantiation": "true", "printer_model": "Raise3D Pro3 Plus", "default_print_profile": "0.20mm Standard @Raise3D Pro3Plus", diff --git a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json index d872351399d..30d3f1cc611 100644 --- a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json +++ b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @Raise3D Pro3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "mlb2242fJxu26dnV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json index 78c2c45a3a7..35e21d67e7e 100644 --- a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json +++ b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @Raise3D Pro3Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "u9vhB9uigwzA2mli", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json index 4370978fa7f..bdcccf16fbd 100644 --- a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json +++ b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Raise3D Pro3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ADqZgpU4D612lSnf", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json index ca6f4533e6c..7f88195b882 100644 --- a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json +++ b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Raise3D Pro3Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "GhwsrGu8tZexCrOy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json index 8bfb9faa68c..91e24b6ebfc 100644 --- a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json +++ b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Raise3D Pro3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "p0KdJttce5WMx30N", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json index 53cacd33a4a..d2d299ca646 100644 --- a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json +++ b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Raise3D Pro3Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "tgWE9Ph7i1F7OweA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Ratrig.json b/resources/profiles/Ratrig.json index e725cfa5f0e..ce682265135 100644 --- a/resources/profiles/Ratrig.json +++ b/resources/profiles/Ratrig.json @@ -1,6 +1,6 @@ { "name": "RatRig", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "RatRig configurations", "machine_model_list": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle ABS.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle ABS.json index b32b24d08e4..8f601dba61c 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle ABS.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle ABS.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oE39mwr3PCpeBxZN", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle ASA.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle ASA.json index 5a76fd6449c..a99d58ae345 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle ASA.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle ASA.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GGkbwdd79jAXnwuf", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle PCTG.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle PCTG.json index c04d6a9bad5..38db026fe4d 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle PCTG.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle PCTG.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle PCTG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uCKZhFAPvEa2wKnA", "filament_id": "GFC99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle PETG.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle PETG.json index 32669ad1400..e1cf036eced 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle PETG.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle PETG.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bf3YMNVRSE1i1E8N", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle PLA.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle PLA.json index fe1aa92d9a6..d734dce4b74 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle PLA.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle PLA.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dyG3zLuhX2qe8XJP", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle TPU.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle TPU.json index 209267d6be7..11dae068e04 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle TPU.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle TPU.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wLJ3X05Jnz1EqeOI", "filament_id": "GFL99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic ABS.json b/resources/profiles/Ratrig/filament/RatRig Generic ABS.json index b68d945a54b..b55a944e544 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic ABS.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic ABS.json @@ -3,7 +3,7 @@ "name": "RatRig Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ovLAzbygn6JHqGk0", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic ASA.json b/resources/profiles/Ratrig/filament/RatRig Generic ASA.json index a3ccedf3489..5cee3f262c3 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic ASA.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic ASA.json @@ -3,7 +3,7 @@ "name": "RatRig Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pmxazFQdx5Oa7Pke", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PA-CF.json b/resources/profiles/Ratrig/filament/RatRig Generic PA-CF.json index 367ca886e69..31c95abede6 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PA-CF.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZRrsXKPk8pY4yrwd", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PA.json b/resources/profiles/Ratrig/filament/RatRig Generic PA.json index 1f809a9cbe1..52bfb6ea3cd 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PA.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PA.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fVGEV9t4w06LODgD", "filament_id": "GFN99", "instantiation": "true", "nozzle_temperature_initial_layer": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PC.json b/resources/profiles/Ratrig/filament/RatRig Generic PC.json index d75dbe364dc..9f9cab8e386 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PC.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PC.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XQ5VEJXu5X0L3Lbn", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PCTG.json b/resources/profiles/Ratrig/filament/RatRig Generic PCTG.json index d22ccc68553..89031567bf7 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PCTG.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PCTG.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PCTG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFCA04", + "setting_id": "SG4Gt87iS1ql3s8S", "filament_id": "GFC99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PETG.json b/resources/profiles/Ratrig/filament/RatRig Generic PETG.json index a04d8b79d42..e64dfbe2f41 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PETG.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PETG.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u6diBMbHW2nnKKTm", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PLA-CF.json b/resources/profiles/Ratrig/filament/RatRig Generic PLA-CF.json index 9b353cb6c8a..2ce8c792e97 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PLA-CF.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Vwn22LQBChxWysmU", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PLA.json b/resources/profiles/Ratrig/filament/RatRig Generic PLA.json index 33e7bf244b6..91bc503ed82 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PLA.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PLA.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IY6qXVoQqhsKuMzP", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PVA.json b/resources/profiles/Ratrig/filament/RatRig Generic PVA.json index d4cb42f12bb..69fa53a0f5a 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PVA.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PVA.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9uJ3Rr6kn9jZZxPO", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic TPU.json b/resources/profiles/Ratrig/filament/RatRig Generic TPU.json index 06313b38832..3e1594501d7 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic TPU.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic TPU.json @@ -3,7 +3,7 @@ "name": "RatRig Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zWOn983v5s2ujssj", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Ratrig/filament/RatRig PunkFil ABS.json b/resources/profiles/Ratrig/filament/RatRig PunkFil ABS.json index c176c9ecc40..5fa20b82467 100644 --- a/resources/profiles/Ratrig/filament/RatRig PunkFil ABS.json +++ b/resources/profiles/Ratrig/filament/RatRig PunkFil ABS.json @@ -3,7 +3,7 @@ "name": "RatRig PunkFil ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AzjpmeEXD6enWOG6", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig PunkFil PETG CF.json b/resources/profiles/Ratrig/filament/RatRig PunkFil PETG CF.json index 1ec0328c7f9..73a5920ee8c 100644 --- a/resources/profiles/Ratrig/filament/RatRig PunkFil PETG CF.json +++ b/resources/profiles/Ratrig/filament/RatRig PunkFil PETG CF.json @@ -3,7 +3,7 @@ "name": "RatRig PunkFil PETG CF", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o2dP6EwooarikQ8R", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig PunkFil PETG.json b/resources/profiles/Ratrig/filament/RatRig PunkFil PETG.json index 083714acc76..170b1e0c996 100644 --- a/resources/profiles/Ratrig/filament/RatRig PunkFil PETG.json +++ b/resources/profiles/Ratrig/filament/RatRig PunkFil PETG.json @@ -3,7 +3,7 @@ "name": "RatRig PunkFil PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e1QXBJqpkhHxXor1", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Cast 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Cast 0.4 nozzle.json index 2bf9f1d0c87..4b8763e94b1 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Cast 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Cast 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Cast 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM006", + "setting_id": "zw1aJTiQagqE7y8t", "instantiation": "true", "printer_model": "RatRig V-Cast", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Cast 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Cast 0.6 nozzle.json index 185bfac3bc1..d5d949aa23e 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Cast 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Cast 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Cast 0.6 nozzle", "inherits": "RatRig V-Cast 0.4 nozzle", "from": "system", - "setting_id": "GM007", + "setting_id": "fl0b82S0kojy84FO", "instantiation": "true", "printer_model": "RatRig V-Cast", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 3 200 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 3 200 0.4 nozzle.json index c8c2fa70cb9..a78ec926009 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 3 200 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 3 200 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 3 200 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "dRoCwCRQlESZEBHP", "instantiation": "true", "printer_model": "RatRig V-Core 3 200", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 3 300 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 3 300 0.4 nozzle.json index 26c0ef78f26..513e11c40b6 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 3 300 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 3 300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 3 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "afAHM28k1WelCmhS", "instantiation": "true", "printer_model": "RatRig V-Core 3 300", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 3 400 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 3 400 0.4 nozzle.json index 9ede863b9e9..8fd4961f77a 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 3 400 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 3 400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 3 400 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "RlOSy5hWiFV0JBoI", "instantiation": "true", "printer_model": "RatRig V-Core 3 400", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 3 500 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 3 500 0.4 nozzle.json index 03e929b9b17..ea30ded4fe4 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 3 500 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 3 500 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 3 500 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "vEKAbNmYuiN6TIoY", "instantiation": "true", "printer_model": "RatRig V-Core 3 500", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.4 nozzle.json index e906bb727fb..d0582dbb371 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "jZZeImztqtZ2beVR", "instantiation": "true", "printer_model": "RatRig V-Core 4 300", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.5 nozzle.json index ee9eca9348d..5d7eb0f6710 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 300 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "EIMR9Lg3FR2WCYZt", "instantiation": "true", "printer_model": "RatRig V-Core 4 300", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.6 nozzle.json index 3c351f93c19..685e9931377 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 300 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "zAWVjiIWDCpIbfQh", "instantiation": "true", "printer_model": "RatRig V-Core 4 300", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.8 nozzle.json index 910d48227a6..b6ef786ec40 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 300 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "feTeGuFkLzWFFSC4", "instantiation": "true", "printer_model": "RatRig V-Core 4 300", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.4 nozzle.json index c8fab315c21..49b5493614f 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 400 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "Zt57FD6LclrHhmIl", "instantiation": "true", "printer_model": "RatRig V-Core 4 400", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.5 nozzle.json index 695041620be..d0089059003 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 400 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "gVT9DS5ubrpidL8s", "instantiation": "true", "printer_model": "RatRig V-Core 4 400", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.6 nozzle.json index 229d82b7938..c41f2b583d4 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 400 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "oTOJ5ZwBIx5DzSws", "instantiation": "true", "printer_model": "RatRig V-Core 4 400", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.8 nozzle.json index fb810dde7aa..f80890c0998 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 400 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "DQ7Lzsuk87A4qtav", "instantiation": "true", "printer_model": "RatRig V-Core 4 400", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.4 nozzle.json index 09c787aa5f1..21e946fa093 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 500 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "JonAECdElNUFk8kY", "instantiation": "true", "printer_model": "RatRig V-Core 4 500", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.5 nozzle.json index 22cabbbcd1c..f1d3d68e105 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 500 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ojiLFY6VE2q7XFyj", "instantiation": "true", "printer_model": "RatRig V-Core 4 500", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.6 nozzle.json index 28db595bb6b..c46162faaeb 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 500 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "rbcdthpkuZJjegBG", "instantiation": "true", "printer_model": "RatRig V-Core 4 500", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.8 nozzle.json index f33e87b627f..d6d1efa7e6a 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 500 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "VMKIyofeEpPvUvkY", "instantiation": "true", "printer_model": "RatRig V-Core 4 500", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.4 nozzle.json index a7de48d6a8f..cc4b18e0a0e 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "Fm7vQtx26w3gQasV", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 300", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.5 nozzle.json index 9fadbb98876..30f0b9a2b53 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 300 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "kYSU7lS52QnLsENZ", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 300", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.6 nozzle.json index d4e11cf1245..c1e457efafd 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 300 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "YeFrZxf0ViFX9Cev", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 300", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.8 nozzle.json index cb22577944e..83afbf02761 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 300 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "koeU6C6OZgt564Vh", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 300", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.4 nozzle.json index 2890c0484a9..209001647a0 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 400 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "U1GzZ1xEJoKikV2M", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 400", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.5 nozzle.json index 2ed978b1219..a54260bfe64 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 400 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "2YkExWLDiNgfaQ42", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 400", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.6 nozzle.json index 771b90aa098..7fcb7732fee 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 400 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "nyUAHhq0xzj895Tz", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 400", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.8 nozzle.json index 7f6369b50fa..7383d39b4ed 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 400 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "chIhXvlrxHRC4iYX", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 400", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.4 nozzle.json index 889bbaf7a13..3a66f4e0a17 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 500 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "cYzjo0wbUrsP36B6", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 500", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.5 nozzle.json index 2419a4eab4c..3755b80f9a3 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 500 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "jEVBZyA3q76qtGlN", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 500", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.6 nozzle.json index 798b52e4c94..3fa6761033c 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 500 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "qafEhxcKOuqwCAnS", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 500", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.8 nozzle.json index a613589bd7f..cce09089094 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 500 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "mAkZY3zGttPx2rJC", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 500", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.4 nozzle.json index 00706db2814..9e3f45189cb 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "XC0EEeT3bHfdESU5", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.5 nozzle.json index 2ba6ec41c59..51856c43051 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ozXdsIH12aO1R2cE", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.6 nozzle.json index 8740934a6e3..f255b588246 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "DU30ls7PdOGk4gfV", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.8 nozzle.json index 7e9a54e7bb6..cca40b59795 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "3aUYRFyizH5L4bi1", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.4 nozzle.json index 05b6e64b153..4b49fc36a74 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 COPY MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "RBNnLdbAos83EoOO", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 COPY MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.5 nozzle.json index 75233bd7db6..5e9a55e6e68 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 COPY MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ySg7OYQ47ymqGI7C", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 COPY MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.6 nozzle.json index b1a64821bf9..69848e1743b 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 COPY MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "hpSvqmwqi0WcB1Lw", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 COPY MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.8 nozzle.json index 6395e73548f..0018a5d2503 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 COPY MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "6Io49wsqhx5KveJL", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 COPY MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.4 nozzle.json index 51fd3b4505a..902ba9a0441 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 MIRROR MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "K4SzXXbr9IiAaZTn", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 MIRROR MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.5 nozzle.json index 1071ff2b3d0..873385c4763 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 MIRROR MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "tgimQgUMlhc2Rovn", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 MIRROR MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.6 nozzle.json index fdb613739da..b9ba5860eaa 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 MIRROR MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "iCfPSdhM5ssOAm8j", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 MIRROR MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.8 nozzle.json index 440c97fe700..83cac78c49d 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 MIRROR MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "0Jj892NbeUdQdo5w", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 MIRROR MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.4 nozzle.json index 843f3e4352e..8d4683eeede 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "SkfTLkSJIas3vGto", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.5 nozzle.json index cf520b38709..cc30cfd0dc8 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "i1m3uzI8y5JVVqGj", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.6 nozzle.json index c203e2ad84a..e960f29742e 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "HnNyKaPvBwZyhnyd", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.8 nozzle.json index 7918b98de2f..568f9ab12f2 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "1AgUp0jMuaAaL5No", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.4 nozzle.json index ba45e0e1895..8837dd09373 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 COPY MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "JHZZbE0dzrFuFPq5", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 COPY MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.5 nozzle.json index 1bc3a6ed97f..be7c731a199 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 COPY MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "P1IiiDu0cOwWsc8x", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 COPY MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.6 nozzle.json index e6c29f8aa64..f0af89ed75f 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 COPY MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "Q0wK0lWrnKOkzRJd", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 COPY MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.8 nozzle.json index 637407c1d6e..2079c3f39e9 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 COPY MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "TrB5VRyh9Kv4cfNy", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 COPY MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.4 nozzle.json index 62003a335bc..034fbc44775 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 MIRROR MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "L5yxjGCk5pXyfZvG", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 MIRROR MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.5 nozzle.json index e69449de79f..2e5d00ff9ff 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 MIRROR MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "HuG8WIefsXSaPWBT", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 MIRROR MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.6 nozzle.json index ad25fc39ffd..00c1a3d3390 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 MIRROR MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "U4ORSoWyw8RvMl4j", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 MIRROR MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.8 nozzle.json index 523d2cc31a6..668450c7065 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 MIRROR MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "qSQ40QfTz3nB0CHy", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 MIRROR MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.4 nozzle.json index 2440cbe513c..e1174393535 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "KTlvpdLBX4Xk36IV", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.5 nozzle.json index d417d4a15d6..87096aa4e70 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "cnn3LX6k2Zwc1BPb", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.6 nozzle.json index 48302d67af7..61903d2dc63 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "10Sz1NAc8XXVecWn", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.8 nozzle.json index 782a1bb2630..275241f8bf1 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "eHLp63bQMbXPzFud", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.4 nozzle.json index 204e0526c9c..1ecc8bb0357 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 COPY MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "U9BkUclxugXR3Rjl", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 COPY MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.5 nozzle.json index 6d930b2a843..08ca62e3bb2 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 COPY MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "jM0hc88CGvWdXN0E", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 COPY MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.6 nozzle.json index bd5e1c5cb14..3f7c43607e6 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 COPY MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "xJu7SZVyLYi8NqiC", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 COPY MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.8 nozzle.json index be6fd1ab3a3..ab1a2593680 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 COPY MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "XIn3qGyk3FuTbrI6", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 COPY MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.4 nozzle.json index 25d8a1de919..f4d6d57d1be 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 MIRROR MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "GBrf7SJAuv8wVd3Q", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 MIRROR MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.5 nozzle.json index 69a738ce1b9..5c89275a42c 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 MIRROR MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "SarxN1BGqgLWh7eA", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 MIRROR MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.6 nozzle.json index 40690e9d94d..1b8edc14009 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 MIRROR MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ulJpVpVNE5e7GkAa", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 MIRROR MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.8 nozzle.json index 17ad1b490c4..12ca6a0a2a7 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 MIRROR MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "lM7NsVIUaeGItP3p", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 MIRROR MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Minion 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Minion 0.4 nozzle.json index 22157691c2d..55ed3a5c298 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Minion 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Minion 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Minion 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM005", + "setting_id": "mgAo9e4ATAbrc501", "instantiation": "true", "printer_model": "RatRig V-Minion", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/process/0.08mm Extra Fine @RatRig.json b/resources/profiles/Ratrig/process/0.08mm Extra Fine @RatRig.json index bd132e82386..1b23ea6fcef 100644 --- a/resources/profiles/Ratrig/process/0.08mm Extra Fine @RatRig.json +++ b/resources/profiles/Ratrig/process/0.08mm Extra Fine @RatRig.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP001", + "setting_id": "pFYVim163lsFSX0D", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Ratrig/process/0.12mm Fine @RatRig.json b/resources/profiles/Ratrig/process/0.12mm Fine @RatRig.json index 17428a52ea9..b028ff81f3f 100644 --- a/resources/profiles/Ratrig/process/0.12mm Fine @RatRig.json +++ b/resources/profiles/Ratrig/process/0.12mm Fine @RatRig.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP002", + "setting_id": "UANYUNR1YOP2pEuf", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Ratrig/process/0.15mm Optimal @RatRig.json b/resources/profiles/Ratrig/process/0.15mm Optimal @RatRig.json index c4ed4c0f3ed..023eb76d273 100644 --- a/resources/profiles/Ratrig/process/0.15mm Optimal @RatRig.json +++ b/resources/profiles/Ratrig/process/0.15mm Optimal @RatRig.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP003", + "setting_id": "YgZV4bv6TCuFhWtu", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.4.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.4.json index c96d05eb0d3..ea9f77ac0d3 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.4.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Pdf4f97hGijZXuas", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.5.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.5.json index 5119fdfea4f..6aba341a966 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.5.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "SEzbMHHEV1x08xMy", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.4.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.4.json index 1a92bdd6b86..c118ca89f2b 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.4.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 HYBRID 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "fqWtveKgqxZmrGSJ", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.5.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.5.json index 0e91af7f0b6..65eeee97df6 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.5.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 HYBRID 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "YA8LczRpsriOk9Mx", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.6.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.6.json index 6591aab4745..eb6b2441066 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.6.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 HYBRID 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Utt26igxK6y0mr6n", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.4.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.4.json index cc392aa6fe0..5fdd6a58d29 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.4.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 IDEX 0.4", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "iJlDMQYfiYwFRVjb", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.5.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.5.json index 9b3671e28b6..b15e9b55e52 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.5.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 IDEX 0.5", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "ELxmcKk3ZheIjH7w", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.6.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.6.json index 046c60a0daa..1866217023e 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.6.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 IDEX 0.6", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "ZrdpzkEsWzdoempj", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Standard @RatRig.json b/resources/profiles/Ratrig/process/0.20mm Standard @RatRig.json index e80f832a0a9..aff2aee558b 100644 --- a/resources/profiles/Ratrig/process/0.20mm Standard @RatRig.json +++ b/resources/profiles/Ratrig/process/0.20mm Standard @RatRig.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP005", + "setting_id": "yY0DqowupfGG1k09", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Ratrig/process/0.24mm Draft @RatRig.json b/resources/profiles/Ratrig/process/0.24mm Draft @RatRig.json index 9c723ed44c5..84759ac3139 100644 --- a/resources/profiles/Ratrig/process/0.24mm Draft @RatRig.json +++ b/resources/profiles/Ratrig/process/0.24mm Draft @RatRig.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Dk8mFWH72xFDVr4y", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.4.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.4.json index aecc2aed2d3..dec0a39ac69 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "OwAt7QA6sIIV6JlY", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.5.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.5.json index 1bffc46e510..d7ce908119c 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "CthLcwlUTaDqashr", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.6.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.6.json index d3f090580a0..37be04b2592 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Pynt8qNEfnOwT6kl", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.4.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.4.json index 73894632791..fd567238384 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "5IdYaGV4wf1jFyak", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.5.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.5.json index 38d99e32661..e3217007030 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "rdBtU5RO5D6pzhge", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.6.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.6.json index 5131e3178fd..4cea4aa8145 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "6CTXZj8xTvollGn5", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.4.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.4.json index dd2b95f7821..adabc148b17 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.4", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "1wbCE5pyd4026pF6", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.5.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.5.json index 1d8dd9f3a49..83e4732e31f 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.5", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "QewPLFguHFvRj1zZ", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.6.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.6.json index f1f65dffb88..aabaff04c18 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.6", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "CetGK2sff2XEL8nG", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.4.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.4.json index 45292feeaed..ccdc9bc4d70 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "6B8a2M21GJTOdf0I", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.5.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.5.json index 180630376f2..9b840d38d7a 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "CV4E5Hq4euoxH3JU", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.6.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.6.json index 33860ab2574..0ee1bb2be05 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "9o13tW7GmiwcpFhJ", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.4.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.4.json index b8aa13387c4..522a6f70640 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 HYBRID 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "e1jJGcI4fKQlASlj", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.5.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.5.json index 53b2fb6eb99..a313fb43123 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 HYBRID 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "6pi2wcqVWOpChaTj", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.6.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.6.json index 4c28e400d8e..c142faf9890 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 HYBRID 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "ACjty1HYFLvec9iJ", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.8.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.8.json index de712a1df90..4a3ff2331d3 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.8.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.8.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 HYBRID 0.8", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "H184xduBA87wa2nV", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.4.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.4.json index 45dcaacf18f..2de7ddd670b 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 IDEX 0.4", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "rLwSHQ6THenRlPGE", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.5.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.5.json index 438f77a9a95..d759205a394 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 IDEX 0.5", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "qKvzk6lxGtkyh8xj", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.6.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.6.json index 1a1b18730a2..26ff611a39f 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 IDEX 0.6", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "XeK5xWih29TGjbaB", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.8.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.8.json index 44788c92615..7b4b61541e7 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.8.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.8.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 IDEX 0.8", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "JOEKYofmYCZwOEsb", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.28mm Extra Draft @RatRig.json b/resources/profiles/Ratrig/process/0.28mm Extra Draft @RatRig.json index b53e75abebd..550d8def7ac 100644 --- a/resources/profiles/Ratrig/process/0.28mm Extra Draft @RatRig.json +++ b/resources/profiles/Ratrig/process/0.28mm Extra Draft @RatRig.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP007", + "setting_id": "ZlZYOPn2xevDhqqX", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 0.6.json b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 0.6.json index e95000f7f69..5c458598e2b 100644 --- a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 0.6.json +++ b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 0.6.json @@ -3,7 +3,7 @@ "name": "0.30mm Big @RatRig V-Core 4 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "oN6C4F2VigA8N7VJ", "instantiation": "true", "layer_height": "0.3", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.6.json b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.6.json index fd8d43999ad..8afc99c3768 100644 --- a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.6.json +++ b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.6.json @@ -3,7 +3,7 @@ "name": "0.30mm Big @RatRig V-Core 4 HYBRID 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "DIl1kpyNUwkRH5p7", "instantiation": "true", "layer_height": "0.3", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.8.json b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.8.json index 3fb5483a394..c95853e12bb 100644 --- a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.8.json +++ b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.8.json @@ -3,7 +3,7 @@ "name": "0.30mm Big @RatRig V-Core 4 HYBRID 0.8", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "mhx9g5KuXHny7lq1", "instantiation": "true", "layer_height": "0.3", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.6.json b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.6.json index 94c3ea26e4b..61aaf2ceb0d 100644 --- a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.6.json +++ b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.6.json @@ -3,7 +3,7 @@ "name": "0.30mm Big @RatRig V-Core 4 IDEX 0.6", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "79QFiwaJoX9xyvY3", "instantiation": "true", "layer_height": "0.3", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.8.json b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.8.json index 64aa2220bac..8264c57498d 100644 --- a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.8.json +++ b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.8.json @@ -3,7 +3,7 @@ "name": "0.30mm Big @RatRig V-Core 4 IDEX 0.8", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "wIugsFoqjKZYg8xt", "instantiation": "true", "layer_height": "0.3", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8.json b/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8.json index ff26f97fe7f..19b33bdd037 100644 --- a/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8.json +++ b/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8.json @@ -3,7 +3,7 @@ "name": "0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "mfVelgueIks2dvOe", "instantiation": "true", "layer_height": "0.35", "inital_layer_height": "0.4", diff --git a/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 IDEX 0.8.json b/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 IDEX 0.8.json index 194ddbb1065..bcf5430d594 100644 --- a/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 IDEX 0.8.json +++ b/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 IDEX 0.8.json @@ -3,7 +3,7 @@ "name": "0.35mm Extra Big @RatRig V-Core 4 IDEX 0.8", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "s9huigsf4EhjTLlI", "instantiation": "true", "layer_height": "0.35", "inital_layer_height": "0.4", diff --git a/resources/profiles/RolohaunDesign.json b/resources/profiles/RolohaunDesign.json index facbdebda4b..398937c1271 100644 --- a/resources/profiles/RolohaunDesign.json +++ b/resources/profiles/RolohaunDesign.json @@ -1,6 +1,6 @@ { "name": "RolohaunDesign", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "RolohaunDesign Printer Profiles", "machine_model_list": [ diff --git a/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit 0.4 nozzle.json b/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit 0.4 nozzle.json index 6ecb0aa953d..f5c095918fb 100644 --- a/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit 0.4 nozzle.json +++ b/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "fdm_common_Rook MK1 LDO", "from": "system", "instantiation": "true", - "setting_id": "RDFR_01", + "setting_id": "xRvK2POOU8rx7dLH", "bed_custom_model": "", "printer_structure": "delta", "deretraction_speed": [ diff --git a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.2 nozzle.json b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.2 nozzle.json index 92b53a7b6c9..4d8236f1459 100644 --- a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.2 nozzle.json +++ b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Rook MK1 LDO 0.2 nozzle", "inherits": "fdm_common_Rook MK1 LDO", "from": "system", - "setting_id": "RKMK1_m002", + "setting_id": "K8SXHwlgTJueqpJW", "instantiation": "true", "printer_model": "Rook MK1 LDO", "nozzle_diameter": [ diff --git a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.4 nozzle.json b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.4 nozzle.json index 73d0ca8e242..3d6fdae5fbd 100644 --- a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.4 nozzle.json +++ b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Rook MK1 LDO 0.4 nozzle", "inherits": "fdm_common_Rook MK1 LDO", "from": "system", - "setting_id": "RKMK1_m001", + "setting_id": "Cjk1sVs9DlCj0cPn", "instantiation": "true", "printer_model": "Rook MK1 LDO", "nozzle_diameter": [ diff --git a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.6 nozzle.json b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.6 nozzle.json index 0be51f76bef..b06f15a0f1b 100644 --- a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.6 nozzle.json +++ b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Rook MK1 LDO 0.6 nozzle", "inherits": "fdm_common_Rook MK1 LDO", "from": "system", - "setting_id": "RKMK1_m003", + "setting_id": "oNrdJlECRezgEBHo", "instantiation": "true", "printer_model": "Rook MK1 LDO", "nozzle_diameter": [ diff --git a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.8 nozzle.json b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.8 nozzle.json index b2746011d5f..6ce0a241466 100644 --- a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.8 nozzle.json +++ b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Rook MK1 LDO 0.8 nozzle", "inherits": "fdm_common_Rook MK1 LDO", "from": "system", - "setting_id": "RKMK1_m004", + "setting_id": "lZbTSRsqG3kyxuPk", "instantiation": "true", "printer_model": "Rook MK1 LDO", "nozzle_diameter": [ diff --git a/resources/profiles/RolohaunDesign/process/0.08mm Extra Fine @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.08mm Extra Fine @Rook MK1 LDO.json index a8dde6db153..0d5d674ba73 100644 --- a/resources/profiles/RolohaunDesign/process/0.08mm Extra Fine @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.08mm Extra Fine @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p001", + "setting_id": "psVsJD9Jnpd0RnBs", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/RolohaunDesign/process/0.08mm Super Fine @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.08mm Super Fine @Rolohaun Delta Flyer Refit.json index 055fb71c52f..2c1aa53de15 100644 --- a/resources/profiles/RolohaunDesign/process/0.08mm Super Fine @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.08mm Super Fine @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.08mm Super Fine @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "qo9LXYSjv6tWk6S0", "instantiation": "true", "bottom_shell_layers": "4", "initial_layer_infill_speed": "100", diff --git a/resources/profiles/RolohaunDesign/process/0.10mm Fine @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.10mm Fine @Rolohaun Delta Flyer Refit.json index 18674953bc9..705475590ef 100644 --- a/resources/profiles/RolohaunDesign/process/0.10mm Fine @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.10mm Fine @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.10mm Fine @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "hTj8I2VII6MjoFbi", "instantiation": "true", "bottom_shell_layers": "4", "initial_layer_infill_speed": "100", diff --git a/resources/profiles/RolohaunDesign/process/0.12mm Fine @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.12mm Fine @Rook MK1 LDO.json index a9bd4113a00..74ceacdba1e 100644 --- a/resources/profiles/RolohaunDesign/process/0.12mm Fine @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.12mm Fine @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p002", + "setting_id": "uKLOmFBVxZVJ4GKa", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rolohaun Delta Flyer Refit.json index 1fc9986bd9b..ed27b2ccaf6 100644 --- a/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "STHJGWZhEnlKlUDJ", "instantiation": "true", "initial_layer_infill_speed": "100", "initial_layer_speed": "80", diff --git a/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rook MK1 LDO.json index fe5c1bfba85..63a79ee125a 100644 --- a/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p003", + "setting_id": "wwBqYpuVeGfUCVI1", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rolohaun Delta Flyer Refit.json index 6f3f3ace628..dffe6ede582 100644 --- a/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "6s26EDFbCGrKKXR1", "instantiation": "true", "initial_layer_infill_speed": "100", "initial_layer_speed": "80", diff --git a/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rook MK1 LDO.json index f4f082e2876..4e924db0a34 100644 --- a/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p004", + "setting_id": "lHNZvPBX9GpKHQbP", "instantiation": "true", "layer_height": "0.2", "compatible_printers": [ diff --git a/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rolohaun Delta Flyer Refit.json index de29e2f8db3..a84a1b3ecdf 100644 --- a/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "R6nBYX14zgFazfcX", "instantiation": "true", "bottom_shell_layers": "2", "initial_layer_infill_speed": "100", diff --git a/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rook MK1 LDO.json index b2809808f8c..59c596f9bae 100644 --- a/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p005", + "setting_id": "LLPz2SPlOyjn2lFe", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/RolohaunDesign/process/0.28mm Extra Draft @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.28mm Extra Draft @Rook MK1 LDO.json index c9eb785a699..4f47a023d79 100644 --- a/resources/profiles/RolohaunDesign/process/0.28mm Extra Draft @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.28mm Extra Draft @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p006", + "setting_id": "0bTLmQwpois4ep9l", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/RolohaunDesign/process/0.28mm Rough Draft @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.28mm Rough Draft @Rolohaun Delta Flyer Refit.json index 2e6fce93741..73ac6fc90b4 100644 --- a/resources/profiles/RolohaunDesign/process/0.28mm Rough Draft @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.28mm Rough Draft @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.28mm Rough Draft @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "NuhxjJV8xicvogSR", "instantiation": "true", "bottom_shell_layers": "2", "initial_layer_infill_speed": "100", diff --git a/resources/profiles/RolohaunDesign/process/0.2mm Vase Mode @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.2mm Vase Mode @Rolohaun Delta Flyer Refit.json index 898226fca5c..ec53914336a 100644 --- a/resources/profiles/RolohaunDesign/process/0.2mm Vase Mode @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.2mm Vase Mode @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.2mm Vase Mode @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "V5m4C9uPTfM2RE32", "instantiation": "true", "bottom_shell_layers": "4", "initial_layer_infill_speed": "100", diff --git a/resources/profiles/RolohaunDesign/process/0.32mm Extra Draft @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.32mm Extra Draft @Rook MK1 LDO.json index ea24185186a..588b9ea5ea0 100644 --- a/resources/profiles/RolohaunDesign/process/0.32mm Extra Draft @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.32mm Extra Draft @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p007", + "setting_id": "zVWxuoXKwagdUGAg", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/RolohaunDesign/process/0.40mm Extra Draft @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.40mm Extra Draft @Rook MK1 LDO.json index bcbe1429229..e0041034f53 100644 --- a/resources/profiles/RolohaunDesign/process/0.40mm Extra Draft @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.40mm Extra Draft @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p008", + "setting_id": "Nc1bu4Ak29leE5lW", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/RolohaunDesign/process/0.56mm Extra Draft @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.56mm Extra Draft @Rook MK1 LDO.json index 7fae44fa93f..b9cc308c59d 100644 --- a/resources/profiles/RolohaunDesign/process/0.56mm Extra Draft @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.56mm Extra Draft @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p009", + "setting_id": "ef6UadpqZIEFat9y", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/SecKit.json b/resources/profiles/SecKit.json index 700b0633595..85d373fbc9c 100644 --- a/resources/profiles/SecKit.json +++ b/resources/profiles/SecKit.json @@ -1,6 +1,6 @@ { "name": "SecKit", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "SecKit configurations", "machine_model_list": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic ABS.json b/resources/profiles/SecKit/filament/SecKit Generic ABS.json index c735e6b99ea..bac9887f55c 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic ABS.json +++ b/resources/profiles/SecKit/filament/SecKit Generic ABS.json @@ -3,7 +3,7 @@ "name": "SecKit Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gUrHIkj9GExYWVjh", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic ASA.json b/resources/profiles/SecKit/filament/SecKit Generic ASA.json index d322fa0c4b5..c9fdf2bcfdf 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic ASA.json +++ b/resources/profiles/SecKit/filament/SecKit Generic ASA.json @@ -3,7 +3,7 @@ "name": "SecKit Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UwVF6VlxRg0IW9hB", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PA-CF.json b/resources/profiles/SecKit/filament/SecKit Generic PA-CF.json index 7c2353e0a22..569b174f1b7 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PA-CF.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0K4eQ2fbaasNdvsP", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PA.json b/resources/profiles/SecKit/filament/SecKit Generic PA.json index a71bb34c5ab..bf70f90120a 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PA.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PA.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GlgeZsK719DDjaPo", "filament_id": "GFN99", "instantiation": "true", "nozzle_temperature_initial_layer": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PC.json b/resources/profiles/SecKit/filament/SecKit Generic PC.json index 1fe8e39aec6..c76b39ec418 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PC.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PC.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8DHToBaqE7g5VNvN", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PETG.json b/resources/profiles/SecKit/filament/SecKit Generic PETG.json index e89e7aac7f5..af3bd585abd 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PETG.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PETG.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mx45AbmzGkqYMSsW", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PLA-CF.json b/resources/profiles/SecKit/filament/SecKit Generic PLA-CF.json index 76d44e8c1dc..6767fdc897f 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PLA-CF.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dPLE2CXMpmdtyiZK", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PLA.json b/resources/profiles/SecKit/filament/SecKit Generic PLA.json index f99afbb24db..62e073f2f29 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PLA.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PLA.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7cpNIx6GWUp95tLN", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PVA.json b/resources/profiles/SecKit/filament/SecKit Generic PVA.json index 0576871a839..6060d85690b 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PVA.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PVA.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jiHEC4uCmPQLINlO", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic TPU.json b/resources/profiles/SecKit/filament/SecKit Generic TPU.json index c8a96e9ac93..25befa8256c 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic TPU.json +++ b/resources/profiles/SecKit/filament/SecKit Generic TPU.json @@ -3,7 +3,7 @@ "name": "SecKit Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b5GGHwZlR5oOx4eH", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/SecKit/machine/SecKit Go3 0.4 nozzle.json b/resources/profiles/SecKit/machine/SecKit Go3 0.4 nozzle.json index 91daf82af52..a3ed82bebd6 100644 --- a/resources/profiles/SecKit/machine/SecKit Go3 0.4 nozzle.json +++ b/resources/profiles/SecKit/machine/SecKit Go3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "SecKit Go3 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "hViFP3EQalfD5Y5t", "instantiation": "true", "printer_model": "Seckit Go3", "nozzle_diameter": [ diff --git a/resources/profiles/SecKit/machine/SecKit SK-Tank 0.4 nozzle.json b/resources/profiles/SecKit/machine/SecKit SK-Tank 0.4 nozzle.json index ee18ca27658..7ed28905968 100644 --- a/resources/profiles/SecKit/machine/SecKit SK-Tank 0.4 nozzle.json +++ b/resources/profiles/SecKit/machine/SecKit SK-Tank 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "SecKit SK-Tank 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "qfCyVyaTuCJ4gkr3", "instantiation": "true", "printer_model": "SecKit SK-Tank", "nozzle_diameter": [ diff --git a/resources/profiles/SecKit/process/0.08mm Extra Fine @SecKit.json b/resources/profiles/SecKit/process/0.08mm Extra Fine @SecKit.json index 1c7095ea837..8608d5b854f 100644 --- a/resources/profiles/SecKit/process/0.08mm Extra Fine @SecKit.json +++ b/resources/profiles/SecKit/process/0.08mm Extra Fine @SecKit.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP001", + "setting_id": "VfCCYbSSzln0oSff", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/SecKit/process/0.12mm Fine @SecKit.json b/resources/profiles/SecKit/process/0.12mm Fine @SecKit.json index 9436e87dc40..3b1517d59a4 100644 --- a/resources/profiles/SecKit/process/0.12mm Fine @SecKit.json +++ b/resources/profiles/SecKit/process/0.12mm Fine @SecKit.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP002", + "setting_id": "Zi0gBMjF2KAsaCba", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/SecKit/process/0.15mm Optimal @SecKit.json b/resources/profiles/SecKit/process/0.15mm Optimal @SecKit.json index a0a84cf9ef7..cc895a050b6 100644 --- a/resources/profiles/SecKit/process/0.15mm Optimal @SecKit.json +++ b/resources/profiles/SecKit/process/0.15mm Optimal @SecKit.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP003", + "setting_id": "vmlaA0Yl7JdiHglT", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/SecKit/process/0.20mm Standard @SecKit.json b/resources/profiles/SecKit/process/0.20mm Standard @SecKit.json index 29ceeda8af9..ccefdc58741 100644 --- a/resources/profiles/SecKit/process/0.20mm Standard @SecKit.json +++ b/resources/profiles/SecKit/process/0.20mm Standard @SecKit.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP005", + "setting_id": "Swsol0Fii1Io8I6P", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/SecKit/process/0.24mm Draft @SecKit.json b/resources/profiles/SecKit/process/0.24mm Draft @SecKit.json index 6f622da3cd6..c753aaba593 100644 --- a/resources/profiles/SecKit/process/0.24mm Draft @SecKit.json +++ b/resources/profiles/SecKit/process/0.24mm Draft @SecKit.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP006", + "setting_id": "5ga86b5bk6nh508d", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/SecKit/process/0.28mm Extra Draft @SecKit.json b/resources/profiles/SecKit/process/0.28mm Extra Draft @SecKit.json index a081190a6da..0b18cd116c1 100644 --- a/resources/profiles/SecKit/process/0.28mm Extra Draft @SecKit.json +++ b/resources/profiles/SecKit/process/0.28mm Extra Draft @SecKit.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP007", + "setting_id": "1wYO0wik3Wk2o6sV", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/SecKit/process/0.30mm Fast @SecKit.json b/resources/profiles/SecKit/process/0.30mm Fast @SecKit.json index ede91c6f8be..0a11a3c64f4 100644 --- a/resources/profiles/SecKit/process/0.30mm Fast @SecKit.json +++ b/resources/profiles/SecKit/process/0.30mm Fast @SecKit.json @@ -3,7 +3,7 @@ "name": "0.30mm Fast @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP008", + "setting_id": "rQBlAmuWJckqJJPS", "instantiation": "true", "layer_height": "0.3", "top_surface_line_width": "0.5", diff --git a/resources/profiles/SeeMeCNC.json b/resources/profiles/SeeMeCNC.json index f6ab729c562..e3674f8709b 100644 --- a/resources/profiles/SeeMeCNC.json +++ b/resources/profiles/SeeMeCNC.json @@ -1,6 +1,6 @@ { "name": "SeeMeCNC", - "version": "2.4.0.01", + "version": "2.4.0.02", "force_update": "1", "description": "SeeMeCNC configurations - Full profile set for Artemis, BOSSdelta, and RostockMAX printers", "machine_model_list": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS.json index 4d5632808e1..f00df71cfd9 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS.json @@ -3,6 +3,7 @@ "name": "SeeMeCNC ABS", "inherits": "SeeMeCNC filament base", "from": "System", + "setting_id": "jvmDQqgLy8vboFHw", "filament_id": "SMCFB001", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_4mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_4mm.json index fc18902f8cf..d5df31d0aad 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_4mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_4mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "FOSiDadyHyp8WKTb", "filament_id": "SMCFB00104" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_5mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_5mm.json index c5282e22ac2..6cdf1850d4e 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_5mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_5mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "XzvEoqhK0cx7JieM", "filament_id": "SMCFB00105" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_7mm.json index a846adb3eab..8bdd0003fcd 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_7mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "RbmLGSWPaVvl0NNr", "filament_id": "SMCFB00107" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_1_0mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_1_0mm.json index 0a67bf1a704..0d060b85f34 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_1_0mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_1_0mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "DTcAxACOOtdvD43R", "filament_id": "SMCFB00110" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA-CF.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA-CF.json index 9339556f570..25b2f84b7a6 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA-CF.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA-CF.json @@ -3,6 +3,7 @@ "name": "SeeMeCNC PA-CF", "inherits": "SeeMeCNC filament base", "from": "System", + "setting_id": "xaySfHS4rdZcWsqA", "filament_id": "SMCFN001", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_4mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_4mm.json index c3a5468f3b7..fcde5305988 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_4mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_4mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "jf0puhp8kCuwL3jt", "filament_id": "SMCFN00104" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_5mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_5mm.json index 10b6af97099..0439f589529 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_5mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_5mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "c3gXbtFjJn4aK7pL", "filament_id": "SMCFN00105" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_7mm.json index 3e764076870..d14e2196562 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_7mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "7sDIfUAs3Ftv7uUD", "filament_id": "SMCFN00107" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_1_0mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_1_0mm.json index feba74446bb..aa760ceef22 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_1_0mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_1_0mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "nr7CBE99WoHXy4Dw", "filament_id": "SMCFN00110" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG-CF.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG-CF.json index 70d3e5c421b..f9cc79bcfd8 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG-CF.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG-CF.json @@ -3,6 +3,7 @@ "name": "SeeMeCNC PETG-CF", "inherits": "SeeMeCNC filament base", "from": "System", + "setting_id": "UDoa6miFYGnCLiHc", "filament_id": "SMCFG002", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG.json index 5d8e43e8a40..a186501902b 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG.json @@ -3,6 +3,7 @@ "name": "SeeMeCNC PETG", "inherits": "SeeMeCNC filament base", "from": "System", + "setting_id": "wf9uGLhJeqRDZVR7", "filament_id": "SMCFG001", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_4mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_4mm.json index c1839d39a3a..bb37dfdbd4c 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_4mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_4mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "kqCiusj7FAzbmnro", "filament_id": "SMCFG00104" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_5mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_5mm.json index d61dbfce4f7..a0dab684b88 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_5mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_5mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "85J1rc8KxOc7v2cF", "filament_id": "SMCFG00105" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_7mm.json index ddf7d5b3d53..3285e22d739 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_7mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "QI1p2Hi76cWlfRwC", "filament_id": "SMCFG00107" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_1_0mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_1_0mm.json index b02bb4f6412..ac5455210d6 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_1_0mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_1_0mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "Njx1ZHccqqJzQ7AQ", "filament_id": "SMCFG00110" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_4mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_4mm.json index 8d3e4fe3689..01ef0f3562e 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_4mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_4mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "ulVlpkQVbvkSpmli", "filament_id": "SMCFG00204" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_5mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_5mm.json index 4cbca3867d6..0b3d526c6b2 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_5mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_5mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "jK9Gr2VDAnOKrkPW", "filament_id": "SMCFG00205" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_7mm.json index c85fdc196e0..e2172b67071 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_7mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "Gn57oqh6nMBO651i", "filament_id": "SMCFG00207" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_1_0mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_1_0mm.json index 07d11ec271a..1fabd765d4d 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_1_0mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_1_0mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "nzRT23S6xk1bxbDJ", "filament_id": "SMCFG00210" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA.json index 58d3c485c26..8e9cc3c8d3b 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA.json @@ -2,6 +2,7 @@ "type": "filament", "name": "SeeMeCNC PLA", "from": "System", + "setting_id": "hdn5fZars58kvjwQ", "filament_id": "SMCFL001", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_4mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_4mm.json index fa7a4538166..9d216c2e7ce 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_4mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_4mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "k3oaCcJHHyAuRi6J", "filament_id": "SMCFL00104" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_5mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_5mm.json index 66ae6ee1ec2..1f8a314c20e 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_5mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_5mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "CcINW4WttiNsKvjf", "filament_id": "SMCFL00105" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_7mm.json index eba11caedc3..ea51621992e 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_7mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "pOuc1eXMLLOBqHuz", "filament_id": "SMCFL00107" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_1_0mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_1_0mm.json index 0e7f9484a2f..b720b87de2c 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_1_0mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_1_0mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "jSvqBk6R6HAaTRxk", "filament_id": "SMCFL00110" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU.json index 357073d7f2c..791da98e230 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU.json @@ -3,6 +3,7 @@ "name": "SeeMeCNC TPU", "inherits": "SeeMeCNC filament base", "from": "System", + "setting_id": "vsEH0aZOKiLat0hH", "filament_id": "SMCFU001", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU_0_7mm.json index 4dfd27f7f28..dea7bb78201 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU_0_7mm.json @@ -46,5 +46,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "4LUkyKiKFb96OeC0", "filament_id": "SMCFU00107" } diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_4mm.json index e5522c8d6a1..4230dbffa00 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC Artemis 0.4 nozzle", "from": "System", + "setting_id": "sHym4CslP0KOSKI1", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_5mm.json index a6433b74a71..4ed8e34f2a3 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC Artemis 0.5 nozzle", "from": "System", + "setting_id": "T7UbsCeU4Spvljh1", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_7mm.json index 9694739ef77..7e457fd6d4c 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC Artemis 0.7 nozzle", "from": "System", + "setting_id": "H2RRgI7dIfsMQ3rs", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_1_0mm.json index f75c2fe3e3d..e6beab9437a 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC Artemis 1.0 nozzle", "from": "System", + "setting_id": "cIMj4tl0mO4HaWLx", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_4mm.json index df8a2e67fcb..b3c0d664573 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle", "from": "System", + "setting_id": "bKDY3mKmFHGblw2f", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_5mm.json index 8e90d45e200..3171ed1d160 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle", "from": "System", + "setting_id": "bbCgpQrgYeNm7xmM", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_7mm.json index ee0d003dc10..60aea06e565 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle", "from": "System", + "setting_id": "wOVFwA2YO9lmLsUl", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_1_0mm.json index 30ae87529ea..52131a4df32 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle", "from": "System", + "setting_id": "VntbaD5J3Z2V53xT", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_4mm.json index d4a71c9235c..d9bbabfd46e 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle", "from": "System", + "setting_id": "4HquBCNYnIarQDsn", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_5mm.json index dd273e580c8..48054cbc251 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle", "from": "System", + "setting_id": "dqRikHfYjnYGOwny", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_7mm.json index 3af4be169fa..60653bd138d 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle", "from": "System", + "setting_id": "UnxDqeIJHopmYKe7", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_1_0mm.json index 8afd2fadb0c..29aab8351f3 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle", "from": "System", + "setting_id": "Ej8fGYSyvxZhotWJ", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_4mm.json index f6902620ffd..ca0c54be9b3 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle", "from": "System", + "setting_id": "5yqhnwvAafqWtWsv", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_5mm.json index 7f560fa01e8..e66ebbb1706 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle", "from": "System", + "setting_id": "axWBBdCAXW5CXaKr", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_7mm.json index 6bdd0765934..33db8f630df 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle", "from": "System", + "setting_id": "Tb8laqV8TCI1qx9w", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_1_0mm.json index 4be11a95c30..2b9d48d1707 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle", "from": "System", + "setting_id": "IB6YBnzQFlrlk4LO", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_4mm.json index c4bb9d2b506..765cbd623f5 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 300 0.4 nozzle", "from": "System", + "setting_id": "bBNCF2OJnObaQjUG", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_5mm.json index 4b8857cf6cb..20c6446d2ed 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 300 0.5 nozzle", "from": "System", + "setting_id": "KBZADRGFxUw1Eid7", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_7mm.json index 83ecea436a6..fc91f14b283 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 300 0.7 nozzle", "from": "System", + "setting_id": "I8EEuRh2zT6CFuqG", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_1_0mm.json index 30697c7a47b..01ab5d5a2a2 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 300 1.0 nozzle", "from": "System", + "setting_id": "yxOpcVyr6daKB02x", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_4mm.json index 4b31e617d36..2b0a6a71aeb 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v3.2 0.4 nozzle", "from": "System", + "setting_id": "bUvbKp9xiJEdV37g", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_5mm.json index 6b4228c6e26..b2ba2a38aaa 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v3.2 0.5 nozzle", "from": "System", + "setting_id": "YKAdnr8IlQPpfIBg", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_7mm.json index e1978066c48..fae10fc27c6 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v3.2 0.7 nozzle", "from": "System", + "setting_id": "7hwa9LgYIF4lNiRe", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_1_0mm.json index 9f960a72bfa..f65c62f6fe6 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v3.2 1.0 nozzle", "from": "System", + "setting_id": "tN9vDLuDGWY20khZ", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_4mm.json index 58f70474826..38c29c24621 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v4 0.4 nozzle", "from": "System", + "setting_id": "yFgIq1rgfud4b25W", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_5mm.json index 1fcca5dcaa6..f54bc1bcb63 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v4 0.5 nozzle", "from": "System", + "setting_id": "bqOjdOdOT50Z95OU", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_7mm.json index 82b83a92ab6..51cef231805 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v4 0.7 nozzle", "from": "System", + "setting_id": "7mKOD4UYFgtVkZkp", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_1_0mm.json index 97437e4db9f..0342bbae655 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v4 1.0 nozzle", "from": "System", + "setting_id": "Rpn6GMVVSAtHh1pn", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC Artemis 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC Artemis 0.4.json index 59fdf8b4d45..9413f61c24b 100644 --- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC Artemis 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC Artemis 0.4.json @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC Artemis 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "lRLSXXlhvBZiym5H", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC Artemis 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4.json index 54ff8c4cfc6..103821afc42 100644 --- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4.json @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "8UHWj45Ju6DBVEiz", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4.json index f6ff1e0eaa6..6997d3190fa 100644 --- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4.json @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "kfgfYC8P7YLjle7s", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4.json index 0e9b78fec8b..ac67c6ae12d 100644 --- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4.json @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "aw8wmD40IkOSueRa", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4.json index 0fb934b1732..2ab3b76c569 100644 --- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4.json @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "FNKsLPBbllfHM9OH", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4.json index 722900d15a3..4b0214b224a 100644 --- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4.json @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "czhxhpUVrpbh9uYm", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v4 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v4 0.4.json index d5ff363f414..b595a2940c9 100644 --- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v4 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v4 0.4.json @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "cmDo2eFA1dkBt2rp", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json index e9ba63d7582..c135345133d 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "EBAqFfGspXHLfMUV", "instantiation": "true", "print_settings_id": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC Artemis 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC Artemis 0.5.json index 9a994b34e99..bffdc9c8a98 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC Artemis 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC Artemis 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC Artemis 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "avw7c6fWePolMUGA", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC Artemis 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json index 29ec2fccccf..322b92686bd 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "5QBBUO1BqVF62Jg8", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json index 7a06648b70c..3b04e790b1e 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "Ot7AHQURVsF6ctIN", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json index 1cccbb08799..2d59ae30971 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "2mSgDRrq6sDUArv5", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json index 8caf4662a5f..ddda1c6d387 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "sAyOY3I8dnPUgm1g", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json index bfd219cafee..b9d33423d3e 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "DLMnI7xqZA6QqcDm", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json index 72c3c03d3c3..2095755f508 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "9bMl35ZRi15DTNsC", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC Artemis 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC Artemis 0.4.json index 58a956afb01..db63d4961e1 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC Artemis 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC Artemis 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC Artemis 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "oTTigiCvxuoOIApc", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC Artemis 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4.json index 2b5ec0b981e..87489547f83 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "fGlhxiOPIFvrAml1", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4.json index dea9f97a0a3..2c3c268489f 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "g13rqAKvHJWuyxhW", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4.json index 839798606f9..3e8978893ef 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "hFfaMeYJVbSeK9zH", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4.json index 39d43802aaf..d90d7184951 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "ph4qAa2OnN4uJxjg", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4.json index beae714df1a..1ae6836f4ec 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "MTzWLsGAZh4y17OV", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v4 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v4 0.4.json index 89121d0b22a..3c0d1505d16 100644 --- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v4 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v4 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "sFyuuCdsPp69Ckxr", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC Artemis 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC Artemis 0.4.json index 45d2cf9bc4f..d6765879a27 100644 --- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC Artemis 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC Artemis 0.4.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC Artemis 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "YDcjk60OSZ86WXWs", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC Artemis 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4.json index 54ab031eb65..085e35b56a4 100644 --- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "5dRFKTUmDsicB6ek", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json index 726548fa598..27e9936d820 100644 --- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "4bOED9gJAdzFTfSb", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json index 08bfb0718c9..1f32217404f 100644 --- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "xO0f101uzAnECqVQ", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json index 84062b27b2e..bb8e223e663 100644 --- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "Rstm9vPtFdjlUezr", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json index 1122bd434d6..85314020c66 100644 --- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "b8BV2HBygyauaGAR", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json index 09578835658..04800e469f5 100644 --- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "G7GmikRbpBSBtboj", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC Artemis 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC Artemis 0.5.json index 9cde389a765..006296c6950 100644 --- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC Artemis 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC Artemis 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC Artemis 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "PeixFPMtrsaC0onY", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC Artemis 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json index 4ee43fa848d..1f1acdb9bea 100644 --- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "jLL0riqC6Gm2f7Wa", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json index 3e45e8c1355..7d4e8f9dd6f 100644 --- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "XfNO1L7o79z8xoAC", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json index 2a452cf12db..3abf8bb14d5 100644 --- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "WDKnhKF4EiGxrPL8", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json index 1c6f27066e3..44bddcdbf80 100644 --- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "KMoZ75aJMurX3w5V", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json index 9db35caeeb8..02449482916 100644 --- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "EqQ3HoUv2VJcqAGs", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json index 43b89a1f0fc..f7712b36eb8 100644 --- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "cCJnuaFLDmJlbtlp", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json index 9b7f5faab31..fde74a7075e 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "yf6fjsV00krs4DQd", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4.json index a32fd762512..5510864bca4 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "5VtgzliNcaaA2kSJ", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json index 3953a3cf0b1..19771e8b550 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "iiAwvfKyNKF8uFON", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json index 520339a4688..96ca8ec9084 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "sy4g8XWhOIsHvLpn", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json index 45f511d8d26..221971cabbd 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "8xHOYf0qy8Cau01u", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4.json index 6d98c33ecf6..027850a195b 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "skqqooGjamGLj1X1", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json index 060c6f53dc2..e5dea3cafda 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "ZbwYCmTlpEepEuz2", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC Artemis 0.7.json index a1b19f5ea12..b5a3f301823 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC Artemis 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC Artemis 0.7.json @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "tojtxbX9V7VxvOn1", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC Artemis 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json index 300b7f937ac..98633a37a52 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "YRGRvsR9WmgB9h3N", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json index 2ecb7a3c623..4d28f641205 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "i1bM8P559vdpd0g0", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json index 2258d817800..da5310b47ea 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "TjryxLkkSbWW7rqU", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json index 5274340a76c..6ee106705d5 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "yWbwiqm0yQ5gdevX", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json index 8013c5c0787..c693935409c 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "FAFPoZQrA52dqNHq", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json index c3891193e18..e5203bbd606 100644 --- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "MIu8Co2r9dteb7fv", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC Artemis 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC Artemis 0.5.json index d4cd38e4ba3..5d1aa574e08 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC Artemis 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC Artemis 0.5.json @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC Artemis 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "q9eeA1z91Z91b54C", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC Artemis 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5.json index 5298c5b5620..3dd84f94be1 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5.json @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "GRwydwat29NtvJcu", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json index 48951ffd357..087a8b7975b 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "bObPc9LZ6KaY2Lq6", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json index b3ef8ce53c4..2c6e2b6523d 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "xk5POWitsMpdwSFh", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json index ced2c2d066e..8a67697ae32 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "sUoAYJbwCQd1QXwy", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5.json index 22bb5f6c84d..67c048daef7 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5.json @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "MrPIaywnOzzVkJ7P", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json index 53315ac757d..43126a8a978 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "XF7cEpiYnb531NqB", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json index b9c9206eccc..57bab57335f 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "w5A5ehucWjJ9o3SK", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json index c4c7d4dbaca..673dc45673b 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "BToZhSD6RhGOPgbx", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json index 20be7c24c35..52a941f497b 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "atr8n8cHRTqQAMAe", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json index 755203a633f..baf0abf3a7a 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "IJA8xHZRAKeLW35l", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json index 3b7968e49c2..4bec206a736 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "Y6VWHulWl2zAA1sD", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json index 475fc95f8d7..dc38aeba161 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "FkyXJNtuOfbwGdnR", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json index 48f2ba89e91..9348fd7fd1a 100644 --- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "UKalc41QhG1Zf2X6", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json index 3bc587bd082..7c2229dce40 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "lTkiTMhZVZHzVFcb", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5.json index b1e84f5ca01..38ffe80febe 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5.json @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "GtPC4hbdXRgtXxUB", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json index 87b691b8e31..6feeb3b43b1 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "bqF8NBit2Aelrndm", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json index 668fcc58a9d..47b742bb13a 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "Vco2tMdFZVqumrkA", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json index 151c6f482a1..9c85abfe1d3 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "tOmxG1mhMOMzTw9a", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5.json index 963c5b89a87..2864c9dff4d 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5.json @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "eH08c6L1xoWQoaGr", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json index 9c3352c9ead..4711158b57c 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "kiupe9B4drddQqk8", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC Artemis 0.7.json index fb085c8314b..dbc50110f5a 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC Artemis 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC Artemis 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "DpyLLAbWQymvvT5P", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC Artemis 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7.json index 7a94c515266..142f7f3cb0b 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "3IhpOE5Jo5dJ82q0", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7.json index cda46e438a1..aebc95b138e 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "MetQljvblaFIHRJd", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7.json index c65ba4b197b..005c4dac51e 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "UyddOAaUgKZenOpe", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7.json index 526f477689f..ebf46efb41f 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "ZHGpnfU58MEVHq0g", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7.json index 573966e17ba..e458a682dea 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "x7Rg9G0ekgzdMnpb", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v4 0.7.json index e7ef24194a0..01cdd6dce30 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v4 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v4 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "XDyJkOluUr0WHjAy", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC Artemis 0.7.json index cbbf727ebed..fb9edfee107 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC Artemis 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC Artemis 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "N7o0ht4DUa8YxoS6", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC Artemis 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7.json index af09ff2681b..4c707623e58 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "xgUD4rbF36CnDrAO", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7.json index 3b24d99f23f..a4d7d8ad688 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "OZhwKr8pXgWz9PL1", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7.json index 88295592e7b..3f095d049d2 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "kAkHtpml2l4gxVct", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7.json index 9879b7b58e5..3caf0f29fdf 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "g1AtO4Y3Xum0iU1W", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7.json index 6e779f59044..1b13cf0196c 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "h1QHjkEgu2BXzQEi", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json index d6ead603e42..c5618ce1dda 100644 --- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "lv1TOoKBJd8IXOcn", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC Artemis 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC Artemis 1.0.json index 601c3ddf27c..1b65437ff9e 100644 --- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC Artemis 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC Artemis 1.0.json @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC Artemis 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "YJKpEFLYxvRBNTgU", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC Artemis 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json index 6a51846314e..45414997ed4 100644 --- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "HZdhBvqPEdnL4Jof", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json index 31ac8dc1857..3330a2e6912 100644 --- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "TstwR2YBEGdv7Whj", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json index 4c8a07a5f92..b5076aa76de 100644 --- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "CmhA2uTWBdmFM3Ys", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json index 33df01ede18..cb2486c3b64 100644 --- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "KuEnCO4QuCUYTC9t", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json index cfdab21c540..71a91555f7d 100644 --- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "fiDNKleOEbaU06pC", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json index 0866523affd..7ce75f1b67a 100644 --- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "KJMSmNaHrlABrYXn", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC Artemis 0.7.json index 6b4c7487d36..613f35534be 100644 --- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC Artemis 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC Artemis 0.7.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "gwCRbJvfWBwEjuQd", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC Artemis 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7.json index 32f5ca5eb3b..11f04a419d4 100644 --- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "eizIT85Ctm1vcl3t", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json index 03a65b02f62..5545bed85f3 100644 --- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "4GsQlNdTzC5XxgSr", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json index c39fb7cc708..53f662ac8dd 100644 --- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "cXLAvi5mQLtAG8mg", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json index 5dfa88747d4..152c0f1dbe6 100644 --- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "9igKaGRFQwBn5CYd", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7.json index c0613ea490c..2f129b3f0cf 100644 --- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "uBmYaKfx2HN7EIfK", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v4 0.7.json index 7cdd3db724d..eacfdc41af7 100644 --- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v4 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v4 0.7.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "okgOf4UuGjHJO7i3", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC Artemis 0.7.json index 8dcf440a73a..a021dc25aad 100644 --- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC Artemis 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC Artemis 0.7.json @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "Hz4Q1qmAFopHf7XT", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC Artemis 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7.json index 88f6b9856a2..1d35e1c0452 100644 --- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7.json @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "KgSjm5pHk9pt5PB3", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json index 60a20ed836a..50008ff1892 100644 --- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "DGx3oNHCYzAoOnlr", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json index fe2e8854076..634630f952b 100644 --- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "508Qh53En6FYoeHC", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json index b15a96c3ff6..76c969c24a9 100644 --- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "qJO8OkHQMAzDEw0V", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7.json index 876d20fd612..e5db9b2b546 100644 --- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7.json @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "6tnfj4EPzdL6IN2l", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json index a9eae140b22..824d408a560 100644 --- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json +++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "inMStEcd01OhwiZ5", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC Artemis 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC Artemis 1.0.json index 1c0e61e4218..4cfee8f39a3 100644 --- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC Artemis 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC Artemis 1.0.json @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC Artemis 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "JWsU3ZnahCagqfF4", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC Artemis 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0.json index 1d175529b48..e2c9aa8cceb 100644 --- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0.json @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "SqEcFBRvXuwStPbH", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0.json index d0335033305..7b0a1b8103e 100644 --- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0.json @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "IyAqbCly9ytdcVeD", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0.json index 13a2873034c..ecba4f8f4c7 100644 --- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0.json @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "9SohbZ8vNYoSYeXP", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0.json index 6618e78d763..0f59f8aba86 100644 --- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0.json @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "7pr3leoFJIjdcgmi", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0.json index b79ed41d432..b3a112441a3 100644 --- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0.json @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "J2qJC7GJoWtapiaV", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v4 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v4 1.0.json index fd2a751703f..9250e9533a0 100644 --- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v4 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v4 1.0.json @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC RostockMAX v4 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "AHDI7n7hM8GACYLJ", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC RostockMAX v4 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC Artemis 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC Artemis 1.0.json index 48043b9758d..9f08362508e 100644 --- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC Artemis 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC Artemis 1.0.json @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC Artemis 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "XqJlhk1DOHQSKYNR", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC Artemis 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0.json index a9e0cc6c2d6..33b66288c9a 100644 --- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0.json @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "xnAcORG3cHp41ukk", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json index 0ceb3c72e89..3fb6e4ec4cc 100644 --- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "GSPgVC00A0L70UWT", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json index 3a5b8a69d4f..34ed97aca24 100644 --- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "g6LungtSNBtDRWzE", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json index 0ecca141fff..a0ecbc7f531 100644 --- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "rJSlAvO8JawXO1qb", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0.json index 39ea6501c79..5c647263210 100644 --- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0.json @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "vd8ObV6haBsCRyZM", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v4 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v4 1.0.json index 2a1081169f9..a9f27c392b4 100644 --- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v4 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v4 1.0.json @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC RostockMAX v4 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "jfHMqNVeo05C0emy", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC RostockMAX v4 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC Artemis 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC Artemis 1.0.json index 675d6cebdaa..1063b0311ff 100644 --- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC Artemis 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC Artemis 1.0.json @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC Artemis 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "YIYrIOleRALscWBA", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC Artemis 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0.json index 239b341192b..4307e40685e 100644 --- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0.json @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "NeAgKpsbmeYD07ml", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json index 8fc587206d0..01b105931d4 100644 --- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "eSwnN8wuLGD9fr8u", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json index 119ceef4a86..198c801ec32 100644 --- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "VfZCLYGX0RArTFl5", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json index 70a9fdab950..32e37abf0e6 100644 --- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "HHdMe5WelZb0QYd1", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0.json index 3398c82c5c2..9f34bed0f6a 100644 --- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0.json @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "uL6XkfSSo52U4Vo8", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0", "compatible_printers": [ diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json index b5577783508..66d0a7aae01 100644 --- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json +++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "YFJ4ITw3ZAhBccQX", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0", "compatible_printers": [ diff --git a/resources/profiles/Snapmaker.json b/resources/profiles/Snapmaker.json index 6405a3caf25..cdc7f0fe815 100644 --- a/resources/profiles/Snapmaker.json +++ b/resources/profiles/Snapmaker.json @@ -1,6 +1,6 @@ { "name": "Snapmaker", - "version": "02.04.00.06", + "version": "02.04.00.07", "force_update": "0", "description": "Snapmaker configurations", "machine_model_list": [ diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon ASA-CF08 @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon ASA-CF08 @Snapmaker U1.json index b627ee798dc..31799163c65 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon ASA-CF08 @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon ASA-CF08 @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon ASA-CF08 @Snapmaker U1", "inherits": "Fiberon ASA-CF08 @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL71_00", + "setting_id": "CdgDze2g0J4T7FEP", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA12-CF10 @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA12-CF10 @Snapmaker U1.json index fa7f298e1ba..fd99eee105b 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA12-CF10 @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA12-CF10 @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA12-CF10 @Snapmaker U1", "inherits": "Fiberon PA12-CF10 @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL56_00", + "setting_id": "x3irDyMqwMgklHKg", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA6-CF20 @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA6-CF20 @Snapmaker U1.json index ffbdfdd8c00..1b227b2fd0c 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA6-CF20 @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA6-CF20 @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-CF20 @Snapmaker U1", "inherits": "Fiberon PA6-CF20 @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL57_00", + "setting_id": "AMQyOXYNdWpVXmvK", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA612-ESD @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA612-ESD @Snapmaker U1.json index 2ddc92605e8..660f4e9ef21 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA612-ESD @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA612-ESD @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA612-ESD @Snapmaker U1", "inherits": "Fiberon PA612-ESD @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL72_00", + "setting_id": "hUvnA3XmuC3bGLsi", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PETG-ESD @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PETG-ESD @Snapmaker U1.json index f357b622721..cfe6890a805 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PETG-ESD @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PETG-ESD @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon PETG-ESD @Snapmaker U1", "inherits": "Fiberon PETG-ESD @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL06_00", + "setting_id": "AUr4Bm6UMW8S9TBh", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PPS-GF20 @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PPS-GF20 @Snapmaker U1.json index ade0333b568..4f1a9fdc10e 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PPS-GF20 @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PPS-GF20 @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon PPS-GF20 @Snapmaker U1", "inherits": "Fiberon PPS-GF20 @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL73_00", + "setting_id": "7IpyPFHEAOmFlINJ", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma CoPE @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma CoPE @Snapmaker U1.json index e2fcea837ec..1ad0f0d8206 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma CoPE @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma CoPE @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma CoPE @U1", "inherits": "Panchroma CoPE @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM016_00", + "setting_id": "gI7fRuITm0XhElnG", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA @Snapmaker U1.json index 333d6259178..dcd84aeba93 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA @U1", "inherits": "Panchroma PLA @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM001_00", + "setting_id": "ayBhax9ELaiKfGFt", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Celestial @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Celestial @Snapmaker U1.json index 203dd24b910..561c748be33 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Celestial @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Celestial @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Celestial @U1", "inherits": "Panchroma PLA Celestial @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM008_00", + "setting_id": "OVmWNHpQnLZ67Bxd", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Galaxy @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Galaxy @Snapmaker U1.json index cd80f7c9406..fee27dc9977 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Galaxy @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Galaxy @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Galaxy @U1", "inherits": "Panchroma PLA Galaxy @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM007_00", + "setting_id": "FLECN8LIZ5RLgQGi", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Glow @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Glow @Snapmaker U1.json index 6b0e8a77360..2f1135de61a 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Glow @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Glow @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Glow @U1", "inherits": "Panchroma PLA Glow @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM010_00", + "setting_id": "YEf4HFNPNtoFoLJd", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Luminous @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Luminous @Snapmaker U1.json index 89bacd40d36..fd701bf8c31 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Luminous @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Luminous @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Luminous @U1", "inherits": "Panchroma PLA Luminous @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM011_00", + "setting_id": "bxbXVqsMWWNfWcAn", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Marble @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Marble @Snapmaker U1.json index fe034fabdc8..2a1dbab9364 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Marble @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Marble @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Marble @U1", "inherits": "Panchroma PLA Marble @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM003_00", + "setting_id": "P9wE2kZSR2Coq1K7", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Matte @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Matte @Snapmaker U1.json index 412825477f1..76526068169 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Matte @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Matte @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Matte @U1", "inherits": "Panchroma PLA Matte @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM002_00", + "setting_id": "0oJUzBq7iYJgJxZ7", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Metallic @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Metallic @Snapmaker U1.json index 12dc18fae0d..fe8e68081c4 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Metallic @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Metallic @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Metallic @U1", "inherits": "Panchroma PLA Metallic @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM012_00", + "setting_id": "pAQGZzMH04kst11B", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Neon @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Neon @Snapmaker U1.json index 63c1e4f4109..cf16cb95c9b 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Neon @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Neon @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Neon @U1", "inherits": "Panchroma PLA Neon @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM013_00", + "setting_id": "qVG9q2ci7Cj4pM5c", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Satin @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Satin @Snapmaker U1.json index 4fc8a85ce54..eff77a2aa92 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Satin @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Satin @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Satin @U1", "inherits": "Panchroma PLA Satin @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM005_00", + "setting_id": "EHMn3LsbZlfuR7hD", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Silk @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Silk @Snapmaker U1.json index 6a6ed14fa26..1020a48f0aa 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Silk @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Silk @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Silk @U1", "inherits": "Panchroma PLA Silk @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM004_00", + "setting_id": "JfIg6ZkVFA0CKLFI", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Starlight @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Starlight @Snapmaker U1.json index 7c2e1ab3c6c..114391b517e 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Starlight @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Starlight @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Starlight @U1", "inherits": "Panchroma PLA Starlight @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM009_00", + "setting_id": "pgcdQlQmPFSaduVr", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Temp Shift @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Temp Shift @Snapmaker U1.json index cbe80962742..ca501945779 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Temp Shift @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Temp Shift @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Temp Shift @U1", "inherits": "Panchroma PLA Temp Shift @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM015_00", + "setting_id": "SJq26RGx7OoZB4uH", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Translucent @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Translucent @Snapmaker U1.json index fed2fcd2bd5..cff9ec2011c 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Translucent @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Translucent @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Translucent @U1", "inherits": "Panchroma PLA Translucent @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM006_00", + "setting_id": "CBt541HVuOa7GGb9", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA UV Shift @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA UV Shift @Snapmaker U1.json index df6a3760771..1d4a6a0bbed 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA UV Shift @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA UV Shift @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA UV Shift @U1", "inherits": "Panchroma PLA UV Shift @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM014_00", + "setting_id": "vfVlN8IokcNnixsV", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite CosPLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite CosPLA @Snapmaker U1.json index 4f3d7bb3981..836723cf7a9 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite CosPLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite CosPLA @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite CosPLA @Snapmaker U1", "inherits": "PolyLite CosPLA @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL62_00", + "setting_id": "KwD7WDyJNa4hWfZ8", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite Dual PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite Dual PLA @0.2 nozzle.json index 9b14cb226fc..707d5ae54bc 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite Dual PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite Dual PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyLite Dual PLA @0.2 nozzle", - "setting_id": "490991920", + "setting_id": "jhmy4YHi9MuL0DWu", "inherits": "PolyLite PLA @0.2 nozzle", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA @0.2 nozzle.json index 5570f4b7925..1a4422472c6 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyLite J1 PLA @0.2 nozzle", - "setting_id": "431382384", + "setting_id": "jFlRSxx0KvN3BOUu", "inherits": "PolyLite PLA @0.2 nozzle", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA.json index e026b675c91..6c5017d0a8e 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyLite J1 PLA", - "setting_id": "116125055", + "setting_id": "wcpOTTMyZNPFKyXr", "inherits": "PolyLite PLA @base", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG @Snapmaker U1.json index eda129418d5..47cf37385d6 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PETG @Snapmaker U1", "inherits": "PolyLite PETG @Snapmaker U1 base", "from": "system", - "setting_id": "GFSG60_00", + "setting_id": "U9U4YmaRxgIdxQOc", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG Translucent @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG Translucent @Snapmaker U1.json index 9007bf75074..6089dd66c44 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG Translucent @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG Translucent @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PETG Translucent @Snapmaker U1", "inherits": "PolyLite PETG Translucent @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL74_00", + "setting_id": "NBQOZiQQ8MpcDnLM", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @0.2 nozzle.json index dc5eb1d5068..c3897e63c2d 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyLite PLA @0.2 nozzle", - "setting_id": "1592803578", + "setting_id": "s9mdMaFca8SHfji9", "inherits": "PolyLite PLA @base", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @Snapmaker U1.json index 62eb0798ccc..715d8060e4c 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "PolyLite PLA @U1", "inherits": "PolyLite PLA @Snapmaker U1 base", "from": "system", - "setting_id": "6486836500", + "setting_id": "RtK3uYFG0OKtnLkP", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Galaxy @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Galaxy @Snapmaker U1.json index adc7cb12d3d..e096b1b9b39 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Galaxy @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Galaxy @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Galaxy @Snapmaker U1", "inherits": "PolyLite PLA Galaxy @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL63_00", + "setting_id": "mNMTe346QAgo61NH", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Glow @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Glow @Snapmaker U1.json index 7bb103ab7ef..a36d2b9de53 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Glow @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Glow @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Glow @Snapmaker U1", "inherits": "PolyLite PLA Glow @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL64_00", + "setting_id": "xYjGzOzWWE2PBfNd", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Luminous @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Luminous @Snapmaker U1.json index e9642afc2df..874004e6ea3 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Luminous @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Luminous @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Luminous @Snapmaker U1", "inherits": "PolyLite PLA Luminous @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL65_00", + "setting_id": "pcPG6yUSO8F0e4gM", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Neon @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Neon @Snapmaker U1.json index f40bfd290f9..fbbb2a45855 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Neon @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Neon @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Neon @Snapmaker U1", "inherits": "PolyLite PLA Neon @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL66_00", + "setting_id": "WMoh0mKVmVsdP5rc", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro @Snapmaker U1.json index acd8c7ff72a..47163a788c4 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "PolyLite PLA Pro @U1", "inherits": "PolyLite PLA Pro @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM019_00", + "setting_id": "GxuEzTdHffrvh2q6", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro Metallic @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro Metallic @Snapmaker U1.json index e02ed22face..b1611b961d7 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro Metallic @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro Metallic @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Pro Metallic @Snapmaker U1", "inherits": "PolyLite PLA Pro Metallic @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL75_00", + "setting_id": "21wjCLo6hOb9p38K", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Starlight @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Starlight @Snapmaker U1.json index ffdfc293fb8..56108cfed2e 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Starlight @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Starlight @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Starlight @Snapmaker U1", "inherits": "PolyLite PLA Starlight @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL67_00", + "setting_id": "geXEuSvWTJD0rK7F", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Translucent @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Translucent @Snapmaker U1.json index b4c83fcb945..799e272fabd 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Translucent @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Translucent @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Translucent @Snapmaker U1", "inherits": "PolyLite PLA Translucent @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL68_00", + "setting_id": "YpMLpguxd61Bs16O", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra Dual PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra Dual PLA @0.2 nozzle.json index 549c1cef856..b45068dd52c 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra Dual PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra Dual PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyTerra Dual PLA @0.2 nozzle", - "setting_id": "1258531391", + "setting_id": "UQYgjH1uVxf3d2Nv", "inherits": "PolyTerra PLA @0.2 nozzle", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA @0.2 nozzle.json index 1abf0ff3a71..dd4f969f621 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyTerra J1 PLA @0.2 nozzle", - "setting_id": "1072374370", + "setting_id": "mxKHxGmBZzPLS82O", "inherits": "PolyTerra PLA @0.2 nozzle", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA.json index 39eab72d3ba..7b66438058b 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyTerra J1 PLA", - "setting_id": "3958200796", + "setting_id": "4MZWZX7QPBzxdEGj", "inherits": "PolyTerra PLA @base", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @0.2 nozzle.json index 11307b21f47..07d45a7633d 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyTerra PLA @0.2 nozzle", - "setting_id": "409934824", + "setting_id": "6W1ygT08NordBdIW", "inherits": "PolyTerra PLA @base", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @Snapmaker U1.json index 1ab5d59becc..244cf914716 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "PolyTerra PLA @U1", "inherits": "PolyTerra PLA @Snapmaker U1 base", "from": "system", - "setting_id": "12580059400", + "setting_id": "kyxayLqRGrKKBwqp", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA Marble @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA Marble @Snapmaker U1.json index 90261c8d46e..19e419ca36e 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA Marble @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA Marble @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA Marble @Snapmaker U1", "inherits": "PolyTerra PLA Marble @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL69_00", + "setting_id": "VjVt04nDFS9l9Rl9", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA+ @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA+ @Snapmaker U1.json index ad807f99e1e..c3dd9d5537b 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA+ @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA+ @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA+ @Snapmaker U1", "inherits": "PolyTerra PLA+ @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL70_00", + "setting_id": "5L213op8PhcYpqiF", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA @Snapmaker U1.json index 1dc9da3491e..ef631e550b3 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Polymaker HT-PLA @U1", "inherits": "Polymaker HT-PLA @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM017_00", + "setting_id": "0A5ETOrUTF0P3HS4", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA-GF @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA-GF @Snapmaker U1.json index 5ef9570687a..ac49e4f7ac5 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA-GF @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA-GF @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Polymaker HT-PLA-GF @U1", "inherits": "Polymaker HT-PLA-GF @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM018_00", + "setting_id": "i0LA17aaWvgLG7xd", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG @Snapmaker U1.json index 4b8ff8daf2c..a3e11c2cd21 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Polymaker PETG @Snapmaker U1", "inherits": "Polymaker PETG @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL76_00", + "setting_id": "kS4t66kFCXtambwx", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG Galaxy @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG Galaxy @Snapmaker U1.json index 47b67bb9edc..ecac971c5e6 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG Galaxy @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG Galaxy @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Polymaker PETG Galaxy @Snapmaker U1", "inherits": "Polymaker PETG Galaxy @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL77_00", + "setting_id": "a5yZ1QlqIGEAW1sU", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA @Snapmaker U1.json index d20e23922f0..ff614bc79f0 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Polymaker PLA @Snapmaker U1", "inherits": "Polymaker PLA @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL78_00", + "setting_id": "NSuD5f5eVr8SHA4n", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro @Snapmaker U1.json index 2cb55a8ee50..d5823b53a67 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Polymaker PLA Pro @Snapmaker U1", "inherits": "Polymaker PLA Pro @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL79_00", + "setting_id": "0iJ5qjVvmrkRzpZD", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro Metallic @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro Metallic @Snapmaker U1.json index 463c0f2e816..a26fb437e75 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro Metallic @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro Metallic @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Polymaker PLA Pro Metallic @Snapmaker U1", "inherits": "Polymaker PLA Pro Metallic @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL80_00", + "setting_id": "s4F24JmyDykNvtAV", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ABS @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker ABS @0.2 nozzle.json index 247b5bcdfeb..70a02af9bf7 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ABS @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker ABS @0.2 nozzle", "inherits": "Snapmaker ABS @base", "from": "system", - "setting_id": "363717724", + "setting_id": "88w5Iio3zGVLylQg", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ABS @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker ABS @U1.json index c5afc96a664..083432ebd5b 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ABS @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ABS @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker ABS @U1", "inherits": "Snapmaker ABS @U1 base", "from": "system", - "setting_id": "937533070", + "setting_id": "UFMRgwmOOQhOa3kB", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ABS Benchy @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker ABS Benchy @U1.json index d7b7ca6784d..db8dea187b7 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ABS Benchy @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ABS Benchy @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker ABS Benchy @U1", "inherits": "Snapmaker ABS @U1 base", "from": "system", - "setting_id": "35407544770", + "setting_id": "xszx4XRGrp88OdP8", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ABS.json b/resources/profiles/Snapmaker/filament/Snapmaker ABS.json index a4e9fc0ad49..3339ca3846e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ABS.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ABS.json @@ -3,7 +3,7 @@ "name": "Snapmaker ABS", "inherits": "Snapmaker ABS @base", "from": "system", - "setting_id": "536148164", + "setting_id": "Tffujmgvo69Lyww9", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ASA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker ASA @0.2 nozzle.json index 58e1f8bcdad..28bba6a5b8e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ASA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ASA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker ASA @0.2 nozzle", "inherits": "Snapmaker ASA @base", "from": "system", - "setting_id": "978004695", + "setting_id": "YUN1yip2jUYlb6IQ", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ASA @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker ASA @U1.json index 674c8e6c845..0c5d22723a8 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ASA @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ASA @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker ASA @U1", "inherits": "Snapmaker ASA @U1 base", "from": "system", - "setting_id": "25418661980", + "setting_id": "XlbCMKY8EvV0vM88", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ASA.json b/resources/profiles/Snapmaker/filament/Snapmaker ASA.json index 564c1ca4fc5..9ac7e0bf402 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ASA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ASA.json @@ -3,7 +3,7 @@ "name": "Snapmaker ASA", "inherits": "Snapmaker ASA @base", "from": "system", - "setting_id": "3214191260", + "setting_id": "nLolpk6Jfp8wJdRF", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Breakaway Support For PLA @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker Breakaway Support For PLA @U1.json index 6040d033a2b..97b2f8b07f3 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Breakaway Support For PLA @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Breakaway Support For PLA @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker Breakaway Support For PLA @U1", "inherits": "Snapmaker Breakaway Support @base", "from": "system", - "setting_id": "41460000000", + "setting_id": "5DqT3CYUgp1oJD1V", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.2 nozzle.json index 67582804bec..f421f08c944 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ABS @0.2 nozzle", "inherits": "Snapmaker Dual ABS @base", "from": "system", - "setting_id": "2402717089", + "setting_id": "VFWVufeS8WVUzrCA", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.8 nozzle.json index 67b6ecb3f93..5035a7c3608 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ABS @0.8 nozzle", "inherits": "Snapmaker Dual ABS @base", "from": "system", - "setting_id": "519475561", + "setting_id": "dp69VGFZgouXWjCx", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS Benchy.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS Benchy.json index 6cc182150f4..e42e9efc4a6 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS Benchy.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS Benchy.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ABS Benchy", "inherits": "Snapmaker Dual ABS @base", "from": "system", - "setting_id": "3540754477", + "setting_id": "YMUFsOzEISsMqCLe", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS.json index 6b9d2b24125..4033e091ee7 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ABS", "inherits": "Snapmaker Dual ABS @base", "from": "system", - "setting_id": "937533070", + "setting_id": "I9YYKJlzyMUoSJUe", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA @0.2 nozzle.json index f4b6b1bc289..5f1f1bd74ff 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ASA @0.2 nozzle", "inherits": "Snapmaker Dual ASA @base", "from": "system", - "setting_id": "2698003242", + "setting_id": "1fA5vB9naAlNtiQe", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA.json index a256ba12c3a..66e2897b99c 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ASA", "inherits": "Snapmaker Dual ASA @base", "from": "system", - "setting_id": "2541866198", + "setting_id": "Dgt6iMltl4BH3UJb", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway @0.2 nozzle.json index 0446260e024..c0e2a8f8f3e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual Breakaway @0.2 nozzle", "inherits": "Snapmaker Dual Breakaway @base", "from": "system", - "setting_id": "98433967", + "setting_id": "AnOsn06GmBxyP7WO", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway.json index b84e277fd07..4ddc8bae344 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual Breakaway", "inherits": "Snapmaker Dual Breakaway @base", "from": "system", - "setting_id": "1762361484", + "setting_id": "WuooE38yyXAL7VPi", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PA-CF.json index dfdc98f6490..97ee5393181 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PA-CF", "inherits": "Snapmaker Dual PA-CF @base", "from": "system", - "setting_id": "2799665789", + "setting_id": "xIzJJ3xIBSw4nubb", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PET.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PET.json index 1885595c6c9..fb34c0f56c5 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PET.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PET.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PET", "inherits": "Snapmaker Dual PET @base", "from": "system", - "setting_id": "4213200045", + "setting_id": "dqhn1QWeelEzjcfx", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.2 nozzle.json index 5c7e453c063..de3e027896e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PETG @0.2 nozzle", "inherits": "Snapmaker Dual PETG @base", "from": "system", - "setting_id": "2935726097", + "setting_id": "5AdvwvAu0meLNL1N", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.8 nozzle.json index 1076fab082c..7073f9c0c3b 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PETG @0.8 nozzle", "inherits": "Snapmaker Dual PETG @base", "from": "system", - "setting_id": "1060879577", + "setting_id": "cFiDWj5Jb8XOP2Ew", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG-CF.json index 0e373266f06..1cde77872cb 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PETG-CF", "inherits": "Snapmaker Dual PETG-CF @base", "from": "system", - "setting_id": "950459082", + "setting_id": "jbK61bqOzFY2NOHi", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG.json index bd77fe36471..5cc01b0e16e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PETG", "inherits": "Snapmaker Dual PETG @base", "from": "system", - "setting_id": "2452014271", + "setting_id": "bz5vw9byO2QkHFUp", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.2 nozzle.json index 3e1bd81a4ef..d44fc902f10 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Eco @0.2 nozzle", "inherits": "Snapmaker Dual PLA Eco @base", "from": "system", - "setting_id": "3529576452", + "setting_id": "NNdLn8FKlbXiUwmD", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.8 nozzle.json index c91b4e7f6d8..595086e1ec0 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Eco @0.8 nozzle", "inherits": "Snapmaker Dual PLA Eco @base", "from": "system", - "setting_id": "1134628044", + "setting_id": "KqbrkVJgKkbNG6hq", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco.json index 83efe7df1e2..93b664c42b6 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Eco", "inherits": "Snapmaker Dual PLA Eco @base", "from": "system", - "setting_id": "2158656028", + "setting_id": "XvwU33usTieYj2fI", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.2 nozzle.json index 437274224a8..8e5bdbab443 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Matte @0.2 nozzle", "inherits": "Snapmaker Dual PLA Matte @base", "from": "system", - "setting_id": "2269792171", + "setting_id": "iu55TJPRbKmtdm7m", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.8 nozzle.json index 57aee2f3994..c4786cd716f 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Matte @0.8 nozzle", "inherits": "Snapmaker Dual PLA Matte @base", "from": "system", - "setting_id": "378166115", + "setting_id": "Nv5KZFXYXnkSejib", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte.json index 2d4e893d77e..ad00bde89f8 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Matte", "inherits": "Snapmaker Dual PLA Matte @base", "from": "system", - "setting_id": "3959402964", + "setting_id": "9PvQCorbNAdcMOkL", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal @0.2 nozzle.json index 1e9fc3eb27b..c7398d230a1 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Metal @0.2 nozzle", "inherits": "Snapmaker Dual PLA Metal @base", "from": "system", - "setting_id": "922702789", + "setting_id": "p46s1KawnX4yvyzp", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal.json index 35b5c3c4c30..6e22306d823 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Metal", "inherits": "Snapmaker Dual PLA Metal @base", "from": "system", - "setting_id": "720664627", + "setting_id": "cOn4ldWazMClstBg", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk @0.2 nozzle.json index b5126b074d8..3c07408c1dd 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Silk @0.2 nozzle", "inherits": "Snapmaker Dual PLA Silk @base", "from": "system", - "setting_id": "965040007", + "setting_id": "tHZclIHbTPFyIxhL", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk.json index d7aab444b9e..3356d8a0c8e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Silk", "inherits": "Snapmaker Dual PLA Silk @base", "from": "system", - "setting_id": "1328250686", + "setting_id": "l8GJDtbp5DYRxjqB", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF @0.8 nozzle.json index 0bfd7ca3fb7..d87a40ec78b 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA-CF @0.8 nozzle", "inherits": "Snapmaker Dual PLA-CF @base", "from": "system", - "setting_id": "154056642", + "setting_id": "a64GVqogvOT5t2Pp", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF.json index 8a8224ad4c4..e327bc491f7 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA-CF", "inherits": "Snapmaker Dual PLA-CF @base", "from": "system", - "setting_id": "3589359438", + "setting_id": "kCv4Ep98EMdgmfSB", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA.json index e4daa72e673..f5742c64bc1 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA", "inherits": "Snapmaker Dual PLA @base", "from": "system", - "setting_id": "1195313935", + "setting_id": "YeA7hMgPr5YQujhc", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA @0.2 nozzle.json index 68f49669db7..e0c082dca9f 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PVA @0.2 nozzle", "inherits": "Snapmaker Dual PVA @base", "from": "system", - "setting_id": "3656018400", + "setting_id": "Oob2d8rZXyi6AAVG", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA.json index 9f811e19ac6..e78f3c5cb44 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PVA", "inherits": "Snapmaker Dual PVA @base", "from": "system", - "setting_id": "4145213908", + "setting_id": "WXKMhNyhS80QvkVp", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPE.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPE.json index 0513a9765a9..f29f3f2189c 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPE.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPE.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual TPE", "inherits": "Snapmaker Dual TPU @base", "from": "system", - "setting_id": "2704030359", + "setting_id": "KoZqZ4l1tYZ99JYz", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU High-Flow.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU High-Flow.json index 6487855fcd1..7db3a84d21e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU High-Flow.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU High-Flow.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual TPU High-Flow", "inherits": "Snapmaker Dual TPU @base", "from": "system", - "setting_id": "1072918854", + "setting_id": "D1vA7cdI5kghtrxf", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU.json index 434bf47b37f..0fe5a86031e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual TPU", "inherits": "Snapmaker Dual TPU @base", "from": "system", - "setting_id": "3164285683", + "setting_id": "Y04ObY17n2wfTYha", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.2 nozzle.json index 9778d01cda2..4cf2952b6c5 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ABS @0.2 nozzle", "inherits": "Snapmaker J1 ABS @base", "from": "system", - "setting_id": "418980201", + "setting_id": "zN3PLfqO6Rs1sq18", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.8 nozzle.json index e6076e82553..0301135eef5 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ABS @0.8 nozzle", "inherits": "Snapmaker J1 ABS @base", "from": "system", - "setting_id": "2302229921", + "setting_id": "PTMkAq7JwTuAJjMu", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS Benchy.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS Benchy.json index 8913059631a..4b3dcc5e2f7 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS Benchy.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS Benchy.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ABS Benchy", "inherits": "Snapmaker J1 ABS @base", "from": "system", - "setting_id": "356879727", + "setting_id": "b1Z94AhG8viXuDsq", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS.json index 06725680e20..6006f8436af 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ABS", "inherits": "Snapmaker J1 ABS @base", "from": "system", - "setting_id": "3810006449", + "setting_id": "J8Md52F4hQL8happ", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA @0.2 nozzle.json index dbc69d83d76..1e8309ea9f6 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ASA @0.2 nozzle", "inherits": "Snapmaker J1 ASA @base", "from": "system", - "setting_id": "924839906", + "setting_id": "HzGtluQgjCEMWRCH", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA.json index 8638fd60916..fb886344e5b 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ASA", "inherits": "Snapmaker J1 ASA @base", "from": "system", - "setting_id": "1131956201", + "setting_id": "tIBO5PTJGqFuwnEC", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway @0.2 nozzle.json index 02c5da24723..b1c6efb47d8 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 Breakaway @0.2 nozzle", "inherits": "Snapmaker J1 Breakaway @base", "from": "system", - "setting_id": "2613265860", + "setting_id": "RBdI8nzPDRhKJX96", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway.json index 5fe2745e13d..c451bc4f43e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 Breakaway", "inherits": "Snapmaker J1 Breakaway @base", "from": "system", - "setting_id": "738160822", + "setting_id": "PKDfOM3QE8vuUcuw", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PA-CF.json index 017cf6e07cc..84dc5829f48 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PA-CF", "inherits": "Snapmaker J1 PA-CF @base", "from": "system", - "setting_id": "2221614608", + "setting_id": "l5iTXM2sfxkvgC7I", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PET.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PET.json index d9afd0e5443..22b4167936a 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PET.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PET.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PET", "inherits": "Snapmaker J1 PET @base", "from": "system", - "setting_id": "802807698", + "setting_id": "32QTwV2fbiWv5lHs", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.2 nozzle.json index 07263b98347..019c3f604e0 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PETG @0.2 nozzle", "inherits": "Snapmaker J1 PETG @base", "from": "system", - "setting_id": "1003693375", + "setting_id": "LkY5PsZG6UNeeOp1", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.8 nozzle.json index 497feaf1e7f..e686cffc15e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PETG @0.8 nozzle", "inherits": "Snapmaker J1 PETG @base", "from": "system", - "setting_id": "2853386743", + "setting_id": "0cLSinbAkVb5k965", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG-CF.json index acb485cd2f3..d39a6a3796c 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PETG-CF", "inherits": "Snapmaker J1 PETG-CF @base", "from": "system", - "setting_id": "961448549", + "setting_id": "DSb6vKfFivUJobU0", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG.json index fe2548e0ec0..5ad7f09efb9 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PETG", "inherits": "Snapmaker J1 PETG @base", "from": "system", - "setting_id": "613683209", + "setting_id": "JFd9sxv6Uv95fhrs", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.2 nozzle.json index e83cd1b55e5..99b34d4b3c5 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Eco @0.2 nozzle", "inherits": "Snapmaker J1 PLA Eco @base", "from": "system", - "setting_id": "2482225039", + "setting_id": "7NJHAS5uQWoQ3U0U", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.8 nozzle.json index 66e1be723fd..e63a7b1ac2f 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Eco @0.8 nozzle", "inherits": "Snapmaker J1 PLA Eco @base", "from": "system", - "setting_id": "36938567", + "setting_id": "OUUR4zsDpABcMuzU", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco.json index e34d6c61a38..868412ca16e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Eco", "inherits": "Snapmaker J1 PLA Eco @base", "from": "system", - "setting_id": "2168597171", + "setting_id": "myGZjfB7691BOHCE", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.2 nozzle.json index e01ad0334a2..a1e0ad2d714 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Matte @0.2 nozzle", "inherits": "Snapmaker J1 PLA Matte @base", "from": "system", - "setting_id": "424999360", + "setting_id": "gyvsh0lMqSHxAmiv", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.8 nozzle.json index e379c8a0fa4..4dfb2f1324e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Matte @0.8 nozzle", "inherits": "Snapmaker J1 PLA Matte @base", "from": "system", - "setting_id": "2291459336", + "setting_id": "fSyuoDgf78rjNb7K", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte.json index 382a4c4f83b..4cab1eccabc 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Matte", "inherits": "Snapmaker J1 PLA Matte @base", "from": "system", - "setting_id": "2836087278", + "setting_id": "6moYOMaqt0ZNkR1A", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal @0.2 nozzle.json index dfb8cf51562..e25df5fcb04 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Metal @0.2 nozzle", "inherits": "Snapmaker J1 PLA Metal @base", "from": "system", - "setting_id": "2833378734", + "setting_id": "LlaMn0Bb6dX4aKyV", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal.json index 43660474b7b..c3c86189986 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Metal", "inherits": "Snapmaker J1 PLA Metal @base", "from": "system", - "setting_id": "1744865289", + "setting_id": "vMgabwKr8G7tdFBe", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk @0.2 nozzle.json index 5b1b3f03eb9..dab42bbe857 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Silk @0.2 nozzle", "inherits": "Snapmaker J1 PLA Silk @base", "from": "system", - "setting_id": "1135517568", + "setting_id": "Juvh8sY4FKg07QBT", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk.json index 57a2b0cc794..0a334eb4e80 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Silk", "inherits": "Snapmaker J1 PLA Silk @base", "from": "system", - "setting_id": "155396375", + "setting_id": "e4jJUefBCpPwXdxv", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF @0.8 nozzle.json index 0eba62c7f58..0c833002473 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA-CF @0.8 nozzle", "inherits": "Snapmaker J1 PLA-CF @base", "from": "system", - "setting_id": "2684050537", + "setting_id": "ziN1Ya3XrA7x81jh", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF.json index 87dbc13adef..bea07ac47d6 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA-CF", "inherits": "Snapmaker J1 PLA-CF @base", "from": "system", - "setting_id": "3872452111", + "setting_id": "ZMdlRbIIJz20jG6d", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA.json index 41f7139f64a..a677dbb3d20 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA", "inherits": "Snapmaker J1 PLA @base", "from": "system", - "setting_id": "2479259696", + "setting_id": "s8hTuPODyPfcbY8k", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA @0.2 nozzle.json index 456f9a5f26e..232c11c02cc 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PVA @0.2 nozzle", "inherits": "Snapmaker J1 PVA @base", "from": "system", - "setting_id": "1311098152", + "setting_id": "NZbfoArhgh81kmKO", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA.json index b58522a5562..de42c3cee30 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PVA", "inherits": "Snapmaker J1 PVA @base", "from": "system", - "setting_id": "602634987", + "setting_id": "6ak8VhN88lh6Ob1p", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPE.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPE.json index fbeabbcd10f..b3c6a494348 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPE.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPE.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 TPE", "inherits": "Snapmaker J1 TPU @base", "from": "system", - "setting_id": "1976938920", + "setting_id": "6N7VB3mKAShGVYL3", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU High-Flow.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU High-Flow.json index 06d5bdc46fd..4186cea5118 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU High-Flow.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU High-Flow.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 TPU High-Flow", "inherits": "Snapmaker J1 TPU @base", "from": "system", - "setting_id": "4255325782", + "setting_id": "wdN8j0Zv2bJ29XHA", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU.json index a3f5b2b6b5c..207fc195de2 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 TPU", "inherits": "Snapmaker J1 TPU @base", "from": "system", - "setting_id": "1751294412", + "setting_id": "kTLxR8PWhWPbMvij", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PA-CF @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PA-CF @U1.json index 61fdec52673..402b5785dd8 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PA-CF @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PA-CF @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PA-CF @U1", "inherits": "Snapmaker PA-CF @U1 base", "from": "system", - "setting_id": "27996657890", + "setting_id": "8aP6ye4aeOS7qKpG", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker PA-CF.json index 3b96fb31289..8a49b5fc886 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker PA-CF", "inherits": "Snapmaker PA-CF @base", "from": "system", - "setting_id": "144230794", + "setting_id": "bQJVOpJTPWoAtDCk", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PET @Dual.json b/resources/profiles/Snapmaker/filament/Snapmaker PET @Dual.json index b75f4a22dcf..4bf208ea446 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PET @Dual.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PET @Dual.json @@ -3,7 +3,7 @@ "name": "Snapmaker PET @Dual", "inherits": "Snapmaker Dual PET @base", "from": "system", - "setting_id": "145337790", + "setting_id": "3xJOWlbt2feyRKTV", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PET @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PET @U1.json index b7f2257724f..e4dd0d20350 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PET @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PET @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PET @U1", "inherits": "Snapmaker PET @U1 base", "from": "system", - "setting_id": "42132000450", + "setting_id": "sIijFVd50jJB1sK0", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PET.json b/resources/profiles/Snapmaker/filament/Snapmaker PET.json index f2648fd0af6..c173d17ca6d 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PET.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PET.json @@ -3,7 +3,7 @@ "name": "Snapmaker PET", "inherits": "Snapmaker PET @base", "from": "system", - "setting_id": "3543479015", + "setting_id": "9IKYHi3po9jS33Yd", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PETG @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker PETG @0.2 nozzle.json index 586c585db34..23cc35b8cfd 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PETG @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker PETG @0.2 nozzle", "inherits": "Snapmaker PETG @base", "from": "system", - "setting_id": "1835906521", + "setting_id": "wcnWpeWWBjJdkjUF", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PETG @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PETG @U1.json index bb99464fc74..5df99520641 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PETG @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PETG @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PETG @U1", "inherits": "Snapmaker PETG @U1 base", "from": "system", - "setting_id": "24520142710", + "setting_id": "r7KJB0EPpsknK5iH", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF @U1.json index 9fb0aefa77b..f0bae32788e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PETG-CF @U1", "inherits": "Snapmaker PETG-CF @U1 base", "from": "system", - "setting_id": "9504590820", + "setting_id": "i982wlNMSJujh6Vs", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF.json index bab977241ce..0f5bbcdf756 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker PETG-CF", "inherits": "Snapmaker PETG-CF @base", "from": "system", - "setting_id": "2186648559", + "setting_id": "nAJKOCA9Aq4v9d5e", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PETG.json b/resources/profiles/Snapmaker/filament/Snapmaker PETG.json index 855fd6c1b57..89760d0c7b5 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PETG.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PETG.json @@ -3,7 +3,7 @@ "name": "Snapmaker PETG", "inherits": "Snapmaker PETG @base", "from": "system", - "setting_id": "67598679", + "setting_id": "jydZq50EfeLLSVUk", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA @U1.json index f33f03456d7..1a2f9e3ff38 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA @U1", "inherits": "Snapmaker PLA @U1 base", "from": "system", - "setting_id": "11953139350", + "setting_id": "upBaAiQ4fqmefjo6", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco @U1.json index 2012fe5e0c4..fadf7e59d2f 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Eco @U1", "inherits": "Snapmaker PLA Eco @U1 base", "from": "system", - "setting_id": "21586560280", + "setting_id": "mF73rtMhQQJz1bjt", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco.json index ada230c4028..bdba5c59d2a 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Eco", "inherits": "Snapmaker PLA Eco @base", "from": "system", - "setting_id": "978926393", + "setting_id": "mU6t2gc3SmStj2sN", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Lite @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Lite @U1.json index d5bb451ce7a..fab081d5d71 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Lite @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Lite @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Lite @U1", "inherits": "Snapmaker PLA Lite @U1 base", "from": "system", - "setting_id": "1195313935011", + "setting_id": "ZZyxuKUboYttCqgM", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Matte @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Matte @U1.json index f787f078bd4..fcb1d74c92d 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Matte @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Matte @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Matte @U1", "inherits": "Snapmaker PLA @U1 base", "from": "system", - "setting_id": "119531393501", + "setting_id": "uAhykL5ap1DAKacf", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Metal @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Metal @U1.json index 603fab93df3..538158a1558 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Metal @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Metal @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Metal @U1", "inherits": "Snapmaker PLA Metal @U1 base", "from": "system", - "setting_id": "7206646270", + "setting_id": "lPmCxsx9EpoLoNEk", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @0.2 nozzle.json index 91e7a30c803..44b25b48e20 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Silk @0.2 nozzle", "inherits": "Snapmaker PLA Silk @base", "from": "system", - "setting_id": "3051834979", + "setting_id": "JqSeIMFPLG63Ages", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @U1.json index 7682ec69195..7fdf44e792c 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Silk @U1", "inherits": "Snapmaker PLA Silk @U1 base", "from": "system", - "setting_id": "13282506860", + "setting_id": "9PkHSwtXFM0zPWth", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk.json index e4e64025cb2..299d66e6890 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Silk", "inherits": "Snapmaker PLA Silk @base", "from": "system", - "setting_id": "76896312", + "setting_id": "huBPyGifPs5s3FTU", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA SnapSpeed @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA SnapSpeed @U1.json index 3bcee2b43f2..96d86d2a819 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA SnapSpeed @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA SnapSpeed @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA SnapSpeed @U1", "inherits": "Snapmaker PLA SnapSpeed @U1 base", "from": "system", - "setting_id": "119531393501", + "setting_id": "en6Pvvbc1P9TKm8I", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF @U1.json index 32a05e3ec2a..ec04c8108d4 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA-CF @U1", "inherits": "Snapmaker PLA-CF @U1 base", "from": "system", - "setting_id": "35893594380", + "setting_id": "eyNYjz24xQYyAQcv", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF.json index 3e56a9652e1..f07e0d98be5 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA-CF", "inherits": "Snapmaker PLA-CF @base", "from": "system", - "setting_id": "4136003514", + "setting_id": "PPZJnn6fvmewcHNP", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA.json index 7eba07ce749..65bd1177edb 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA", "inherits": "Snapmaker PLA @base", "from": "system", - "setting_id": "1865051461", + "setting_id": "cW1b4nGxE9yXIXJP", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PVA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker PVA @0.2 nozzle.json index a838bf29361..ba23502fa41 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PVA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PVA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker PVA @0.2 nozzle", "inherits": "Snapmaker PVA @base", "from": "system", - "setting_id": "1131479069", + "setting_id": "UfQ3YguFzJpN2Ewc", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PVA @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PVA @U1.json index 9e0e5fc3c64..f9a33d7bcb4 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PVA @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PVA @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PVA @U1", "inherits": "Snapmaker PVA @U1 base", "from": "system", - "setting_id": "41452139080", + "setting_id": "A9gyeySGTtUrTPeG", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PVA.json b/resources/profiles/Snapmaker/filament/Snapmaker PVA.json index 0b3461ce5cd..fae29055dd9 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PVA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PVA.json @@ -3,7 +3,7 @@ "name": "Snapmaker PVA", "inherits": "Snapmaker PVA @base", "from": "system", - "setting_id": "3741816734", + "setting_id": "nPLHnAptDPHutpMg", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPE @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker TPE @U1.json index 93597399d89..846f7acff92 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPE @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPE @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPE @U1", "inherits": "Snapmaker TPU @U1 base", "from": "system", - "setting_id": "27040303590", + "setting_id": "aqE9IR6dFd2MQLXR", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPE.json b/resources/profiles/Snapmaker/filament/Snapmaker TPE.json index ea148317d7b..861f11ff093 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPE.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPE.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPE", "inherits": "Snapmaker TPU @base", "from": "system", - "setting_id": "2302237917", + "setting_id": "pFGj8sxkPmk10bP4", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPU 95A @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker TPU 95A @U1.json index d3af4f17fed..9cc40e85524 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPU 95A @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPU 95A @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPU 95A @U1", "inherits": "Snapmaker TPU 95A @U1 base", "from": "system", - "setting_id": "316428530", + "setting_id": "XdvEzjOGtQKamDRC", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPU @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker TPU @U1.json index 83504394e37..ba393bed170 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPU @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPU @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPU @U1", "inherits": "Snapmaker TPU @U1 base", "from": "system", - "setting_id": "31642856830", + "setting_id": "QLO4hkw6Agd3gSyR", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPU High-Flow @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker TPU High-Flow @U1.json index 3097562fae5..d338d8e4b93 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPU High-Flow @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPU High-Flow @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPU High-Flow @U1", "inherits": "Snapmaker TPU @U1 base", "from": "system", - "setting_id": "10729188540", + "setting_id": "5AXIg8WCdcd74S5v", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPU.json b/resources/profiles/Snapmaker/filament/Snapmaker TPU.json index 9a808c03f0f..844de7ae01c 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPU.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPU.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPU", "inherits": "Snapmaker TPU @base", "from": "system", - "setting_id": "2492353721", + "setting_id": "VeUwcJ6jFwrFOksc", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.2 nozzle).json index af01799e3fe..398f8640d0a 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 (0.2 nozzle)", "inherits": "fdm_a250", "from": "system", - "setting_id": "2273571854", + "setting_id": "DJ09UcLozkRpW3KX", "instantiation": "true", "printer_model": "Snapmaker A250", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.4 nozzle).json index 32c3529c14c..80fba49023f 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 (0.4 nozzle)", "inherits": "fdm_a250", "from": "system", - "setting_id": "4103703940", + "setting_id": "2dgLIRAThEy26WDm", "instantiation": "true", "printer_model": "Snapmaker A250", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.6 nozzle).json index b26476636d1..4e1e60e4bf2 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 (0.6 nozzle)", "inherits": "fdm_a250", "from": "system", - "setting_id": "3664749826", + "setting_id": "aOEXlZVStLZyH2xc", "instantiation": "true", "printer_model": "Snapmaker A250", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.8 nozzle).json index db648fbdda7..d611297155e 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 (0.8 nozzle)", "inherits": "fdm_a250", "from": "system", - "setting_id": "313360016", + "setting_id": "rOvHCQBJUjuLOBKC", "instantiation": "true", "printer_model": "Snapmaker A250", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.2 nozzle).json index c995d342fbc..dc2a68e8f99 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 BKit (0.2 nozzle)", "inherits": "fdm_a250_bk", "from": "system", - "setting_id": "601809056", + "setting_id": "lQoQ0V1k2PJsBUgL", "instantiation": "true", "printer_model": "Snapmaker A250 BKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.4 nozzle).json index 39ffec73927..dd275cbe68a 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 BKit (0.4 nozzle)", "inherits": "fdm_a250_bk", "from": "system", - "setting_id": "1355061546", + "setting_id": "Dj4aDPjkTRP9lSSt", "instantiation": "true", "printer_model": "Snapmaker A250 BKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.6 nozzle).json index 6201411b476..8e3d3eba3c2 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 BKit (0.6 nozzle)", "inherits": "fdm_a250_bk", "from": "system", - "setting_id": "2117251500", + "setting_id": "FQmRTrZByRpoLVQV", "instantiation": "true", "printer_model": "Snapmaker A250 BKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.8 nozzle).json index e82079980a8..e4b9b675521 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 BKit (0.8 nozzle)", "inherits": "fdm_a250_bk", "from": "system", - "setting_id": "3069209150", + "setting_id": "iZbTMn65miC6Oxv1", "instantiation": "true", "printer_model": "Snapmaker A250 BKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.2 nozzle).json index 456a92243dc..37362fff642 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual (0.2 nozzle)", "inherits": "fdm_a250_dual", "from": "system", - "setting_id": "3474065981", + "setting_id": "pxIZA3QyeBwNM5rC", "instantiation": "true", "printer_model": "Snapmaker A250 Dual", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.4 nozzle).json index 936b2c02192..38a3a83bdbe 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual (0.4 nozzle)", "inherits": "fdm_a250_dual", "from": "system", - "setting_id": "3154670519", + "setting_id": "vT5Xkm8c2pX4tP1o", "instantiation": "true", "printer_model": "Snapmaker A250 Dual", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.6 nozzle).json index 5f541aeb72b..d72b9cf76d4 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual (0.6 nozzle)", "inherits": "fdm_a250_dual", "from": "system", - "setting_id": "2466143025", + "setting_id": "UeSwt1KPqw4JnKwT", "instantiation": "true", "printer_model": "Snapmaker A250 Dual", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.8 nozzle).json index 25f31a169f0..3d7724207a7 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual (0.8 nozzle)", "inherits": "fdm_a250_dual", "from": "system", - "setting_id": "1513914531", + "setting_id": "sxLHo9IXqwRJgtHO", "instantiation": "true", "printer_model": "Snapmaker A250 Dual", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.2 nozzle).json index daa1fcc2420..f1522db2afe 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual BKit (0.2 nozzle)", "inherits": "fdm_a250_dual_bk", "from": "system", - "setting_id": "1737970856", + "setting_id": "m877ANqIOswwumnU", "instantiation": "true", "printer_model": "Snapmaker A250 Dual BKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.4 nozzle).json index 058c2def498..5a30638744d 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual BKit (0.4 nozzle)", "inherits": "fdm_a250_dual_bk", "from": "system", - "setting_id": "344796450", + "setting_id": "1TjUcrFp0yvYqGIu", "instantiation": "true", "printer_model": "Snapmaker A250 Dual BKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.6 nozzle).json index 14969d24bd1..9eeb953d173 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual BKit (0.6 nozzle)", "inherits": "fdm_a250_dual_bk", "from": "system", - "setting_id": "981140900", + "setting_id": "M2Gapi937LXIhmUx", "instantiation": "true", "printer_model": "Snapmaker A250 Dual BKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.8 nozzle).json index 5a64866f66d..cc2a4de55f4 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual BKit (0.8 nozzle)", "inherits": "fdm_a250_dual_bk", "from": "system", - "setting_id": "4072267318", + "setting_id": "auZub0JnDR1qMcYp", "instantiation": "true", "printer_model": "Snapmaker A250 Dual BKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.2 nozzle).json index 968aba5b630..3d62b24e020 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QS+B Kit (0.2 nozzle)", "inherits": "fdm_a250_dual_qs_bk", "from": "system", - "setting_id": "1173309402", + "setting_id": "4UhrgxofVvD8MfdX", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QS+B Kit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.4 nozzle).json index 6fd17c321fb..4813b460acf 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QS+B Kit (0.4 nozzle)", "inherits": "fdm_a250_dual_qs_bk", "from": "system", - "setting_id": "922041936", + "setting_id": "uqKqBsdgD8J2LqIT", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QS+B Kit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.6 nozzle).json index c4a6b2a0256..d1ea16aa1ad 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QS+B Kit (0.6 nozzle)", "inherits": "fdm_a250_dual_qs_bk", "from": "system", - "setting_id": "402855638", + "setting_id": "DIInslBLiZAGWW5M", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QS+B Kit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.8 nozzle).json index 405def6450e..49e291b8cbf 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QS+B Kit (0.8 nozzle)", "inherits": "fdm_a250_dual_qs_bk", "from": "system", - "setting_id": "3502361924", + "setting_id": "MBsCQULjnLAKo7W3", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QS+B Kit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.2 nozzle).json index f92fa6bebbc..fb2f34e27a2 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QSKit (0.2 nozzle)", "inherits": "fdm_a250_dual_qs", "from": "system", - "setting_id": "2546842776", + "setting_id": "JVtuYqZt51KeV5Bz", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QSKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.4 nozzle).json index 178149496b1..01bd45a7af9 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QSKit (0.4 nozzle)", "inherits": "fdm_a250_dual_qs", "from": "system", - "setting_id": "3839345938", + "setting_id": "CuYdmbMAxfR2brMw", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QSKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.6 nozzle).json index 2db0949a3eb..ea28b98c3d8 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QSKit (0.6 nozzle)", "inherits": "fdm_a250_dual_qs", "from": "system", - "setting_id": "3391221140", + "setting_id": "bWVXrgABVGcrAFJS", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QSKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.8 nozzle).json index 57cdc008d82..854b376c7b6 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QSKit (0.8 nozzle)", "inherits": "fdm_a250_dual_qs", "from": "system", - "setting_id": "48444934", + "setting_id": "pmqnfIeEBaQhDIQu", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QSKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.2 nozzle).json index 70d2f03b82c..428e7bb0625 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QS+B Kit (0.2 nozzle)", "inherits": "fdm_a250_qs_bk", "from": "system", - "setting_id": "302401596", + "setting_id": "MGjEO5DBBevjRQwH", "instantiation": "true", "printer_model": "Snapmaker A250 QS+B Kit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.4 nozzle).json index 82780a21e48..122a4d075bf 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QS+B Kit (0.4 nozzle)", "inherits": "fdm_a250_qs_bk", "from": "system", - "setting_id": "1629237686", + "setting_id": "Vi3R1trX1ZmS3fI6", "instantiation": "true", "printer_model": "Snapmaker A250 QS+B Kit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.6 nozzle).json index c23fb7ec080..80a70a6292d 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QS+B Kit (0.6 nozzle)", "inherits": "fdm_a250_qs_bk", "from": "system", - "setting_id": "1340741936", + "setting_id": "rF9QdbSq2zbLBHFw", "instantiation": "true", "printer_model": "Snapmaker A250 QS+B Kit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.8 nozzle).json index e61bf5bf703..76187a70169 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QS+B Kit (0.8 nozzle)", "inherits": "fdm_a250_qs_bk", "from": "system", - "setting_id": "2267595426", + "setting_id": "im5WjUqSLWVNykKy", "instantiation": "true", "printer_model": "Snapmaker A250 QS+B Kit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.2 nozzle).json index e2a92fe4a66..4b8471af2db 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QSKit (0.2 nozzle)", "inherits": "fdm_a250_qs", "from": "system", - "setting_id": "2572320030", + "setting_id": "duQKvh70aERr9BB4", "instantiation": "true", "printer_model": "Snapmaker A250 QSKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.4 nozzle).json index 0ab9cdcd18f..5f39becfeb2 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QSKit (0.4 nozzle)", "inherits": "fdm_a250_qs", "from": "system", - "setting_id": "3930588308", + "setting_id": "HCBONTkI6OhQIVhn", "instantiation": "true", "printer_model": "Snapmaker A250 QSKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.6 nozzle).json index b5c74675821..e404221b268 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QSKit (0.6 nozzle)", "inherits": "fdm_a250_qs", "from": "system", - "setting_id": "3300797458", + "setting_id": "X0LAYZQNEKhAzxK4", "instantiation": "true", "printer_model": "Snapmaker A250 QSKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.8 nozzle).json index 0b7e2beb698..a626cda3232 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QSKit (0.8 nozzle)", "inherits": "fdm_a250_qs", "from": "system", - "setting_id": "209516416", + "setting_id": "lwqKEofjjoqZLZCI", "instantiation": "true", "printer_model": "Snapmaker A250 QSKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.2 nozzle).json index a6709293b0b..6e6196e06f5 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 (0.2 nozzle)", "inherits": "fdm_a350", "from": "system", - "setting_id": "703292831", + "setting_id": "Z7qruZh1Gr84sxvQ", "instantiation": "true", "printer_model": "Snapmaker A350", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.4 nozzle).json index 60dab693da3..44f6b20b639 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 (0.4 nozzle)", "inherits": "fdm_a350", "from": "system", - "setting_id": "1525750805", + "setting_id": "r07yYNCBFwuqVEEX", "instantiation": "true", "printer_model": "Snapmaker A350", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.6 nozzle).json index 62e8a765241..7617b4dbcf5 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 (0.6 nozzle)", "inherits": "fdm_a350", "from": "system", - "setting_id": "1946629267", + "setting_id": "SdeIEjpfRFhTlz6k", "instantiation": "true", "printer_model": "Snapmaker A350", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.8 nozzle).json index f84058a0527..597ce6038de 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 (0.8 nozzle)", "inherits": "fdm_a350", "from": "system", - "setting_id": "3167088385", + "setting_id": "a6OxhjcNKg2iHakM", "instantiation": "true", "printer_model": "Snapmaker A350", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.2 nozzle).json index 53ea8f08930..9446a30536f 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 BKit (0.2 nozzle)", "inherits": "fdm_a350_bk", "from": "system", - "setting_id": "3154404158", + "setting_id": "r26gWBcWXg0rciD3", "instantiation": "true", "printer_model": "Snapmaker A350 BKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.4 nozzle).json index 4b2fdf8e00e..73f11388b40 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 BKit (0.4 nozzle)", "inherits": "fdm_a350_bk", "from": "system", - "setting_id": "3474856628", + "setting_id": "kg4QUY7MHcxYK0pL", "instantiation": "true", "printer_model": "Snapmaker A350 BKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.6 nozzle).json index 7e4366e6c36..d1325661147 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 BKit (0.6 nozzle)", "inherits": "fdm_a350_bk", "from": "system", - "setting_id": "3790090802", + "setting_id": "1cdj4ecU2hMz10cV", "instantiation": "true", "printer_model": "Snapmaker A350 BKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.8 nozzle).json index ad222da6765..f7d07483492 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 BKit (0.8 nozzle)", "inherits": "fdm_a350_bk", "from": "system", - "setting_id": "690678176", + "setting_id": "nijBAflM0GIU40mo", "instantiation": "true", "printer_model": "Snapmaker A350 BKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.2 nozzle).json index 59f852e8a88..78477347813 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual (0.2 nozzle)", "inherits": "fdm_a350_dual", "from": "system", - "setting_id": "1355319715", + "setting_id": "M4FATIDz4SxEaOvg", "instantiation": "true", "printer_model": "Snapmaker A350 Dual", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.4 nozzle).json index cc2469c6a1f..cb06d613442 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual (0.4 nozzle)", "inherits": "fdm_a350_dual", "from": "system", - "setting_id": "601026601", + "setting_id": "VynOLPB6xzqj0vYr", "instantiation": "true", "printer_model": "Snapmaker A350 Dual", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.6 nozzle).json index 582aad770c2..612a957892a 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual (0.6 nozzle)", "inherits": "fdm_a350_dual", "from": "system", - "setting_id": "220518575", + "setting_id": "VcEUmOUxsaHP4t2T", "instantiation": "true", "printer_model": "Snapmaker A350 Dual", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.8 nozzle).json index 1b416df1167..ddd527ce052 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual (0.8 nozzle)", "inherits": "fdm_a350_dual", "from": "system", - "setting_id": "3320185661", + "setting_id": "c5atJ33cVquOKbsk", "instantiation": "true", "printer_model": "Snapmaker A350 Dual", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.2 nozzle).json index 12de82a625a..cd090c9438c 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual BKit (0.2 nozzle)", "inherits": "fdm_a350_dual_bk", "from": "system", - "setting_id": "2156589631", + "setting_id": "mpfg3VPrsibhVOra", "instantiation": "true", "printer_model": "Snapmaker A350 Dual BKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.4 nozzle).json index 7e82b6c74ce..388584fc4b3 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual BKit (0.4 nozzle)", "inherits": "fdm_a350_dual_bk", "from": "system", - "setting_id": "4086336437", + "setting_id": "Cs60CuwL9el3drPS", "instantiation": "true", "printer_model": "Snapmaker A350 Dual BKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.6 nozzle).json index bbf4c822bfc..0c81a687289 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual BKit (0.6 nozzle)", "inherits": "fdm_a350_dual_bk", "from": "system", - "setting_id": "3714491187", + "setting_id": "m0bJpyrn5Vw6dbiG", "instantiation": "true", "printer_model": "Snapmaker A350 Dual BKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.8 nozzle).json index 79380c0c695..22fb6f0c255 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual BKit (0.8 nozzle)", "inherits": "fdm_a350_dual_bk", "from": "system", - "setting_id": "363100321", + "setting_id": "SPQy09DwTrFV3ejK", "instantiation": "true", "printer_model": "Snapmaker A350 Dual BKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.2 nozzle).json index 0d70d787c4f..6ec3a98accd 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QS+B Kit (0.2 nozzle)", "inherits": "fdm_a350_dual_qs_bk", "from": "system", - "setting_id": "2039456978", + "setting_id": "x6LEUt6UURTMxhwE", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QS+B Kit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.4 nozzle).json index c6117e439cb..be3ce68def6 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QS+B Kit (0.4 nozzle)", "inherits": "fdm_a350_dual_qs_bk", "from": "system", - "setting_id": "177593688", + "setting_id": "YOuyptsamVgcHUfQ", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QS+B Kit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.6 nozzle).json index ab4a9285ed2..bac095bf69b 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QS+B Kit (0.6 nozzle)", "inherits": "fdm_a350_dual_qs_bk", "from": "system", - "setting_id": "610530782", + "setting_id": "q5bDNpy8bZszU7IS", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QS+B Kit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json index 4b6a97f3c38..899c264b4e5 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QS+B Kit (0.8 nozzle)", "inherits": "fdm_a350_dual_qs_bk", "from": "system", - "setting_id": "3969986124", + "setting_id": "TeSH3MFBvrsiuYAT", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QS+B Kit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.2 nozzle).json index 9c6cbf68e18..5499e35fe36 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QSKit (0.2 nozzle)", "inherits": "fdm_a350_dual_qs", "from": "system", - "setting_id": "4181829593", + "setting_id": "ILpRG1HZYQmvjbed", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QSKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.4 nozzle).json index 62c44482eff..2bc4aa6510e 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QSKit (0.4 nozzle)", "inherits": "fdm_a350_dual_qs", "from": "system", - "setting_id": "2321276499", + "setting_id": "Voj1513Z7uMVxFPk", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QSKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.6 nozzle).json index ee91555253c..909ea27252b 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QSKit (0.6 nozzle)", "inherits": "fdm_a350_dual_qs", "from": "system", - "setting_id": "2762864341", + "setting_id": "H9R98bxxrF7rS7lx", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QSKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.8 nozzle).json index 6f3eaa7204a..0d68d988f71 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QSKit (0.8 nozzle)", "inherits": "fdm_a350_dual_qs", "from": "system", - "setting_id": "1819225415", + "setting_id": "3quIbrOSRJWy1nPV", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QSKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.2 nozzle).json index 180654ed570..3db71f509e9 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QS+B Kit (0.2 nozzle)", "inherits": "fdm_a350_qs_bk", "from": "system", - "setting_id": "3079526450", + "setting_id": "CMHGxrv6AbWs7al6", "instantiation": "true", "printer_model": "Snapmaker A350 QS+B Kit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.4 nozzle).json index 27a8893e5d9..81fff4994cc 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QS+B Kit (0.4 nozzle)", "inherits": "fdm_a350_qs_bk", "from": "system", - "setting_id": "3298271672", + "setting_id": "konwrScbAqnMxhAX", "instantiation": "true", "printer_model": "Snapmaker A350 QS+B Kit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.6 nozzle).json index d0953d40ba5..0fcd96a992b 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QS+B Kit (0.6 nozzle)", "inherits": "fdm_a350_qs_bk", "from": "system", - "setting_id": "3932260670", + "setting_id": "sgctHamO4KlhYWVK", "instantiation": "true", "printer_model": "Snapmaker A350 QS+B Kit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.8 nozzle).json index cae243dd90b..e5d3c6689a3 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QS+B Kit (0.8 nozzle)", "inherits": "fdm_a350_qs_bk", "from": "system", - "setting_id": "581128876", + "setting_id": "qnpjfHLatrAyk64w", "instantiation": "true", "printer_model": "Snapmaker A350 QS+B Kit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.2 nozzle).json index c631ddb17be..e13d99fe5c2 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QSKit (0.2 nozzle)", "inherits": "fdm_a350_qs", "from": "system", - "setting_id": "2390366686", + "setting_id": "naYY6sxU8jQWSGdj", "instantiation": "true", "printer_model": "Snapmaker A350 QSKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.4 nozzle).json index f7ad5718625..280fccf1e25 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QSKit (0.4 nozzle)", "inherits": "fdm_a350_qs", "from": "system", - "setting_id": "4250951764", + "setting_id": "lCXbcswUfEpgw1eA", "instantiation": "true", "printer_model": "Snapmaker A350 QSKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.6 nozzle).json index 0356528a228..fc9eea96d70 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QSKit (0.6 nozzle)", "inherits": "fdm_a350_qs", "from": "system", - "setting_id": "3549841618", + "setting_id": "Ckk8dvqEGjYSUSuu", "instantiation": "true", "printer_model": "Snapmaker A350 QSKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.8 nozzle).json index c3592367a8b..397d2ac3fef 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QSKit (0.8 nozzle)", "inherits": "fdm_a350_qs", "from": "system", - "setting_id": "458527552", + "setting_id": "oB7dYfgdRYiJd6u4", "instantiation": "true", "printer_model": "Snapmaker A350 QSKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.2 nozzle).json index 26fa2dbb73a..e2d64055575 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker Artisan (0.2 nozzle)", "inherits": "fdm_a400", "from": "system", - "setting_id": "767951383", + "setting_id": "1fDVPeDoI2utiUnt", "instantiation": "true", "printer_model": "Snapmaker Artisan", "default_print_profile": "0.14 Standard @Snapmaker Artisan (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.4 nozzle).json index e6ff2099aca..4023a08ed43 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_a400", "from": "system", - "setting_id": "1591507869", + "setting_id": "0ludJexq9QGmPOGC", "instantiation": "true", "printer_model": "Snapmaker Artisan", "default_print_profile": "0.16 Optimal @Snapmaker Artisan (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.6 nozzle).json index 610707282e9..c08e4f5eed2 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_a400", "from": "system", - "setting_id": "1881821979", + "setting_id": "Y46QcENxUZvULOKt", "instantiation": "true", "printer_model": "Snapmaker Artisan", "default_print_profile": "0.18 Standard @Snapmaker Artisan (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.8 nozzle).json index 28bf714dc18..db353e269c1 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_a400", "from": "system", - "setting_id": "3102247049", + "setting_id": "jraBroO6GPe2qjlV", "instantiation": "true", "printer_model": "Snapmaker Artisan", "default_print_profile": "0.24 Standard @Snapmaker Artisan (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.2 nozzle).json index 0d74a99a4f6..82dd213dad8 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 (0.2 nozzle)", "inherits": "fdm_idex", "from": "system", - "setting_id": "773945936", + "setting_id": "uGHn9W0kiUbFqZpm", "instantiation": "true", "printer_model": "Snapmaker J1", "default_print_profile": "0.14 Standard @Snapmaker J1 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.4 nozzle).json index ea3ebd087cd..cd38cb44652 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_idex", "from": "system", - "setting_id": "1564148698", + "setting_id": "c1KqJtKJyfrGzJJA", "instantiation": "true", "printer_model": "Snapmaker J1", "default_print_profile": "0.16 Optimal @Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.6 nozzle).json index 5fecd853f2f..d121a9b6ea7 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_idex", "from": "system", - "setting_id": "1942825820", + "setting_id": "Dm1xvkg08FfW34xL", "instantiation": "true", "printer_model": "Snapmaker J1", "default_print_profile": "0.18 Standard @Snapmaker J1 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.8 nozzle).json index 9cd48de3afb..8ef6f9f2e1a 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_idex", "from": "system", - "setting_id": "3138384078", + "setting_id": "yF8EGxKTcrWFFmIk", "instantiation": "true", "printer_model": "Snapmaker J1", "default_print_profile": "0.24 Standard @Snapmaker J1 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.2 nozzle).json index 7a2a5284043..8a5cbc56d8a 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.2 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "SM_U1_02", + "setting_id": "CwJeuh1rxZcjvkXh", "name": "Snapmaker U1 (0.2 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json index 96dd1358050..1105a7ec1d8 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "SM_U1", + "setting_id": "UeTP4RqAd7xAMHVE", "name": "Snapmaker U1 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4+0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4+0.6 nozzle).json index e3f6e0cad2d..f637b2a592f 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4+0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4+0.6 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "SM_U1_04_06", + "setting_id": "O6AMxX1Ptbtv4zCK", "name": "Snapmaker U1 (0.4+0.6 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json index 33022e3b3b8..60e699d1089 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "SM_U1_06", + "setting_id": "1OseO7RSPgE4CRKO", "name": "Snapmaker U1 (0.6 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.8 nozzle).json index f118a6805d4..b775c2c964e 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.8 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "SM_U1_08", + "setting_id": "WTkhQtyDO06YY6AG", "name": "Snapmaker U1 (0.8 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Snapmaker/process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json index 528334ec4db..996b127b774 100644 --- a/resources/profiles/Snapmaker/process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json @@ -16,7 +16,7 @@ "top_surface_speed": "150", "support_top_z_distance": "0.06", "support_bottom_z_distance": "0.06", - "setting_id": "GP115", + "setting_id": "3SCofR6VrVyo3vJp", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer lines, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in minimal layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker (0.2 nozzle).json index 7aeb2b548b4..f9c88f0fd68 100644 --- a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.06 Standard @Snapmaker (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "1495708454", + "setting_id": "R1p6eK25DdWRTjtn", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json index 1e8df62498b..2f9d2d3d044 100644 --- a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json @@ -2,7 +2,7 @@ "type": "process", "name": "0.06 Standard @Snapmaker Artisan (0.2 nozzle)", "from": "system", - "setting_id": "3200425436", + "setting_id": "Fqyv4se6T1PKBpXJ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker J1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker J1 (0.2 nozzle).json index 5b2a9891216..11e667b0f17 100644 --- a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker J1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker J1 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.06 Standard @Snapmaker J1 (0.2 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "4149563988", + "setting_id": "seDKvMzBpotwIPgr", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json index 0fdf3d780ca..85e50ec87f3 100644 --- a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json @@ -16,7 +16,7 @@ "top_surface_speed": "150", "support_top_z_distance": "0.06", "support_bottom_z_distance": "0.06", - "setting_id": "GP024", + "setting_id": "997RaiNHd2YhpaRB", "description": "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer height, and results in minimal layer lines and higher printing quality, but shorter printing time.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker (0.4 nozzle).json index d7be6b8a25b..1158054b03a 100644 --- a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.08 Extra Fine @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3124178337", + "setting_id": "RqnQhbxHIBGGb18o", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle).json index 391483ef8c8..adf8ae30d16 100644 --- a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "723238605", + "setting_id": "pBTnfw8bL4m3gmwZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker J1 (0.4 nozzle).json index ee92378122b..890b8a4dad1 100644 --- a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.08 Extra Fine @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "175768766", + "setting_id": "79xRHqb7P2V8W7kt", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker U1 (0.4 nozzle).json index 35b00038e82..aeffe99f2a2 100644 --- a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.08 Extra Fine @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.08", "from": "system", - "setting_id": "GP001", + "setting_id": "Tayg0K1WRyJMLoke", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json index cd8f4f89ff5..fe0fc0e87df 100644 --- a/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json @@ -16,7 +16,7 @@ "top_surface_speed": "150", "support_top_z_distance": "0.08", "support_bottom_z_distance": "0.08", - "setting_id": "GP122", + "setting_id": "6ExpMU3Wq4J1R7wy", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer lines, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost invisible layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.4 nozzle).json index 499fd7c96cb..b86156d8412 100644 --- a/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.08 High Quality @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.08", "from": "system", - "setting_id": "GP099", + "setting_id": "Bld9ulv0wFza7OCb", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Snapmaker/process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json index 3e70a2d5b14..472176ff40b 100644 --- a/resources/profiles/Snapmaker/process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json @@ -16,7 +16,7 @@ "top_surface_speed": "150", "support_top_z_distance": "0.08", "support_bottom_z_distance": "0.08", - "setting_id": "GP025", + "setting_id": "loFrCYH9ux2L5JpZ", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height, and results in almost invisible layer lines and higher printing quality, but shorter printing time.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json index 19327ec74ec..0f15ce7c5f1 100644 --- a/resources/profiles/Snapmaker/process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json @@ -16,7 +16,7 @@ "top_surface_speed": "150", "support_top_z_distance": "0.1", "support_bottom_z_distance": "0.1", - "setting_id": "GP111", + "setting_id": "BfLpmnJnSBYBFInR", "description": "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in much higher printing quality, but a much longer printing time.", "default_acceleration": "4000", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker (0.2 nozzle).json index 6637b9d8bcf..581909f3a7d 100644 --- a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.10 Standard @Snapmaker (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "1303724634", + "setting_id": "lQPTbtyWsLBlzhhu", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker Artisan (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker Artisan (0.2 nozzle).json index cc7e78dd976..46643012847 100644 --- a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker Artisan (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker Artisan (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.10 Standard @Snapmaker Artisan (0.2 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "2309389761", + "setting_id": "GU5JJudPaiVQj9MZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker J1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker J1 (0.2 nozzle).json index 987f409837c..050a0d217d8 100644 --- a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker J1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker J1 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.10 Standard @Snapmaker J1 (0.2 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "3458191734", + "setting_id": "IbypFju9QyDwlZTZ", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json index d906a28b31d..460bf8b6fd2 100644 --- a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json @@ -16,7 +16,7 @@ "top_surface_speed": "150", "support_top_z_distance": "0.1", "support_bottom_z_distance": "0.1", - "setting_id": "GP007", + "setting_id": "SOq962UWv1ml1Mk0", "description": "It has a small layer height, and results in almost negligible layer lines and high printing quality. It is suitable for most general printing cases.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker (0.4 nozzle).json index 0ecb1bcfadf..0096cf3d9f5 100644 --- a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12 Fine @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "659326512", + "setting_id": "NeGwX60F3EGKDeqW", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker Artisan (0.4 nozzle).json index dc1ff4a16d9..855369306e4 100644 --- a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12 Fine @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "3320746901", + "setting_id": "pwH7fMWirYSLpbak", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker J1 (0.4 nozzle).json index 94688a0689d..c0a6a4d0e50 100644 --- a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12 Fine @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2089753458", + "setting_id": "blXkiX39xoI1q4KO", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker U1 (0.4 nozzle).json index 295bae445d4..42823b3f0b9 100644 --- a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12 Fine @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.12", "from": "system", - "setting_id": "GP002", + "setting_id": "xBU1j8ldOefYfosp", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.12 High Quality @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.12 High Quality @Snapmaker U1 (0.4 nozzle).json index 57bb9d687ed..8564a41b24c 100644 --- a/resources/profiles/Snapmaker/process/0.12 High Quality @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.12 High Quality @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12 High Quality @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.12", "from": "system", - "setting_id": "GP103", + "setting_id": "WNWFsx5DJtCRAlFl", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Snapmaker/process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json index e205d640d99..de68cc0dd0b 100644 --- a/resources/profiles/Snapmaker/process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json @@ -16,7 +16,7 @@ "top_surface_speed": "150", "support_top_z_distance": "0.12", "support_bottom_z_distance": "0.12", - "setting_id": "GP026", + "setting_id": "KHC1zpxpuvaUEzvf", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a slightly bigger layer height, and results in almost negligible layer lines, and slightly shorter printing time.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker (0.2 nozzle).json index 151a1ac3e1e..b07c8f47589 100644 --- a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.14 Standard @Snapmaker (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3753641602", + "setting_id": "d3hM4vX8GYrPLFXM", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker Artisan (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker Artisan (0.2 nozzle).json index 661bba80100..e63fd634d4c 100644 --- a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker Artisan (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker Artisan (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.14 Standard @Snapmaker Artisan (0.2 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1624466618", + "setting_id": "iI5ngHi86nvZCCx8", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker J1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker J1 (0.2 nozzle).json index 39dd370bacb..c9c285e7e24 100644 --- a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker J1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker J1 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.14 Standard @Snapmaker J1 (0.2 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2689370057", + "setting_id": "r3eh6MCwv9tWC2yd", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json index 5e931eb1891..c265d55e677 100644 --- a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json @@ -16,7 +16,7 @@ "top_surface_speed": "150", "support_top_z_distance": "0.14", "support_bottom_z_distance": "0.14", - "setting_id": "GP027", + "setting_id": "NGJoV0n6T510y9wM", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer height, and results in slightly visible layer lines, but shorter printing time.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.16 High Quality @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.16 High Quality @Snapmaker U1 (0.4 nozzle).json index ef5d90abc8e..e66f9f3beb9 100644 --- a/resources/profiles/Snapmaker/process/0.16 High Quality @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.16 High Quality @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.16 High Quality @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.16", "from": "system", - "setting_id": "GP107", + "setting_id": "Ofe17WrGQ3MOrqNe", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker (0.4 nozzle).json index db0234404bf..c77a8dbfb60 100644 --- a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.16 Optimal @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "719207749", + "setting_id": "gBjmgWarREVw7caM", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker Artisan (0.4 nozzle).json index c25196675dd..67fc4c5c174 100644 --- a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.16 Optimal @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "2870109378", + "setting_id": "2wZvQq0qNv4WfhdZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker J1 (0.4 nozzle).json index 4c7d9e1a12a..983fdfc1f28 100644 --- a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.16 Optimal @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "931476703", + "setting_id": "aYABRtB6CLWpFLg8", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json index 5bc8f1e60d0..2817871fad8 100644 --- a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.16 Optimal @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.16", "from": "system", - "setting_id": "GP003", + "setting_id": "ERcgRLp5bQo1hgz8", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker (0.6 nozzle).json index 7e380886536..58ba1f433e7 100644 --- a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.18 Standard @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "4013595815", + "setting_id": "QqMgdUexSxZGr7hg", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker Artisan (0.6 nozzle).json index 42260b4334a..571da9803bd 100644 --- a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.18 Standard @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "3721468026", + "setting_id": "WRCJjHoFE6ONTjtd", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker J1 (0.6 nozzle).json index 8759921c7c4..65113d6de14 100644 --- a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.18 Standard @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "1330982148", + "setting_id": "Geu18odz6ObfsTRu", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json index 44bc1e06bd3..e68cf86d75f 100644 --- a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json @@ -15,7 +15,7 @@ "overhang_3_4_speed": "15", "support_top_z_distance": "0.18", "support_bottom_z_distance": "0.18", - "setting_id": "GP028", + "setting_id": "XGSrVgnsUFv6uCRs", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle).json index 43fc48b4e7f..5de608c68d1 100644 --- a/resources/profiles/Snapmaker/process/0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP008", + "setting_id": "8OkVMuElKExBdftG", "instantiation": "true", "enable_support": "1", "support_interface_top_layers": "3", diff --git a/resources/profiles/Snapmaker/process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json index 84d516815e3..ac7fc102bc3 100644 --- a/resources/profiles/Snapmaker/process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Quality @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP004", + "setting_id": "BBXxXQCXCme2Mvy0", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker (0.4 nozzle).json index 3c60151192c..8f007e2a34a 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3044804041", + "setting_id": "Fv6j7xDQkyiKZjIJ", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker Artisan (0.4 nozzle).json index c268e38e7b0..1b40cd1f2a0 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "864558918", + "setting_id": "T7h4X48nUSLv0Vt2", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker J1 (0.4 nozzle).json index 78e761c7cce..f81b4247e30 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "4042107035", + "setting_id": "dvKD5OVLO2xU1lOV", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4 nozzle).json index 54ae187a48c..243718507b4 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP004", + "setting_id": "XR5r9SuWmSag5Qjo", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4+0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4+0.6 nozzle).json index e02eabc0238..52e1aa93490 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4+0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4+0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker U1 (0.4+0.6 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP004_0406_020", + "setting_id": "RDaUoAylHaD0M0F1", "instantiation": "true", "description": "Standard profile for the Snapmaker U1 mixed-nozzle configuration (T0/T1 = 0.4 mm, T2/T3 = 0.6 mm). Line widths are expressed as percentages of nozzle diameter so they scale correctly per tool. Use T0/T1 for detail work and outer walls; use T2/T3 for fast infill or large structural features.", "compatible_printers": [ diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.6 nozzle).json index 4f97d4ca317..f5ab6999280 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker U1 (0.6 nozzle)", "inherits": "fdm_process_U1_0.6_common", "from": "system", - "setting_id": "GP004_06_020", + "setting_id": "6VM4QhgvHUmyf2um", "instantiation": "true", "description": "Standard 0.2 mm layer height profile for the Snapmaker U1 with 0.6 mm nozzles. Balances print speed and surface quality for everyday prints.", "layer_height": "0.20", diff --git a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker (0.4 nozzle).json index 37cd0501b19..453c35a65cc 100644 --- a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Strength @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3490773493", + "setting_id": "9cy25w7W7ESIKVpf", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker Artisan (0.4 nozzle).json index bcc9a67e37d..40988503074 100644 --- a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Strength @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1825586885", + "setting_id": "mFyhre472uYu5he3", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker J1 (0.4 nozzle).json index 66798155d62..d6349b8dec3 100644 --- a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Strength @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "563165128", + "setting_id": "3vunOdQ6JRC3hEGF", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker U1 (0.4 nozzle).json index 6c20f1fd9aa..4defa45a160 100644 --- a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Strength @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP013", + "setting_id": "bYnMOZxTq83EwIyd", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "outer_wall_speed": "60", diff --git a/resources/profiles/Snapmaker/process/0.20 Support @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Support @Snapmaker U1 (0.4 nozzle).json index d7094767133..36a3172b48e 100644 --- a/resources/profiles/Snapmaker/process/0.20 Support @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Support @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Support @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP0040", + "setting_id": "4whjHJVCN44w8SPE", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.20 Support W @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Support W @Snapmaker U1 (0.4 nozzle).json index a991e399a83..37ba596b634 100644 --- a/resources/profiles/Snapmaker/process/0.20 Support W @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Support W @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Support W @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP008", + "setting_id": "M9JhI2roLcP4jYks", "instantiation": "true", "enable_support": "1", "support_interface_top_layers": "3", diff --git a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker (0.4 nozzle).json index e7cdb41df16..25abfea922a 100644 --- a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Draft @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "1966563644", + "setting_id": "FV2YB1tapUrW85Jj", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker Artisan (0.4 nozzle).json index 9f904a0f091..17fe35c5d6b 100644 --- a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Draft @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "2003861482", + "setting_id": "f4Rl07LdVMSEfoVZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker J1 (0.4 nozzle).json index ca3e75b12da..5f5199f7ec9 100644 --- a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Draft @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2742890459", + "setting_id": "oarYhYk2ITkRzZwf", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker U1 (0.4 nozzle).json index bab4205384e..a4c10a8ad15 100644 --- a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Draft @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.24", "from": "system", - "setting_id": "GP005", + "setting_id": "MYRo7jTenu7F0Zv4", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.6 nozzle).json index f3627018cb0..3fa8e9b3dbd 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "159607191", + "setting_id": "RtyAfues7SSb8ja5", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.8 nozzle).json index 31921d580b5..9fdeff863a5 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3242308101", + "setting_id": "gflLPQ66EUDCMsV0", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.6 nozzle).json index 7346225a7d3..e90dd34c1d9 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "4094373563", + "setting_id": "RSYYODWQ92DEvxzo", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.8 nozzle).json index d68d78b227d..4615647a662 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1019868457", + "setting_id": "4SkOxLyTu2fJtXwZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.6 nozzle).json index ba3ca4d9ac4..c3c6d462687 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2957563554", + "setting_id": "1Wb3EUbk5YY8wMM3", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.8 nozzle).json index 626608bc6bc..8aa8de92232 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2022313264", + "setting_id": "3wD7GbvxroMwdPcT", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json index a0451b3ebfd..b8a8427baf3 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json @@ -13,7 +13,7 @@ "top_surface_speed": "150", "bridge_speed": "30", "overhang_3_4_speed": "15", - "setting_id": "GP029_06_024", + "setting_id": "BziJYuA5U5gWm6FM", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json index 838420fda14..1b13e745d26 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json @@ -15,7 +15,7 @@ "bridge_speed": "30", "overhang_3_4_speed": "25", "overhang_4_4_speed": "5", - "setting_id": "GP029_08_024", + "setting_id": "QcJ5p9h0eYUb91ak", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker Artisan (0.4 nozzle).json index 54df855ea6f..2a0f1ae0099 100644 --- a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.25 Benchy @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "2853588009", + "setting_id": "u2Me8HPHOGuwYh4H", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker J1 (0.4 nozzle).json index 62469577981..a38c31b2fd7 100644 --- a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.25 Benchy @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "4247211099", + "setting_id": "dQn9kx2krDE0pl9N", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker U1 (0.4 nozzle).json index f423fd88625..2dcf03d540e 100644 --- a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.25 Benchy @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1", "from": "system", - "setting_id": "2853588009", + "setting_id": "deA4Xg6QxFTKOYZy", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker (0.4 nozzle).json index 2d2e7cf8094..f8d31d6c3dd 100644 --- a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.28 Extra Draft @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3717021337", + "setting_id": "MwuZ1zOqyZjq7Xn3", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker Artisan (0.4 nozzle).json index 3baeea0c4af..e89e5148ee3 100644 --- a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.28 Extra Draft @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "3141987096", + "setting_id": "Ew6LNTqyLEv99qoA", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker J1 (0.4 nozzle).json index 5424fa5fecf..b472f8b73cd 100644 --- a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.28 Extra Draft @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "1784261617", + "setting_id": "SamjgSZ3VtqlZLlq", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker U1 (0.4 nozzle).json index 3e41dc2cb8d..4adf06f1001 100644 --- a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.28 Extra Draft @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.28", "from": "system", - "setting_id": "GP006", + "setting_id": "0fSeyAIS6z75A1r3", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.30 Draft @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Draft @Snapmaker U1 (0.6 nozzle).json index 22e3aa161df..8f8e6a1d157 100644 --- a/resources/profiles/Snapmaker/process/0.30 Draft @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Draft @Snapmaker U1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Draft @Snapmaker U1 (0.6 nozzle)", "inherits": "fdm_process_U1_0.6_common", "from": "system", - "setting_id": "GP004_06_030", + "setting_id": "Tk3tG3RGJ8dwXFKf", "instantiation": "true", "description": "Fast draft profile for the Snapmaker U1 with 0.6 mm nozzles. 0.3 mm layer height for quick prototypes and functional parts.", "layer_height": "0.30", diff --git a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker (0.6 nozzle).json index 59a09ec8658..71ca1a73640 100644 --- a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Standard @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "1410611847", + "setting_id": "fp0W4NRR2rSw9Ya4", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker Artisan (0.6 nozzle).json index 51a40210b13..740b764a6ba 100644 --- a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Standard @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1517142331", + "setting_id": "Ugiz4d5OlsDqjoaI", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker J1 (0.6 nozzle).json index 476b4b0b03a..82e876cd59d 100644 --- a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Standard @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "1402174975", + "setting_id": "zKZEAPhMInWurQ3h", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json index 5d9ce3e7404..3ed454a7d5a 100644 --- a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json @@ -13,7 +13,7 @@ "top_surface_speed": "150", "bridge_speed": "30", "overhang_3_4_speed": "15", - "setting_id": "GP010", + "setting_id": "TWxp6qgz1DJa8Ngo", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker (0.6 nozzle).json index 402c734aa55..69c56f442de 100644 --- a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Strength @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "829998779", + "setting_id": "tRLlH8ypDj0ifqo8", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker Artisan (0.6 nozzle).json index 9158a185aed..6cd6ab07e60 100644 --- a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Strength @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "87417016", + "setting_id": "3lZfTFO6s03AUH8m", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker J1 (0.6 nozzle).json index 81f6e239238..27945ce986d 100644 --- a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Strength @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2196759212", + "setting_id": "VEugI1UKcKds8E1A", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json index 16336d01cdb..ce6563d9609 100644 --- a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json @@ -13,7 +13,7 @@ "top_surface_speed": "150", "bridge_speed": "30", "overhang_3_4_speed": "15", - "setting_id": "GP036", + "setting_id": "CBaL0vgwtgsd6Snj", "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "elefant_foot_compensation": "0.15", "sparse_infill_density": "25%", diff --git a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker (0.8 nozzle).json index 6aba88f111c..ce2b7b3f833 100644 --- a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.32 Standard @Snapmaker (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3587326841", + "setting_id": "CAhYrvimykZy7iSs", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker Artisan (0.8 nozzle).json index e823be4cc25..b599d87fc96 100644 --- a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.32 Standard @Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "195892532", + "setting_id": "LlNd3YLkajoYsKC0", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker J1 (0.8 nozzle).json index 5747e3d059e..986296cbd63 100644 --- a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.32 Standard @Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "1103138322", + "setting_id": "XiV24WQ6hnqEVMPr", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json index 194f69d1c6a..47ac276acc9 100644 --- a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json @@ -15,7 +15,7 @@ "bridge_speed": "30", "overhang_3_4_speed": "25", "overhang_4_4_speed": "5", - "setting_id": "GP033", + "setting_id": "iVRz2B0VBIBL1xVd", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker (0.6 nozzle).json index cc6da28812f..5c4ad7a5d52 100644 --- a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.34 Standard @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3323821663", + "setting_id": "STgfVV6KZwuNAJTp", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker Artisan (0.6 nozzle).json index c72bbcd72f7..352f0b751f7 100644 --- a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.34 Standard @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "3004749888", + "setting_id": "DBXZw70yr42NPFBZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker J1 (0.6 nozzle).json index 91eb286bd2e..8686fac739e 100644 --- a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.34 Standard @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "1036004160", + "setting_id": "s06qimkxiUBykIsi", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker (0.8 nozzle).json index ffe6096664f..9e9cb836802 100644 --- a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.36 Standard @Snapmaker (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "1205536673", + "setting_id": "8mwvBLOeeXiUA35z", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker Artisan (0.8 nozzle).json index 4e0f02547c0..4357e58d05b 100644 --- a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.36 Standard @Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "3805809743", + "setting_id": "N7vC6kYJqp40LY7W", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker J1 (0.8 nozzle).json index 4f76da75b5b..bedb42aed12 100644 --- a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.36 Standard @Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "798218413", + "setting_id": "2OSmY8NEZvC4o2va", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json index 1bd0a8c18a5..ddd97a76c35 100644 --- a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json @@ -13,7 +13,7 @@ "top_surface_speed": "150", "bridge_speed": "30", "overhang_3_4_speed": "15", - "setting_id": "GP030", + "setting_id": "C0PiCFd3P222knX9", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker (0.6 nozzle).json index 9f5610a3636..79d8086f1a5 100644 --- a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.38 Standard @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "2876749174", + "setting_id": "1PxsyiR4zEgwqAvG", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker Artisan (0.6 nozzle).json index 1b256cee49a..e65f9dd6317 100644 --- a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.38 Standard @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1408693644", + "setting_id": "453isxBtQ278tqPl", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker J1 (0.6 nozzle).json index 89e6e925343..198a83b1fdf 100644 --- a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.38 Standard @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2402668673", + "setting_id": "O5DAosMnkQZlKLZu", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.40 Extra Draft @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.40 Extra Draft @Snapmaker U1 (0.6 nozzle).json index c64c5d203f6..265c91eb35d 100644 --- a/resources/profiles/Snapmaker/process/0.40 Extra Draft @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.40 Extra Draft @Snapmaker U1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.40 Extra Draft @Snapmaker U1 (0.6 nozzle)", "inherits": "fdm_process_U1_0.6_common", "from": "system", - "setting_id": "GP004_06_040", + "setting_id": "rAUffOThYmj9FVTw", "instantiation": "true", "description": "Maximum-speed profile for the Snapmaker U1 with 0.6 mm nozzles. 0.4 mm layer height for rapid prototyping where surface finish is not critical.", "layer_height": "0.40", diff --git a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker (0.8 nozzle).json index 3995f0f1d5c..05205f3a8eb 100644 --- a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.40 Standard @Snapmaker (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "2678033582", + "setting_id": "2aC1Z3pm0mC2DSNW", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker Artisan (0.8 nozzle).json index 959660e636a..d90fa0aaadb 100644 --- a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.40 Standard @Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "2628115465", + "setting_id": "U0mILMuJdZ2LNYsm", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker J1 (0.8 nozzle).json index 90996a903d3..cb3557bc227 100644 --- a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.40 Standard @Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2366200641", + "setting_id": "hLro9SIf4GzbYg45", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json index 851b1e67f66..24edfabf6da 100644 --- a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json @@ -15,7 +15,7 @@ "bridge_speed": "30", "overhang_3_4_speed": "25", "overhang_4_4_speed": "5", - "setting_id": "GP009", + "setting_id": "VqkPgUtZi159BKpJ", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker (0.6 nozzle).json index e5f1c086f7b..64c0394ee65 100644 --- a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.42 Draft @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "886975587", + "setting_id": "gnM4lNsbX2S3wonD", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker Artisan (0.6 nozzle).json index 92ec5f0d032..372be18eb83 100644 --- a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.42 Draft @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1891109323", + "setting_id": "grvHQBpHTT1BdbTa", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker J1 (0.6 nozzle).json index 03b3a0961f6..4b8949cc9ea 100644 --- a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.42 Draft @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2589039514", + "setting_id": "RMq3xKjrn0ptO9co", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json index 06297c087d0..d65ba8e688a 100644 --- a/resources/profiles/Snapmaker/process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json @@ -13,7 +13,7 @@ "top_surface_speed": "150", "bridge_speed": "30", "overhang_3_4_speed": "15", - "setting_id": "GP031", + "setting_id": "SVJzhQA3KQetRZmo", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker (0.8 nozzle).json index c9c85b2a1e9..9407cacd15b 100644 --- a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.48 Draft @Snapmaker (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "2532073691", + "setting_id": "HhDt2cb9e752wPxu", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker Artisan (0.8 nozzle).json index c9e3af9d21a..55a73e7e6c7 100644 --- a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.48 Draft @Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1018401408", + "setting_id": "NIQBjakw2NTMRlWv", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker J1 (0.8 nozzle).json index f0d6a1747de..7eb2426f703 100644 --- a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.48 Draft @Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "3841224085", + "setting_id": "FdCZuPw2ndJ5Eu3M", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json index 7f647e52dc9..08e054619e9 100644 --- a/resources/profiles/Snapmaker/process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json @@ -15,7 +15,7 @@ "bridge_speed": "30", "overhang_3_4_speed": "25", "overhang_4_4_speed": "5", - "setting_id": "GP034", + "setting_id": "5H6JWChFEo3zqoHQ", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json index 3a8d3bb2516..86b571d1f53 100644 --- a/resources/profiles/Snapmaker/process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json @@ -15,7 +15,7 @@ "bridge_speed": "30", "overhang_3_4_speed": "25", "overhang_4_4_speed": "5", - "setting_id": "GP035", + "setting_id": "JZEIXOUT33c7MrZj", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger layer height, and results in extremely apparent layer lines and much lower printing quality, but much shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/fdm_process_a400.json b/resources/profiles/Snapmaker/process/fdm_process_a400.json index 38248aa812c..39e7565f0b2 100644 --- a/resources/profiles/Snapmaker/process/fdm_process_a400.json +++ b/resources/profiles/Snapmaker/process/fdm_process_a400.json @@ -3,7 +3,6 @@ "name": "fdm_process_a400", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3085664947", "instantiation": "false", "initial_layer_print_height": "0.2", "enable_arc_fitting": "1", diff --git a/resources/profiles/Snapmaker/process/fdm_process_common.json b/resources/profiles/Snapmaker/process/fdm_process_common.json index 8e2ea83da83..6fb4fa2de44 100644 --- a/resources/profiles/Snapmaker/process/fdm_process_common.json +++ b/resources/profiles/Snapmaker/process/fdm_process_common.json @@ -2,7 +2,6 @@ "type": "process", "name": "fdm_process_common", "from": "system", - "setting_id": "2598417433", "instantiation": "false", "adaptive_layer_height": "0", "layer_height": "0.2", diff --git a/resources/profiles/Snapmaker/process/fdm_process_idex.json b/resources/profiles/Snapmaker/process/fdm_process_idex.json index 15c81557455..7e04710bd3c 100644 --- a/resources/profiles/Snapmaker/process/fdm_process_idex.json +++ b/resources/profiles/Snapmaker/process/fdm_process_idex.json @@ -3,7 +3,6 @@ "name": "fdm_process_idex", "inherits": "fdm_process_common", "from": "system", - "setting_id": "2703811679", "instantiation": "false", "initial_layer_print_height": "0.2", "enable_arc_fitting": "1", diff --git a/resources/profiles/Sovol.json b/resources/profiles/Sovol.json index a12a3364571..770ca55c957 100644 --- a/resources/profiles/Sovol.json +++ b/resources/profiles/Sovol.json @@ -1,7 +1,7 @@ { "name": "Sovol", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Sovol configurations", "machine_model_list": [ diff --git a/resources/profiles/Sovol/filament/Generic ABS @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic ABS @Sovol SV08 MAX.json index 1ea1faf7f87..8e043a5a488 100644 --- a/resources/profiles/Sovol/filament/Generic ABS @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic ABS @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "7julgReKEcp5tg0d", "name": "Generic ABS @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Generic PC @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic PC @Sovol SV08 MAX.json index e83b91dc8f7..ec1fefce990 100644 --- a/resources/profiles/Sovol/filament/Generic PC @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic PC @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "UPoqjanrvN173sVS", "name": "Generic PC @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Generic PETG @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic PETG @Sovol SV08 MAX.json index 824d400a85d..d23224b8f90 100644 --- a/resources/profiles/Sovol/filament/Generic PETG @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic PETG @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "ib7AtR3tQ2dSrFNP", "name": "Generic PETG @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Generic PLA @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic PLA @Sovol SV08 MAX.json index 1f3973041a1..7ef7748ec15 100644 --- a/resources/profiles/Sovol/filament/Generic PLA @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic PLA @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "kcFykpuuxMy7KwNu", "name": "Generic PLA @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Generic PLA Silk @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic PLA Silk @Sovol SV08 MAX.json index f767c5309ca..40f10eb1ede 100644 --- a/resources/profiles/Sovol/filament/Generic PLA Silk @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic PLA Silk @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "WAHQZmwHoS4WjoTx", "name": "Generic PLA Silk @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Generic TPU @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic TPU @Sovol SV08 MAX.json index 56b27f16b44..1c115fe8aaf 100644 --- a/resources/profiles/Sovol/filament/Generic TPU @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic TPU @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "hQByQ7FIhAiytli8", "name": "Generic TPU @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Polymaker PETG @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Polymaker PETG @Sovol SV08 MAX.json index cb27ef5d8eb..02b335f9103 100644 --- a/resources/profiles/Sovol/filament/Polymaker PETG @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Polymaker PETG @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "JBFKMaFtd7kO8Ksq", "name": "Polymaker PETG @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/SUNLU PETG @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/SUNLU PETG @Sovol SV08 MAX.json index 34b1b57d4b4..35ee5bcd032 100644 --- a/resources/profiles/Sovol/filament/SUNLU PETG @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/SUNLU PETG @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "x68SPQCqVacBSGd5", "name": "SUNLU PETG @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Sovol SV06 ACE ABS.json b/resources/profiles/Sovol/filament/Sovol SV06 ACE ABS.json index cfcbbdae3ba..c77c7812b67 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 ACE ABS.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 ACE ABS.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE ABS", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "okqqqm0P8ehlQuDY", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 ACE PETG.json b/resources/profiles/Sovol/filament/Sovol SV06 ACE PETG.json index 7b24efc3904..b8151d47f47 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 ACE PETG.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 ACE PETG.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE PETG", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5mtng0PM8CMglpD7", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json b/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json index 61de1fa8cc9..da10d948ab6 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE PLA", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kgtcANsbfwSbdgOh", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 ACE TPU.json b/resources/profiles/Sovol/filament/Sovol SV06 ACE TPU.json index 7984e95717e..3d560d99059 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 ACE TPU.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 ACE TPU.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE TPU", "inherits": "Generic TPU @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ERN0ozxmPhIMze0i", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE ABS.json b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE ABS.json index c68023d389d..42652117ef4 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE ABS.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE ABS.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus ACE ABS", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Me1iSJmocW35ClmN", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PETG.json b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PETG.json index 65af99db451..483d28af102 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PETG.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PETG.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus ACE PETG", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZrAm6Nm4FI7p4PgC", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PLA.json b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PLA.json index 5f6ae18784d..ef249ea17fc 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PLA.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PLA.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus ACE PLA", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YEEOGJYm4Z8W4vGV", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE TPU.json b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE TPU.json index 6c8c97cc7c3..2589b13e376 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE TPU.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE TPU.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus ACE TPU", "inherits": "Generic TPU @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oNucKLcIdxwBPpUN", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV07 PLA.json b/resources/profiles/Sovol/filament/Sovol SV07 PLA.json index 8db730c64b7..47fe781fcc9 100644 --- a/resources/profiles/Sovol/filament/Sovol SV07 PLA.json +++ b/resources/profiles/Sovol/filament/Sovol SV07 PLA.json @@ -3,7 +3,7 @@ "name": "Sovol SV07 PLA", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IHicmU5gzVf6G4F1", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV08 ABS.json b/resources/profiles/Sovol/filament/Sovol SV08 ABS.json index 05b10bbb7e4..0bb16950d3e 100644 --- a/resources/profiles/Sovol/filament/Sovol SV08 ABS.json +++ b/resources/profiles/Sovol/filament/Sovol SV08 ABS.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 ABS", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nq4vvrWqKjWKELEz", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV08 PETG.json b/resources/profiles/Sovol/filament/Sovol SV08 PETG.json index 9b1ea161f0a..4fe3cc866f4 100644 --- a/resources/profiles/Sovol/filament/Sovol SV08 PETG.json +++ b/resources/profiles/Sovol/filament/Sovol SV08 PETG.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 PETG", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CWd7KULbXvJeTTEy", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV08 PLA @SV08 0.2 nozzle.json b/resources/profiles/Sovol/filament/Sovol SV08 PLA @SV08 0.2 nozzle.json index 2e5d769f107..046d787dc5b 100644 --- a/resources/profiles/Sovol/filament/Sovol SV08 PLA @SV08 0.2 nozzle.json +++ b/resources/profiles/Sovol/filament/Sovol SV08 PLA @SV08 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 PLA @SV08 0.2 nozzle", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qmnuve3FgzrXgjPA", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV08 PLA.json b/resources/profiles/Sovol/filament/Sovol SV08 PLA.json index 81e89e05901..2132557b680 100644 --- a/resources/profiles/Sovol/filament/Sovol SV08 PLA.json +++ b/resources/profiles/Sovol/filament/Sovol SV08 PLA.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 PLA", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nnU0222BS0F1c5ki", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV08 TPU.json b/resources/profiles/Sovol/filament/Sovol SV08 TPU.json index 1d077be5972..a1d0cb0fdc5 100644 --- a/resources/profiles/Sovol/filament/Sovol SV08 TPU.json +++ b/resources/profiles/Sovol/filament/Sovol SV08 TPU.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 TPU", "inherits": "Generic TPU @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tpBbCQhcSJsBesnG", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero ABS.json b/resources/profiles/Sovol/filament/Sovol Zero ABS.json index f928254d828..ecd862970a3 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero ABS.json +++ b/resources/profiles/Sovol/filament/Sovol Zero ABS.json @@ -3,7 +3,7 @@ "name": "Sovol Zero ABS", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9pI7op6U4azpfNfb", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PC.json b/resources/profiles/Sovol/filament/Sovol Zero PC.json index 9d04032a974..ac866620dd5 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PC.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PC.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PC", "inherits": "Generic PC @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vuuZXnlrMgUKtSI0", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json index e4988a5a5b7..a458307c64f 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PETG HS Nozzle", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AfxHmpdOkMDJa2fk", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PETG.json b/resources/profiles/Sovol/filament/Sovol Zero PETG.json index b3931072e65..e7b328ac6f3 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PETG.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PETG.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PETG", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "75OJvkXlmbcaHQfW", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json index f3d581aece8..f7e634386cc 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PLA Basic HS Nozzle", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "i9wDnSEIrOBPbOZl", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json index c5dc9ac61f5..b7fb7f63e8f 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PLA Basic", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZVvOaMwZ7noevsYf", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json index d17c79ca827..d6b31b283dd 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PLA Silk HS Nozzle", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XxEJBNFLRltR2Xwn", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json index 30eea0cff2c..64c8b8a4653 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PLA Silk", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QowhGzqSwGQoAp1a", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero TPU.json b/resources/profiles/Sovol/filament/Sovol Zero TPU.json index 9f779e5bb09..307a58ff01b 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero TPU.json +++ b/resources/profiles/Sovol/filament/Sovol Zero TPU.json @@ -3,7 +3,7 @@ "name": "Sovol Zero TPU", "inherits": "Generic TPU @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iZHXx0RyRO096L0z", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/machine/Sovol SV01 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV01 0.4 nozzle.json index 66e4ba3155b..fe6d0dcd960 100644 --- a/resources/profiles/Sovol/machine/Sovol SV01 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV01 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "OrYBz2bwPIXQ0QZa", "name": "Sovol SV01 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/machine/Sovol SV01 Pro 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV01 Pro 0.4 nozzle.json index 1e11b05a34e..b06d237650a 100644 --- a/resources/profiles/Sovol/machine/Sovol SV01 Pro 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV01 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV01 Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "xJdpEJLw5JmUlPBH", "instantiation": "true", "printer_model": "Sovol SV01 Pro", "default_print_profile": "0.20mm Standard @Sovol SV01Pro", diff --git a/resources/profiles/Sovol/machine/Sovol SV02 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV02 0.4 nozzle.json index 1bf2a4834e1..65f382b90e5 100644 --- a/resources/profiles/Sovol/machine/Sovol SV02 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV02 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV02 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "e07wzF8K9ePoSPUD", "instantiation": "true", "printer_model": "Sovol SV02", "default_print_profile": "0.20mm Standard @Sovol SV02", diff --git a/resources/profiles/Sovol/machine/Sovol SV05 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV05 0.4 nozzle.json index c19872c053b..c6ed4efb9d4 100644 --- a/resources/profiles/Sovol/machine/Sovol SV05 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV05 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV05 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ljpHARdxa4iYSUPI", "instantiation": "true", "printer_model": "Sovol SV05", "default_print_profile": "0.20mm Standard @Sovol SV05", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 0.4 High-Speed nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 0.4 High-Speed nozzle.json index cfde94c5725..32726c753fb 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 0.4 High-Speed nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 0.4 High-Speed nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 0.4 High-Speed nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ShWzWhKWa9JASGUz", "instantiation": "true", "printer_model": "Sovol SV06", "default_print_profile": "0.20mm High-Speed @Sovol SV06", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 0.4 nozzle.json index 95320561c85..47adaf0762b 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "QxUTprTCpyEEp30y", "instantiation": "true", "printer_model": "Sovol SV06", "default_print_profile": "0.20mm Standard @Sovol SV06", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.2 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.2 nozzle.json index a8a3eefeb93..45030c23acf 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.2 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE 0.2 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "FCFa3jKKO1E8tCDd", "instantiation": "true", "printer_model": "Sovol SV06 ACE", "default_print_profile": "0.12mm Standard @Sovol SV06 ACE 0.2 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.4 nozzle.json index 09610ba88d7..9128747e51b 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "CEDYgg6mNzFCH7bK", "instantiation": "true", "printer_model": "Sovol SV06 ACE", "default_print_profile": "0.20mm Standard @Sovol SV06 ACE", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.6 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.6 nozzle.json index 85c434a57b5..a1433ec9144 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.6 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "bsROify59RvHQlk8", "instantiation": "true", "printer_model": "Sovol SV06 ACE", "default_print_profile": "0.30mm Standard @Sovol SV06 ACE 0.6 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.8 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.8 nozzle.json index e53e7915d74..5415c845e2d 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.8 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "wAwlBwcsKelYq7wZ", "instantiation": "true", "printer_model": "Sovol SV06 ACE", "default_print_profile": "0.40mm Standard @Sovol SV06 ACE 0.8 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 Plus 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 Plus 0.4 nozzle.json index 2343452c812..cd6d2de6bd9 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 Plus 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "fHfyr9rrVMqu1ruq", "instantiation": "true", "printer_model": "Sovol SV06 Plus", "default_print_profile": "0.20mm Standard @Sovol SV06Plus", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE 0.4 nozzle.json index 3f2eb876129..440ff3c88fb 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus ACE 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "OPYo1a3aIyXMdlI7", "instantiation": "true", "printer_model": "Sovol SV06 Plus ACE", "default_print_profile": "0.20mm Standard @Sovol SV06 Plus ACE", diff --git a/resources/profiles/Sovol/machine/Sovol SV07 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV07 0.4 nozzle.json index 6d981d160a8..513c7a3bca9 100644 --- a/resources/profiles/Sovol/machine/Sovol SV07 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV07 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV07 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "nqHcOb6QQy4kM8nO", "instantiation": "true", "printer_model": "Sovol SV07", "default_print_profile": "0.20mm Standard @Sovol SV07", diff --git a/resources/profiles/Sovol/machine/Sovol SV07 Plus 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV07 Plus 0.4 nozzle.json index 6941a3d6d1c..ef7b6f4986e 100644 --- a/resources/profiles/Sovol/machine/Sovol SV07 Plus 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV07 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV07 Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "RBpom11PPlgYlQl2", "instantiation": "true", "printer_model": "Sovol SV07 Plus", "default_print_profile": "0.20mm Standard @Sovol SV07 Plus", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 0.2 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 0.2 nozzle.json index 99e2e81386e..c81d26c959c 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 0.2 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 0.2 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "h3WmQz2a0dOCXHbH", "instantiation": "true", "printer_model": "Sovol SV08", "default_print_profile": "0.10mm Standard @Sovol SV08 0.2 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 0.4 nozzle.json index d5b289945a1..5aa5e4f14b5 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ogyad4pXAoqy9915", "instantiation": "true", "printer_model": "Sovol SV08", "default_print_profile": "0.20mm Standard @Sovol SV08", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 0.6 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 0.6 nozzle.json index f60670b3f34..2825fb9a83b 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 0.6 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "geB9aMk6xmyTpmj4", "instantiation": "true", "printer_model": "Sovol SV08", "default_print_profile": "0.30mm Standard @Sovol SV08 0.6 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 0.8 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 0.8 nozzle.json index 232dea8ae5c..6510857d6fd 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 0.8 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Isk4WSQ4RH23P3Wy", "instantiation": "true", "printer_model": "Sovol SV08", "default_print_profile": "0.20mm Standard @Sovol SV08 0.8 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.4 nozzle.json index fb9cdd04444..d71e6b448b7 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "MIHp3VCfT1e6gMjs", "name": "Sovol SV08 MAX 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.6 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.6 nozzle.json index 2ef88c40b35..4972eee5891 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.6 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "HR1xTYrAmc07KHs0", "name": "Sovol SV08 MAX 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.8 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.8 nozzle.json index 4f2dadd644f..32511e52ca8 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.8 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "8WhF31wX3mBoOqpx", "name": "Sovol SV08 MAX 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json index b9ee87a55cb..f4ae49b7cb6 100644 --- a/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol Zero 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "QclEa2nmpBiii6Y0", "instantiation": "true", "printer_model": "Sovol Zero", "default_print_profile": "0.20mm Standard @Sovol Zero 0.4 nozzle", diff --git a/resources/profiles/Sovol/process/0.08mm High Quality @Sovol SV06 ACE 0.4 nozzle.json b/resources/profiles/Sovol/process/0.08mm High Quality @Sovol SV06 ACE 0.4 nozzle.json index d859ce16262..9d44b2f1123 100644 --- a/resources/profiles/Sovol/process/0.08mm High Quality @Sovol SV06 ACE 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.08mm High Quality @Sovol SV06 ACE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm High Quality @Sovol SV06 ACE", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WQqoRN1avqbX8Pgd", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.10mm Standard @Sovol SV08 0.2 nozzle.json b/resources/profiles/Sovol/process/0.10mm Standard @Sovol SV08 0.2 nozzle.json index 8f8a95bf31b..8ab14fe7757 100644 --- a/resources/profiles/Sovol/process/0.10mm Standard @Sovol SV08 0.2 nozzle.json +++ b/resources/profiles/Sovol/process/0.10mm Standard @Sovol SV08 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Sovol SV08 0.2 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sTiNnwPQInBM8oMT", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.12mm Quality @Sovol SV06 ACE 0.4 nozzle.json b/resources/profiles/Sovol/process/0.12mm Quality @Sovol SV06 ACE 0.4 nozzle.json index 0bea786309d..f95e107e596 100644 --- a/resources/profiles/Sovol/process/0.12mm Quality @Sovol SV06 ACE 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.12mm Quality @Sovol SV06 ACE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Quality @Sovol SV06 ACE", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EGRlZsIz0TvybH5a", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.12mm Standard @Sovol SV06 ACE 0.2 nozzle.json b/resources/profiles/Sovol/process/0.12mm Standard @Sovol SV06 ACE 0.2 nozzle.json index 13d60049957..27723eb6fb8 100644 --- a/resources/profiles/Sovol/process/0.12mm Standard @Sovol SV06 ACE 0.2 nozzle.json +++ b/resources/profiles/Sovol/process/0.12mm Standard @Sovol SV06 ACE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Sovol SV06 ACE 0.2 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1nAnGTBSg9NbEjRl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json index 1a62425fc1a..5a9ceee8972 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV01Pro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "C5l9Xp7PFZJ8EUuI", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json index 4719b5d14c7..b86f3c50abf 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV02", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "XGwpYXpDBGmz3IST", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json index 029e91547ba..3f5b0329569 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV05", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hx4TRRO93eAhKRlo", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json index 9099cc6d961..3c7bc35311d 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV06", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "rDtPKzMhHP85acXh", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json index 113adeb9eb3..ab14ae1852b 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV06Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "L1YTQWBe8jGxUG5n", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json index 27a1580c8e9..ca8fffec797 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV07", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CCj4nI9LPvB6tBwv", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json index a99c1ff4a7c..0f1251d22da 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV07 Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Y7BQqmsJc3sCg5M4", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV08.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV08.json index 8e2f206c92a..a36b67382eb 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV08.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV08.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV08", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dtNZVowJXglP0ygk", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm High-Speed @Sovol SV06.json b/resources/profiles/Sovol/process/0.20mm High-Speed @Sovol SV06.json index d37bf373553..d4102b9521c 100644 --- a/resources/profiles/Sovol/process/0.20mm High-Speed @Sovol SV06.json +++ b/resources/profiles/Sovol/process/0.20mm High-Speed @Sovol SV06.json @@ -3,7 +3,7 @@ "name": "0.20mm High-Speed @Sovol SV06", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "S1iAf6JiKSas9AMw", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01.json index 88ea7f449d1..a830bec966c 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CFwXlxanOmqsdA48", "name": "0.20mm Standard @Sovol SV01", "from": "system", "inherits": "fdm_process_common", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json index 58da482ccf9..4d7be1276ae 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV01Pro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "i3AkK2cR13YkyVrJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json index 02b5564d88a..65a6f168064 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV02", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ASEHMkWIP3Z7M6Eg", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json index 4b293469778..529ffbc648d 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV05", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qz3ogX30ClF0lLRt", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 ACE.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 ACE.json index 1e943aec928..22efbbb514f 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 ACE.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 ACE.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV06 ACE", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vJmKSRBaoZ7y02CV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 Plus ACE.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 Plus ACE.json index 87f95181c86..39f9f21d9c2 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 Plus ACE.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 Plus ACE.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV06 Plus ACE", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7qkFiEhE4BGMZrDJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json index 737a2757dfb..45d822eb854 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV06", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "cremVs4Sj00nBWtu", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json index f6ca60c51f2..700232a3102 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV06Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bku5PsptBdjUrbQ6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json index 042b06b343d..4781a94d880 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV07", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "D6GOAXI1isGTNnfb", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json index 4ede35e9474..5e8957e16c8 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV07 Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "88ExWsak5lVw9qYZ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 0.4 nozzle.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 0.4 nozzle.json index 6db5e19b339..71786321185 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV08 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "v0m5eV5ZVA813MVP", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 MAX 0.4 nozzle.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 MAX 0.4 nozzle.json index 3cc925920ef..32cbc844293 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 MAX 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 MAX 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "sPSDTG9mKjIOuy4m", "name": "0.20mm Standard @Sovol SV08 MAX 0.4 nozzle", "from": "system", "inherits": "fdm_process_common", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08.json index ed142add8fc..3411f92dab1 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV08", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vYejAtfzNoeBDq00", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json index 208fc2bf879..6b1ea0db9a3 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol Zero 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ShJTVnJ492No1j2j", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "1", diff --git a/resources/profiles/Sovol/process/0.28mm Fast @Sovol SV06 ACE 0.4 nozzle.json b/resources/profiles/Sovol/process/0.28mm Fast @Sovol SV06 ACE 0.4 nozzle.json index 287e67a643b..19862486c17 100644 --- a/resources/profiles/Sovol/process/0.28mm Fast @Sovol SV06 ACE 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.28mm Fast @Sovol SV06 ACE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Fast @Sovol SV06 ACE", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ydon9OsrFa7A8L1F", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV06 ACE 0.6 nozzle.json b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV06 ACE 0.6 nozzle.json index 7889591b431..0b4210b7f31 100644 --- a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV06 ACE 0.6 nozzle.json +++ b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV06 ACE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Sovol SV06 ACE 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "n7KDWYlaTDObslGp", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 0.6 nozzle.json b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 0.6 nozzle.json index 891f51fd5a2..aa4c3fb1291 100644 --- a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 0.6 nozzle.json +++ b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Sovol SV08 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VGWhB6OKWJrzkfrC", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 MAX 0.6 nozzle.json b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 MAX 0.6 nozzle.json index ec11ce4d755..be242638fa7 100644 --- a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 MAX 0.6 nozzle.json +++ b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 MAX 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "EhJl99Rdzr3bYnjW", "name": "0.30mm Standard @Sovol SV08 MAX 0.6 nozzle", "from": "system", "inherits": "fdm_process_common", diff --git a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV06 ACE 0.8 nozzle.json b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV06 ACE 0.8 nozzle.json index 396ff14664f..165d9817f91 100644 --- a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV06 ACE 0.8 nozzle.json +++ b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV06 ACE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Sovol SV06 ACE 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hkA5BT13eWBp5BKQ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 0.8 nozzle.json b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 0.8 nozzle.json index 51c453aea5a..ccb9e95529e 100644 --- a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 0.8 nozzle.json +++ b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Sovol SV08 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "THLtL3Q597dBsUgK", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 MAX 0.8 nozzle.json b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 MAX 0.8 nozzle.json index 9142a28b2b7..e56135a0187 100644 --- a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 MAX 0.8 nozzle.json +++ b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 MAX 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "5UL3y12LS7RXWO0d", "name": "0.40mm Standard @Sovol SV08 MAX 0.8 nozzle", "from": "system", "inherits": "fdm_process_common", diff --git a/resources/profiles/Tiertime.json b/resources/profiles/Tiertime.json index 73f8575b98e..0742e8bce6e 100644 --- a/resources/profiles/Tiertime.json +++ b/resources/profiles/Tiertime.json @@ -1,6 +1,6 @@ { "name": "Tiertime", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Tiertime configurations", "machine_model_list": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime ABS.json b/resources/profiles/Tiertime/filament/Tiertime ABS.json index c42075e554a..58b18493351 100644 --- a/resources/profiles/Tiertime/filament/Tiertime ABS.json +++ b/resources/profiles/Tiertime/filament/Tiertime ABS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00", - "setting_id": "GFSB00", + "setting_id": "uAtyf2jCQEcv7D2r", "name": "Tiertime ABS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/filament/Tiertime ABS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime ABS@300HS.json index bd2bc3f95f5..1d716a957d7 100644 --- a/resources/profiles/Tiertime/filament/Tiertime ABS@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime ABS@300HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00_01", - "setting_id": "GFSB00", + "setting_id": "x1XBGyOHIgrD7PVs", "name": "Tiertime ABS@300HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/filament/Tiertime ASA.json b/resources/profiles/Tiertime/filament/Tiertime ASA.json index 13767de68e7..397f8084a9b 100644 --- a/resources/profiles/Tiertime/filament/Tiertime ASA.json +++ b/resources/profiles/Tiertime/filament/Tiertime ASA.json @@ -3,6 +3,7 @@ "name": "Tiertime ASA", "inherits": "fdm_filament_asa", "from": "system", + "setting_id": "6rwe3zrsvad1oq4C", "filament_id": "GFB01", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime ASA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime ASA@300HS.json index fee5cd9e1d2..165590114d3 100644 --- a/resources/profiles/Tiertime/filament/Tiertime ASA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime ASA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime ASA@300HS", "inherits": "fdm_filament_asa", "from": "system", + "setting_id": "FreBeBZ1r1VF4ouQ", "filament_id": "GFB01_01", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ABS.json b/resources/profiles/Tiertime/filament/Tiertime Generic ABS.json index 50b6ccdcfa1..4319a9cd584 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic ABS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ABS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic ABS", "inherits": "fdm_filament_abs", "from": "system", + "setting_id": "ImJ3Urgk3VVtwceI", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ABS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic ABS@300HS.json index 3517416c74d..6e3d41f5fcb 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic ABS@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ABS@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic ABS@300HS", "inherits": "fdm_filament_abs", "from": "system", + "setting_id": "tCw1f7MxFjxPr7Ci", "filament_id": "GFB99_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ASA.json b/resources/profiles/Tiertime/filament/Tiertime Generic ASA.json index 0ce348096e7..4280c28c4d2 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic ASA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ASA.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic ASA", "inherits": "fdm_filament_asa", "from": "system", + "setting_id": "T1AzUXSewNk5Bj3x", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ASA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic ASA@300HS.json index 50789c335d7..062cf8e345a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic ASA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ASA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic ASA@300HS", "inherits": "fdm_filament_asa", "from": "system", + "setting_id": "7C5PjCg1vmTQFXWO", "filament_id": "GFB98_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic BVOH.json b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH.json index ad0db3608a9..a02176c07dd 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic BVOH.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic BVOH", "inherits": "fdm_filament_bvoh", "from": "system", + "setting_id": "dhrpnirMnet0hJZl", "filament_id": "GFS97", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic BVOH@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH@300HS.json index baf8317406d..abe8d42643f 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic BVOH@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic BVOH@300HS", "inherits": "fdm_filament_bvoh", "from": "system", + "setting_id": "xfFXVyGfmXiu508N", "filament_id": "GFS97_01", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic EVA.json b/resources/profiles/Tiertime/filament/Tiertime Generic EVA.json index eaefa2581bb..e0683c378da 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic EVA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic EVA.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic EVA", "inherits": "fdm_filament_eva", "from": "system", + "setting_id": "ev5w69eBuTCYXB2d", "filament_id": "GFR99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic EVA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic EVA@300HS.json index 4bed33d9c3f..14ea1b88d13 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic EVA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic EVA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic EVA@300HS", "inherits": "fdm_filament_eva", "from": "system", + "setting_id": "pXuh92Zf1zPiaDXg", "filament_id": "GFR99_01", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic HIPS.json b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS.json index 924765d59b5..213181630b1 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic HIPS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic HIPS", "inherits": "fdm_filament_hips", "from": "system", + "setting_id": "sFY2AyXFzAFuj6sv", "filament_id": "GFS98", "instantiation": "true", "filament_is_support": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic HIPS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS@300HS.json index 3adc038ba73..234412a67db 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic HIPS@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic HIPS@300HS", "inherits": "fdm_filament_hips", "from": "system", + "setting_id": "9epHDviPNHRB5bPD", "filament_id": "GFS98_01", "instantiation": "true", "filament_is_support": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF.json index 0d9a1570ae1..4e04b050cf6 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_pa", "from": "system", "filament_id": "GFN98", - "setting_id": "GFSN99", + "setting_id": "DOWYicvaXaTMfzBU", "instantiation": "true", "fan_cooling_layer_time": [ "5" diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF@300HS.json index d106e6b1217..bd618a1f83e 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF@300HS.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_pa", "from": "system", "filament_id": "GFN98_02", - "setting_id": "GFSN99", + "setting_id": "nRxvUKo1YXE8daoX", "instantiation": "true", "fan_cooling_layer_time": [ "5" diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA.json index c2d2c2c88b0..b5fbdf1bcc6 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_pa", "from": "system", "filament_id": "GFN99", - "setting_id": "GFSN98", + "setting_id": "DmP33sDwKcBDRmDK", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA@300HS.json index 5cf5228b01a..131ea71f3c3 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA@300HS.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_pa", "from": "system", "filament_id": "GFN99_01", - "setting_id": "GFSN98", + "setting_id": "ERn1WYMiSjs6a82N", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PC.json b/resources/profiles/Tiertime/filament/Tiertime Generic PC.json index df4edd54079..4044d45fe3c 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PC.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PC.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PC", "inherits": "fdm_filament_pc", "from": "system", + "setting_id": "5wzlA0sFj2xElixU", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PC@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PC@300HS.json index bf1b45a4b38..6b919af688e 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PC@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PC@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PC@300HS", "inherits": "fdm_filament_pc", "from": "system", + "setting_id": "i2ShskYbiq61UJ1B", "filament_id": "GFC99_01", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PCTG.json b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG.json index ee8a7ae4424..2e4dc2d0367 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PCTG.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PCTG", "inherits": "fdm_filament_pctg", "from": "system", + "setting_id": "UDqS8gFlHvPIysFk", "filament_id": "GFG97", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PCTG@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG@300HS.json index 8dff3b50d66..10b87ef2270 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PCTG@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PCTG@300HS", "inherits": "fdm_filament_pctg", "from": "system", + "setting_id": "2Qbbi90zWBoo9dBl", "filament_id": "GFG97-01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF.json index aa6db8e8838..1cd9a569e67 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PE-CF", "inherits": "fdm_filament_pe", "from": "system", + "setting_id": "jzT1pay155tbaY9M", "filament_id": "GFP98", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF@300HS.json index 0a7932200d2..81b096e4b22 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PE-CF@300HS", "inherits": "fdm_filament_pe", "from": "system", + "setting_id": "5ChSjqNjRn8QArJP", "filament_id": "GFP98_01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE.json index 4d24e8c4c0e..16b9244f12f 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PE.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PE", "inherits": "fdm_filament_pe", "from": "system", + "setting_id": "bYC8MPsm3VIgwaSt", "filament_id": "GFP99", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE@300HS.json index b87b39a399f..7ebf4377fea 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PE@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PE@300HS", "inherits": "fdm_filament_pe", "from": "system", + "setting_id": "ZbU3Ov0P5wtbudQ0", "filament_id": "GFP99_01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF.json index 05e7c29567b..c3907360a9f 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PETG-CF", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "zA6nHgNkxBxGKw0w", "filament_id": "GFG98", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF@300HS.json index a2126d32508..04f803a53ee 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PETG-CF@300HS", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "jBUy8xUDg53e51kz", "filament_id": "GFG98_01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG.json index 5bcc2544f1e..e261373c3d4 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PETG.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PETG", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "UevLlG43knAdcET2", "filament_id": "GFG99", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG@300HS.json index 0f141b3a664..cfec6ee335e 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PETG@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PETG@300HS", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "ZZmmVicb1p0wb5r1", "filament_id": "GFG99_01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PHA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PHA.json index 8acd782af3e..f2be140f37e 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PHA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PHA.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PHA", "inherits": "fdm_filament_pha", "from": "system", + "setting_id": "tFuE7IEbeGEhCNnz", "filament_id": "GFR98", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PHA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PHA@300HS.json index 3d6c0181c94..e6e04758056 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PHA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PHA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PHA@300HS", "inherits": "fdm_filament_pha", "from": "system", + "setting_id": "de5eveMr3bI3OCtF", "filament_id": "GFR98_01", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed.json index ba10655ea33..a77cb529eaa 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA High Speed", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "Ms3c6DePE0cjBeQ4", "filament_id": "GFL95", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed@300HS.json index dc23cb169af..d36f12715be 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA High Speed@300HS", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "e0vVCCT6Tw4061is", "filament_id": "GFL95_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk.json index 9841fc95fec..f2ba37e0ebc 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA Silk", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "RgKM4PxtAasidTe5", "filament_id": "GFL96", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk@300HS.json index 7ee1c089c3f..b1911a7e9f5 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA Silk@300HS", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "yV358AeiALOn6xVr", "filament_id": "GFL96_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF.json index 3d83ed89276..a78f6e04382 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "maM4lXic0F10faAb", "filament_id": "GFL98", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF@300HS.json index 7016d6f79ae..3cc2f855f12 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA-CF@300HS", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "3QSGv6pAz9ihFVuD", "filament_id": "GFL98_01", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA.json index cc40a5c0c7e..768f0e293ad 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "q9W1goEbw6UUrNY3", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA@300HS.json index cb3db3f1d42..6ba33d8004d 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA@300HS", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "jTSVVOuHuQqETOpe", "filament_id": "GFL99_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF.json index 1cb460698a2..0c1ae8cae18 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP-CF", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "O5VvyfY5CV6IfMPQ", "filament_id": "GFP96", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF@300HS.json index 96f10c25dcb..5874361c2a3 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP-CF@300HS", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "3TZu7e58qrjP4F4u", "filament_id": "GFP96_01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF.json index c8319c06245..bde8189b363 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP-GF", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "ZQnzXtnTMVMVMNaS", "filament_id": "GFP95", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF@300HS.json index 82515c1635a..b8a677999a2 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP-GF@300HS", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "WKwUmsEhhYFyGAP5", "filament_id": "GFP95_01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP.json index c152b24b5eb..895dd36cee6 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "3ZYx92CbNBiocyXx", "filament_id": "GFP97", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP@300HS.json index 578c118b0e8..473e1b66438 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP@300HS", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "lx9zoOh3ALDlLasf", "filament_id": "GFP97_01", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF.json index a77ad3f0703..9dba1d2e8a5 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPA-CF", "inherits": "fdm_filament_ppa", "from": "system", + "setting_id": "2zYiuKYR7bESaCnd", "filament_id": "GFN97", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF@300HS.json index be06b598469..866d9981bb3 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPA-CF@300HS", "inherits": "fdm_filament_ppa", "from": "system", + "setting_id": "wLH8aGr4ZNiHazwA", "filament_id": "GFN97_01", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF.json index 0575dee63d1..88d413d9768 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPA-GF", "inherits": "fdm_filament_ppa", "from": "system", + "setting_id": "hYkZEmk1B8X9EcF8", "filament_id": "GFN96", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF@300HS.json index c11639f54a5..120bbce3c1a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPA-GF@300HS", "inherits": "fdm_filament_ppa", "from": "system", + "setting_id": "1zAhSxsuv3wxgBtQ", "filament_id": "GFN96_01", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF.json index 78223006088..d55bfb7557a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPS-CF", "inherits": "fdm_filament_pps", "from": "system", + "setting_id": "E0gbADj0OHkGSOxt", "filament_id": "GFT98", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF@300HS.json index 6928fb1c0d4..b4feee25999 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPS-CF@300HS", "inherits": "fdm_filament_pps", "from": "system", + "setting_id": "6UHEejfZvhQGA4vB", "filament_id": "GFT98_01", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS.json index a1bd677135e..8fcf9ee41a5 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPS", "inherits": "fdm_filament_pps", "from": "system", + "setting_id": "2L1eOtxSeCJxW3RV", "filament_id": "GFT97", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS@300HS.json index c0c465a6b4d..853646bf085 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPS@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPS@300HS", "inherits": "fdm_filament_pps", "from": "system", + "setting_id": "5TZhbLxtLq6kSJJY", "filament_id": "GFT97_01", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PVA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PVA.json index fc3939ca915..a77791002e9 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PVA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PVA.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PVA", "inherits": "fdm_filament_pva", "from": "system", + "setting_id": "bTkxwDd1TU8TUqVC", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PVA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PVA@300HS.json index 3641bfc1d59..f075f81a59a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PVA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PVA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PVA@300HS", "inherits": "fdm_filament_pva", "from": "system", + "setting_id": "BQ6G75c9eLQQ7ULg", "filament_id": "GFS99_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic SBS.json b/resources/profiles/Tiertime/filament/Tiertime Generic SBS.json index 44bd01bb93e..353838867a4 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic SBS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic SBS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic SBS", "inherits": "fdm_filament_sbs", "from": "system", + "setting_id": "tHfCQJdD7qiIF4uT", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic SBS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic SBS@300HS.json index b0e3060ee0e..429f1bd78a4 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic SBS@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic SBS@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic SBS@300HS", "inherits": "fdm_filament_sbs", "from": "system", + "setting_id": "neqjohDEPRiOa6ut", "filament_id": "GFL99_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic TPU.json b/resources/profiles/Tiertime/filament/Tiertime Generic TPU.json index 2b310d64cea..8a9e07a22fb 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic TPU.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic TPU.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_tpu", "from": "system", "filament_id": "GFU99", - "setting_id": "GFSR99", + "setting_id": "Viy3kUE0cTV2rMiC", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic TPU@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic TPU@300HS.json index 31975c0c820..456acc8a4ee 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic TPU@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic TPU@300HS.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_tpu", "from": "system", "filament_id": "GFU99_01", - "setting_id": "GFSR99", + "setting_id": "wgOtq6REuUQmNe5R", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Tiertime/filament/Tiertime PA6-CF.json b/resources/profiles/Tiertime/filament/Tiertime PA6-CF.json index 3e75f926501..8c165a210d8 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PA6-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime PA6-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime PA6-CF", "inherits": "fdm_filament_pa", "from": "system", + "setting_id": "HuOPyruYQNhxsjYW", "filament_id": "GFN05", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PA6-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PA6-CF@300HS.json index 061836edae4..9d84f623836 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PA6-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PA6-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PA6-CF@300HS", "inherits": "fdm_filament_pa", "from": "system", + "setting_id": "XniESd6DwW58wgYU", "filament_id": "GFN05_01", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PC.json b/resources/profiles/Tiertime/filament/Tiertime PC.json index ecfc6a9041f..4d0ce8c9faf 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PC.json +++ b/resources/profiles/Tiertime/filament/Tiertime PC.json @@ -3,6 +3,7 @@ "name": "Tiertime PC", "inherits": "fdm_filament_pc", "from": "system", + "setting_id": "ImTbFOOUrv2pQbCu", "filament_id": "GFC00", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PC@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PC@300HS.json index ee6d532bea9..fb3f03b63d9 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PC@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PC@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PC@300HS", "inherits": "fdm_filament_pc", "from": "system", + "setting_id": "nktjGLDy0Gjl0dO8", "filament_id": "GFC00_01", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PET-CF.json b/resources/profiles/Tiertime/filament/Tiertime PET-CF.json index 480bb2fd68e..60a91bd9370 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PET-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime PET-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime PET-CF", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "WjpnXYqwyoeHdaC9", "filament_id": "GFT01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PET-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PET-CF@300HS.json index 9c5a82ae085..d844b97bf42 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PET-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PET-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PET-CF@300HS", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "kHWlt3zl53mXcEGp", "filament_id": "GFT01_01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PETG.json b/resources/profiles/Tiertime/filament/Tiertime PETG.json index 0a31e667991..e4b53133936 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PETG.json +++ b/resources/profiles/Tiertime/filament/Tiertime PETG.json @@ -3,6 +3,7 @@ "name": "Tiertime PETG", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "lw6WCNgazXfTwS4z", "filament_id": "GFG00", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PETG@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PETG@300HS.json index ffee7a62e26..822d39d12dd 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PETG@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PETG@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PETG@300HS", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "bSujcskPkCuGi3At", "filament_id": "GFG00_01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA-CF.json b/resources/profiles/Tiertime/filament/Tiertime PLA-CF.json index 01c0f21892e..86a1895caa0 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PLA-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime PLA-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime PLA-CF", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "AN8Ptxqrd3fAfsAk", "filament_id": "GFA50", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PLA-CF@300HS.json index 4ab1abc22a3..9a2dccc6cb9 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PLA-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PLA-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PLA-CF@300HS", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "S7OJaqjGSnkaPyDQ", "filament_id": "GFA50_01", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA.json b/resources/profiles/Tiertime/filament/Tiertime PLA.json index 3bee7048ad3..22729a97766 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PLA.json +++ b/resources/profiles/Tiertime/filament/Tiertime PLA.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFA00", - "setting_id": "GFSA00", + "setting_id": "dlXQZNrJfvkJ3kWs", "name": "Tiertime PLA", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PLA@300HS.json index 6e28f5955ff..b12f813f3ed 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PLA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PLA@300HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFA00_01", - "setting_id": "GFSA00", + "setting_id": "bqWrzfz6CXHohbpL", "name": "Tiertime PLA@300HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/filament/Tiertime PVA.json b/resources/profiles/Tiertime/filament/Tiertime PVA.json index 2e5cad40a02..7adba03ec39 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PVA.json +++ b/resources/profiles/Tiertime/filament/Tiertime PVA.json @@ -3,6 +3,7 @@ "name": "Tiertime PVA", "inherits": "fdm_filament_pva", "from": "system", + "setting_id": "9Z1HdjB3dx1Rlyng", "filament_id": "GFS04", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PVA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PVA@300HS.json index 2a725aa17d8..722e3efd60a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PVA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PVA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PVA@300HS", "inherits": "fdm_filament_pva", "from": "system", + "setting_id": "1CwFwvd5cNbZwY95", "filament_id": "GFS04_01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime TPU 95A.json b/resources/profiles/Tiertime/filament/Tiertime TPU 95A.json index 9168f676b42..6feff326390 100644 --- a/resources/profiles/Tiertime/filament/Tiertime TPU 95A.json +++ b/resources/profiles/Tiertime/filament/Tiertime TPU 95A.json @@ -3,6 +3,7 @@ "name": "Tiertime TPU 95A", "inherits": "fdm_filament_tpu", "from": "system", + "setting_id": "aeeRALQ6vydj2vbR", "filament_id": "GFU01", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime TPU 95A@300HS.json b/resources/profiles/Tiertime/filament/Tiertime TPU 95A@300HS.json index 55d7409f7cd..f4340bfed34 100644 --- a/resources/profiles/Tiertime/filament/Tiertime TPU 95A@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime TPU 95A@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime TPU 95A@300HS", "inherits": "fdm_filament_tpu", "from": "system", + "setting_id": "6ee2z5F26fqKny4n", "filament_id": "GFU01_01", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Tiertime/machine/Tiertime UP300 HS 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP300 HS 0.4 nozzle.json index bf9c3d41c45..63c5e51e503 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP300 HS 0.4 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP300 HS 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "lgltuIatOQ6w6QbU", "name": "Tiertime UP300 HS 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP310 Pro 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP310 Pro 0.4 nozzle.json index ca8e29cb1d6..8baee541a67 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP310 Pro 0.4 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP310 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "HMZ8IXHF9SCYY794", "name": "Tiertime UP310 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.4 nozzle.json index 4e8e1b8cfdf..ce65946a416 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.4 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "92AYB3s93gFz7ZPX", "name": "Tiertime UP400 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.6 nozzle.json index 25b45f9ee0e..272017038ff 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM007", + "setting_id": "6NLuMd5QTEV7Dz7y", "name": "Tiertime UP400 Pro 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.8 nozzle.json index 6ceabf07ef6..f43bda57a84 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM008", + "setting_id": "MieJsq4OcDXSPeYE", "name": "Tiertime UP400 Pro 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.4 nozzle.json index b407fe190c4..a18c2a938ff 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.4 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM006", + "setting_id": "6aAsuPmotiaU41L4", "name": "Tiertime UP600 HS 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.6 nozzle.json index 0dd5b633815..ea706dede8f 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM009", + "setting_id": "4xd2mlCoTuJoXmOf", "name": "Tiertime UP600 HS 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.8 nozzle.json index 2e72d1c2911..d114741fb96 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM010", + "setting_id": "tqKPATsUnwQWjXso", "name": "Tiertime UP600 HS 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP300 HS.json index 701ef0a2bbd..68d60b1e2c9 100644 --- a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP300 HS.json +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP300 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "kJslDhHisZSqoNLu", "name": "0.12mm Fine @Tiertime UP300 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP310 Pro.json index 04933f3961b..0b3375f6568 100644 --- a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP310 Pro.json +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP310 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "u1Hfo84e0ffI39MP", "name": "0.12mm Fine @Tiertime UP310 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP400 Pro.json index 00fb18a561d..019d4617aff 100644 --- a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP400 Pro.json +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP400 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "LiT2jc5HHSsxdPOY", "name": "0.12mm Fine @Tiertime UP400 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP600 HS.json index 0761223af8a..63f7b269d15 100644 --- a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP600 HS.json +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP600 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP026", + "setting_id": "LwKN2IKIgniQAUbc", "name": "0.12mm Fine @Tiertime UP600 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP300 HS.json index 8712c3b726a..ed678b16bdc 100644 --- a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP300 HS.json +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP300 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "deEyVahMnJBIUh5W", "name": "0.16mm Optimal @Tiertime UP300 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP310 Pro.json index 0b6d9a21cf8..189ac439e29 100644 --- a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP310 Pro.json +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP310 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "89hv0us5IMmhpDol", "name": "0.16mm Optimal @Tiertime UP310 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP400 Pro.json index d1a95afc072..7a4b5943a54 100644 --- a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP400 Pro.json +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP400 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "yZBSB83IptM1eMzO", "name": "0.16mm Optimal @Tiertime UP400 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP600 HS.json index 40454a58eda..b172f23ca48 100644 --- a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP600 HS.json +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP600 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP025", + "setting_id": "BfOJljkGUCnVJ0zM", "name": "0.16mm Optimal @Tiertime UP600 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP400 Pro 0.6 nozzle.json index fe136a59b1e..d9ef9fe3326 100644 --- a/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP015", + "setting_id": "RhyeKvmwkRZhOQwa", "instantiation": "true", "description": "It has a smaller layer height and results in smoother surface and higher printing quality.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP600 HS 0.6 nozzle.json index f268d70e32c..241b3191143 100644 --- a/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.18_nozzle_0.6_HS", "from": "system", - "setting_id": "GP021", + "setting_id": "MgQfZdkafqp9eRQO", "instantiation": "true", "description": "It has a smaller layer height and results in smoother surface and higher printing quality.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP300 HS.json index 3e31cd360ad..8d9947736b2 100644 --- a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP300 HS.json +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP300 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "4a1IpFohcCPCxI1I", "name": "0.20mm Standard @Tiertime UP300 HS", "from": "system", "inherits": "fdm_process_tiertime_HS_common", diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP310 Pro.json index a8eaa3230df..834b645e2e4 100644 --- a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP310 Pro.json +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP310 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "48QrtoSmDHWLbuck", "name": "0.20mm Standard @Tiertime UP310 Pro", "from": "system", "inherits": "fdm_process_tiertime_common", diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP400 Pro.json index 66724f13bc9..d196edc5ca7 100644 --- a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP400 Pro.json +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP400 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP001", + "setting_id": "QotYAumKUh7h5cBH", "name": "0.20mm Standard @Tiertime UP400 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP600 HS.json index b820bb7bf07..3db84cce384 100644 --- a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP600 HS.json +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP600 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP024", + "setting_id": "FKDS8Ql5ApZdlsH8", "name": "0.20mm Standard @Tiertime UP600 HS", "from": "system", "inherits": "fdm_process_tiertime_HS_common", diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP300 HS.json index 1ed3dfeadf9..a209d85d93f 100644 --- a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP300 HS.json +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP300 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "clvHKafqg81lxC4s", "name": "0.24mm Draft @Tiertime UP300 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP310 Pro.json index a2361a56b42..bb2d11bcf53 100644 --- a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP310 Pro.json +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP310 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "zr1zPgeqxJog1iO6", "name": "0.24mm Draft @Tiertime UP310 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP400 Pro.json index 1ce4b1d4bd5..8ad2181ba3a 100644 --- a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP400 Pro.json +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP400 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "L84Tpur6DqX0WI9U", "name": "0.24mm Draft @Tiertime UP400 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP600 HS.json index 7647b0ba170..730b3fdb910 100644 --- a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP600 HS.json +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP600 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP027", + "setting_id": "D7fl6dZLCLa5n8Es", "name": "0.24mm Draft @Tiertime UP600 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP400 Pro 0.8 nozzle.json index f326ab2e896..c45c24b84a1 100644 --- a/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP400 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine @Tiertime UP400 Pro 0.8 nozzle", "inherits": "fdm_process_tiertime_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP027", + "setting_id": "aIJRdPXiyB5yUtVg", "instantiation": "true", "description": "It has a smaller layer height and results in smoother surface and higher printing quality.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP600 HS 0.8 nozzle.json index 3ce977b8a0b..0eadac356d4 100644 --- a/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP600 HS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine @Tiertime UP600 HS 0.8 nozzle", "inherits": "fdm_process_tiertime_0.24_nozzle_0.8_HS", "from": "system", - "setting_id": "GP032", + "setting_id": "elPtw7ApN0MhXk3e", "instantiation": "true", "description": "It has a smaller layer height and results in smoother surface and higher printing quality.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP400 Pro 0.6 nozzle.json index 6250ed17e97..abccc0329be 100644 --- a/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP016", + "setting_id": "ZepNPFY7I5atXJhT", "instantiation": "true", "description": "It has a balanced layer height for good quality and reasonable printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP600 HS 0.6 nozzle.json index f887fdca0a6..9e04a6e6b57 100644 --- a/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.24_nozzle_0.6_HS", "from": "system", - "setting_id": "GP022", + "setting_id": "KqXbGOmER4LTCJyR", "instantiation": "true", "description": "It has a balanced layer height for good quality and reasonable printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP300 HS.json index ed4d4ffb863..34f7f7221aa 100644 --- a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP300 HS.json +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP300 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CBOtpFjUICGttrgV", "name": "0.28mm Extra Draft @Tiertime UP300 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP310 Pro.json index 86c8ed3abb3..0b6617941f8 100644 --- a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP310 Pro.json +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP310 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ODXIraViN4sdzaKe", "name": "0.28mm Extra Draft @Tiertime UP310 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP400 Pro.json index 36d22119597..5c11562a223 100644 --- a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP400 Pro.json +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP400 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "bfRd7zHG5JoOWdXb", "name": "0.28mm Extra Draft @Tiertime UP400 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP600 HS.json index 51b651f8f5b..60b1b484eed 100644 --- a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP600 HS.json +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP600 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP028", + "setting_id": "gl1nKSyprhumL6ci", "name": "0.28mm Extra Draft @Tiertime UP600 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP400 Pro 0.6 nozzle.json index 1a4c677265a..34d74cb1ad7 100644 --- a/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP017", + "setting_id": "doqZXTwqsRl0Xbbo", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP600 HS 0.6 nozzle.json index 2203f6aebb2..747872499e6 100644 --- a/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.30_nozzle_0.6_HS", "from": "system", - "setting_id": "GP023", + "setting_id": "feDmukIZ41HO21a6", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP400 Pro 0.6 nozzle.json index 67943c0afbe..82e011345fd 100644 --- a/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP018", + "setting_id": "7XmclqpJEKUMRkAi", "instantiation": "true", "description": "It has a big layer height with optimized settings for stronger parts.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP600 HS 0.6 nozzle.json index 0ed196b5973..03d21e34d18 100644 --- a/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.30_nozzle_0.6_HS", "from": "system", - "setting_id": "GP024", + "setting_id": "1iJkZeHaeVc8S4GX", "instantiation": "true", "description": "It has a big layer height with optimized settings for stronger parts.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP400 Pro 0.8 nozzle.json index 868c5d27ab5..ff33334f905 100644 --- a/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP400 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Tiertime UP400 Pro 0.8 nozzle", "inherits": "fdm_process_tiertime_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP028", + "setting_id": "UUbjeI3ZdP1eyTr7", "instantiation": "true", "description": "It has a balanced layer height for good quality and reasonable printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP600 HS 0.8 nozzle.json index 164d69fe770..8eaeb571af8 100644 --- a/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP600 HS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Tiertime UP600 HS 0.8 nozzle", "inherits": "fdm_process_tiertime_0.32_nozzle_0.8_HS", "from": "system", - "setting_id": "GP033", + "setting_id": "UfghPlQt1E1jSveG", "instantiation": "true", "description": "It has a balanced layer height for good quality and reasonable printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP400 Pro 0.6 nozzle.json index 4e2227c4f59..71090fa613c 100644 --- a/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP019", + "setting_id": "pbY5WSAxRGZxbkHK", "instantiation": "true", "description": "It has a bigger layer height for faster printing but with more visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP600 HS 0.6 nozzle.json index d482527d8fc..5e192e28ee5 100644 --- a/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.36_nozzle_0.6_HS", "from": "system", - "setting_id": "GP025", + "setting_id": "JvkM4CnQkKrxFCHj", "instantiation": "true", "description": "It has a bigger layer height for faster printing but with more visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP400 Pro 0.8 nozzle.json index 62b34c44642..d3518d81d5f 100644 --- a/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP400 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Tiertime UP400 Pro 0.8 nozzle", "inherits": "fdm_process_tiertime_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP029", + "setting_id": "W3KtcxitNy5O6vIb", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP600 HS 0.8 nozzle.json index a647dab7f13..ef0ee0040d8 100644 --- a/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP600 HS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Tiertime UP600 HS 0.8 nozzle", "inherits": "fdm_process_tiertime_0.40_nozzle_0.8_HS", "from": "system", - "setting_id": "GP034", + "setting_id": "3IWyC5P6fXDLIawx", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP400 Pro 0.6 nozzle.json index bd0a9cedce1..1e850801caf 100644 --- a/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP020", + "setting_id": "joW9WCRXYDNyiypH", "instantiation": "true", "description": "It has the biggest layer height for fastest printing but with very visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP600 HS 0.6 nozzle.json index c6751fdb221..7d2afaea097 100644 --- a/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.42_nozzle_0.6_HS", "from": "system", - "setting_id": "GP026", + "setting_id": "Ho8RblejrdOKug8S", "instantiation": "true", "description": "It has the biggest layer height for fastest printing but with very visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP400 Pro 0.8 nozzle.json index 042470a1a69..f48c94c1b19 100644 --- a/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP400 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Tiertime UP400 Pro 0.8 nozzle", "inherits": "fdm_process_tiertime_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP030", + "setting_id": "LA7i7oOBcbm5n7bO", "instantiation": "true", "description": "It has a bigger layer height for faster printing but with more visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP600 HS 0.8 nozzle.json index ea3de941374..c09e4c24e8e 100644 --- a/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP600 HS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Tiertime UP600 HS 0.8 nozzle", "inherits": "fdm_process_tiertime_0.48_nozzle_0.8_HS", "from": "system", - "setting_id": "GP035", + "setting_id": "sRvgc2kM55MRUvGY", "instantiation": "true", "description": "It has a bigger layer height for faster printing but with more visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP400 Pro 0.8 nozzle.json index 7c3a639f8d0..4ba7a7af617 100644 --- a/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP400 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft @Tiertime UP400 Pro 0.8 nozzle", "inherits": "fdm_process_tiertime_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP031", + "setting_id": "XAuIJcY4WL1KQyO4", "instantiation": "true", "description": "It has the biggest layer height for fastest printing but with very visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP600 HS 0.8 nozzle.json index 5aaca8aad69..dab79b259db 100644 --- a/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP600 HS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft @Tiertime UP600 HS 0.8 nozzle", "inherits": "fdm_process_tiertime_0.56_nozzle_0.8_HS", "from": "system", - "setting_id": "GP036", + "setting_id": "dDorcGm5vvUGQjaj", "instantiation": "true", "description": "It has the biggest layer height for fastest printing but with very visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tronxy.json b/resources/profiles/Tronxy.json index 1d5bef89ced..32cf5ffa690 100644 --- a/resources/profiles/Tronxy.json +++ b/resources/profiles/Tronxy.json @@ -1,6 +1,6 @@ { "name": "Tronxy", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Tronxy configurations", "machine_model_list": [ diff --git a/resources/profiles/Tronxy/machine/Tronxy X5SA 400 0.4 nozzle.json b/resources/profiles/Tronxy/machine/Tronxy X5SA 400 0.4 nozzle.json index 9bcfaa7e1ec..188faf7f11a 100644 --- a/resources/profiles/Tronxy/machine/Tronxy X5SA 400 0.4 nozzle.json +++ b/resources/profiles/Tronxy/machine/Tronxy X5SA 400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Tronxy X5SA 400 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "t8KY1zhDKOtHo3I4", "instantiation": "true", "printer_model": "Tronxy X5SA 400 Marlin Firmware", "default_filament_profile": "Generic PLA @System", diff --git a/resources/profiles/Tronxy/process/0.08mm Extra Fine @Tronxy.json b/resources/profiles/Tronxy/process/0.08mm Extra Fine @Tronxy.json index effec25cbb2..0859dc495c0 100644 --- a/resources/profiles/Tronxy/process/0.08mm Extra Fine @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.08mm Extra Fine @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP001", + "setting_id": "cFjWVB09EyPfSptT", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Tronxy/process/0.12mm Fine @Tronxy.json b/resources/profiles/Tronxy/process/0.12mm Fine @Tronxy.json index 7324ef4ad65..5bc53bf6627 100644 --- a/resources/profiles/Tronxy/process/0.12mm Fine @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.12mm Fine @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP002", + "setting_id": "CfBTVOD882EmgOn8", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Tronxy/process/0.15mm Optimal @Tronxy.json b/resources/profiles/Tronxy/process/0.15mm Optimal @Tronxy.json index 3f025726284..3bd4373f7d9 100644 --- a/resources/profiles/Tronxy/process/0.15mm Optimal @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.15mm Optimal @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP003", + "setting_id": "hjWWhN2a3XsVsqcg", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Tronxy/process/0.20mm Standard @Tronxy.json b/resources/profiles/Tronxy/process/0.20mm Standard @Tronxy.json index 368aeea79ca..c685f724700 100644 --- a/resources/profiles/Tronxy/process/0.20mm Standard @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.20mm Standard @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kZ09yTsbcxBl8Cys", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Tronxy/process/0.24mm Draft @Tronxy.json b/resources/profiles/Tronxy/process/0.24mm Draft @Tronxy.json index 28030db4aaa..d47266661f0 100644 --- a/resources/profiles/Tronxy/process/0.24mm Draft @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.24mm Draft @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP005", + "setting_id": "62VlhpUi9oCuCl6Q", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Tronxy/process/0.28mm Extra Draft @Tronxy.json b/resources/profiles/Tronxy/process/0.28mm Extra Draft @Tronxy.json index cc9b0a2eba8..3b859618ffe 100644 --- a/resources/profiles/Tronxy/process/0.28mm Extra Draft @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.28mm Extra Draft @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP006", + "setting_id": "5CPWfaMEp9YVl1ZD", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/TwoTrees.json b/resources/profiles/TwoTrees.json index 5063bbce795..7484f274164 100644 --- a/resources/profiles/TwoTrees.json +++ b/resources/profiles/TwoTrees.json @@ -1,6 +1,6 @@ { "name": "TwoTrees", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "1", "description": "TwoTrees configurations", "machine_model_list": [ diff --git a/resources/profiles/TwoTrees/filament/TwoTrees Generic 95A TPU @SK1.json b/resources/profiles/TwoTrees/filament/TwoTrees Generic 95A TPU @SK1.json index 3d37360bae2..b430674cd78 100644 --- a/resources/profiles/TwoTrees/filament/TwoTrees Generic 95A TPU @SK1.json +++ b/resources/profiles/TwoTrees/filament/TwoTrees Generic 95A TPU @SK1.json @@ -3,7 +3,7 @@ "name": "TwoTrees Generic 95A TPU @SK1", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSU99", + "setting_id": "YqQSUrG195dCz67L", "filament_id": "GFU99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/TwoTrees/filament/TwoTrees Generic HS PLA @SK1.json b/resources/profiles/TwoTrees/filament/TwoTrees Generic HS PLA @SK1.json index 0de99e14236..b713bc31f4b 100644 --- a/resources/profiles/TwoTrees/filament/TwoTrees Generic HS PLA @SK1.json +++ b/resources/profiles/TwoTrees/filament/TwoTrees Generic HS PLA @SK1.json @@ -3,7 +3,7 @@ "name": "TwoTrees Generic HS PLA @SK1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL100", + "setting_id": "k7bLC5us9mGJzznW", "filament_id": "GFL100", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/TwoTrees/machine/TwoTrees SK1 0.4 nozzle.json b/resources/profiles/TwoTrees/machine/TwoTrees SK1 0.4 nozzle.json index 3ac1c9075ce..1a27cf186b5 100644 --- a/resources/profiles/TwoTrees/machine/TwoTrees SK1 0.4 nozzle.json +++ b/resources/profiles/TwoTrees/machine/TwoTrees SK1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "TwoTrees SK1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "oYYnPwOmTTN2p6y2", "instantiation": "true", "printer_model": "TwoTrees SK1", "nozzle_diameter": [ diff --git a/resources/profiles/TwoTrees/machine/TwoTrees SP-5 Klipper 0.4 nozzle.json b/resources/profiles/TwoTrees/machine/TwoTrees SP-5 Klipper 0.4 nozzle.json index 29f5a3b5706..2b075ca6c89 100644 --- a/resources/profiles/TwoTrees/machine/TwoTrees SP-5 Klipper 0.4 nozzle.json +++ b/resources/profiles/TwoTrees/machine/TwoTrees SP-5 Klipper 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "TwoTrees SP-5 Klipper 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "mLsl3PZrcD5XnV7j", "instantiation": "true", "printer_model": "TwoTrees SP-5 Klipper", "nozzle_diameter": [ diff --git a/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json b/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json index a5fe0ec2ea5..89cd8da68e6 100644 --- a/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json +++ b/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "e67blfdblJpU4mPC", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.08mm Extra Fine @TwoTrees.json b/resources/profiles/TwoTrees/process/0.08mm Extra Fine @TwoTrees.json index f092236a89f..743069d461c 100644 --- a/resources/profiles/TwoTrees/process/0.08mm Extra Fine @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.08mm Extra Fine @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP001", + "setting_id": "RsV0aGJKSXIq0F2G", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json b/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json index 413c2b29e13..d0d5bb6bd38 100644 --- a/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json +++ b/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "XAitwEqNgKkN3h6e", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.12mm Fine @TwoTrees.json b/resources/profiles/TwoTrees/process/0.12mm Fine @TwoTrees.json index cbb524c75ca..b3af2be446c 100644 --- a/resources/profiles/TwoTrees/process/0.12mm Fine @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.12mm Fine @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP002", + "setting_id": "sjHTI0M9xPisplrH", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/TwoTrees/process/0.15mm Optimal @TwoTrees.json b/resources/profiles/TwoTrees/process/0.15mm Optimal @TwoTrees.json index 91241c59c96..65909475bec 100644 --- a/resources/profiles/TwoTrees/process/0.15mm Optimal @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.15mm Optimal @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP003", + "setting_id": "KViBpFjvYqMyhXOw", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json b/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json index 1f6816065bd..39ed8b22200 100644 --- a/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json +++ b/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "16Msz8goqH2Q8nVo", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json b/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json index d5d5cb4dcff..1c4f5422cc4 100644 --- a/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json +++ b/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json @@ -3,6 +3,7 @@ "name": "0.20mm Quality @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "p2c8ePTvQGBCzOKY", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json b/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json index edec0cba751..7a0ddb35be1 100644 --- a/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json +++ b/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "6GMPTKxYdUYCknMo", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.20mm Standard @TwoTrees.json b/resources/profiles/TwoTrees/process/0.20mm Standard @TwoTrees.json index 85e9608dff7..05415ef15b2 100644 --- a/resources/profiles/TwoTrees/process/0.20mm Standard @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.20mm Standard @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PvNYVe6TN12Y5rok", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json b/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json index 1bf6bd5e1dd..d13fd4e0317 100644 --- a/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json +++ b/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "7FnZjrt1ElRBxo08", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.24mm Draft @TwoTrees.json b/resources/profiles/TwoTrees/process/0.24mm Draft @TwoTrees.json index 9b563b33d28..29d6be55bcd 100644 --- a/resources/profiles/TwoTrees/process/0.24mm Draft @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.24mm Draft @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP005", + "setting_id": "BNUMnQUb18fMkCQa", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json b/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json index 6c2c3bb6e13..709852316dd 100644 --- a/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json +++ b/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json @@ -3,6 +3,7 @@ "name": "0.24mm HSpeed @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "5HcSLSgKd1ARPpfP", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json b/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json index 8a8266b8055..0ac9e32254e 100644 --- a/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json +++ b/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "QA20KPjLCAJHPgbJ", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.28mm Extra Draft @TwoTrees.json b/resources/profiles/TwoTrees/process/0.28mm Extra Draft @TwoTrees.json index 2e2d6e59cc7..6b8bd117a2a 100644 --- a/resources/profiles/TwoTrees/process/0.28mm Extra Draft @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.28mm Extra Draft @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP006", + "setting_id": "rDxzD80EyHaAek9W", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/UltiMaker.json b/resources/profiles/UltiMaker.json index 01e3c68ecc9..da2b5442a10 100644 --- a/resources/profiles/UltiMaker.json +++ b/resources/profiles/UltiMaker.json @@ -1,7 +1,7 @@ { "name": "UltiMaker", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "UltiMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/UltiMaker/machine/UltiMaker 2 0.4 nozzle.json b/resources/profiles/UltiMaker/machine/UltiMaker 2 0.4 nozzle.json index 2ac6e69576f..b02da9ca091 100644 --- a/resources/profiles/UltiMaker/machine/UltiMaker 2 0.4 nozzle.json +++ b/resources/profiles/UltiMaker/machine/UltiMaker 2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "UltiMaker 2 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Jl8sUeuACVyrnrst", "instantiation": "true", "printer_model": "UltiMaker 2", "default_print_profile": "0.18mm Standard @UltiMaker 2", diff --git a/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json b/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json index 62b86e517f6..02e0127bef4 100644 --- a/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json +++ b/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @UltiMaker 2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "4iVomDxutraufw6B", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json b/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json index c0aa65d243d..8c5596cfab8 100644 --- a/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json +++ b/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @UltiMaker 2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Mo2NUdUehA5y4OwV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json b/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json index e17cc140ef7..7df1292a9d6 100644 --- a/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json +++ b/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @UltiMaker 2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dBum79P8qUSRgT90", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Vivedino.json b/resources/profiles/Vivedino.json index 5ccb1958d0e..bd7228a2957 100644 --- a/resources/profiles/Vivedino.json +++ b/resources/profiles/Vivedino.json @@ -1,6 +1,6 @@ { "name": "Vivedino", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Vivedino configurations", "machine_model_list": [ diff --git a/resources/profiles/Vivedino/machine/Troodon 2.0 Klipper 0.4 nozzle.json b/resources/profiles/Vivedino/machine/Troodon 2.0 Klipper 0.4 nozzle.json index 05253ee880f..a7a82bcf68b 100644 --- a/resources/profiles/Vivedino/machine/Troodon 2.0 Klipper 0.4 nozzle.json +++ b/resources/profiles/Vivedino/machine/Troodon 2.0 Klipper 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Troodon 2.0 Klipper 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "pYurHO2KNiqIhjHR", "instantiation": "true", "printer_model": "Troodon 2.0 - Klipper", "nozzle_diameter": [ diff --git a/resources/profiles/Vivedino/machine/Troodon 2.0 RRF 0.4 nozzle.json b/resources/profiles/Vivedino/machine/Troodon 2.0 RRF 0.4 nozzle.json index 3ecf6a6b27c..0bb542922b7 100644 --- a/resources/profiles/Vivedino/machine/Troodon 2.0 RRF 0.4 nozzle.json +++ b/resources/profiles/Vivedino/machine/Troodon 2.0 RRF 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Troodon 2.0 RRF 0.4 nozzle", "inherits": "fdm_rrf_common", "from": "system", - "setting_id": "GM002", + "setting_id": "VxgWxIfWfPwBX4R6", "instantiation": "true", "printer_model": "Troodon 2.0 - RRF", "nozzle_diameter": [ diff --git a/resources/profiles/Vivedino/process/0.08mm Extra Fine @Troodon2.json b/resources/profiles/Vivedino/process/0.08mm Extra Fine @Troodon2.json index 58fa335382a..64888a93c8b 100644 --- a/resources/profiles/Vivedino/process/0.08mm Extra Fine @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.08mm Extra Fine @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "tj4oiV47yMZQR0Ix", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Vivedino/process/0.12mm Fine @Troodon2.json b/resources/profiles/Vivedino/process/0.12mm Fine @Troodon2.json index e199af9314f..02de3e80ebe 100644 --- a/resources/profiles/Vivedino/process/0.12mm Fine @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.12mm Fine @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PYPvyaYS2DKua3mo", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Vivedino/process/0.15mm Optimal @Troodon2.json b/resources/profiles/Vivedino/process/0.15mm Optimal @Troodon2.json index 89a8e0cc77e..3172f9e5001 100644 --- a/resources/profiles/Vivedino/process/0.15mm Optimal @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.15mm Optimal @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZXJ5Y1pWmqPqTnsf", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Vivedino/process/0.20mm Standard @Troodon2.json b/resources/profiles/Vivedino/process/0.20mm Standard @Troodon2.json index 15940f5230d..71715d340b8 100644 --- a/resources/profiles/Vivedino/process/0.20mm Standard @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.20mm Standard @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "O03LARAyZSDtAOw6", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vivedino/process/0.24mm Draft @Troodon2.json b/resources/profiles/Vivedino/process/0.24mm Draft @Troodon2.json index bf1d931c38a..d96acec08b9 100644 --- a/resources/profiles/Vivedino/process/0.24mm Draft @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.24mm Draft @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Z7oqAzkDg8hcl8uG", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Vivedino/process/0.28mm Extra Draft @Troodon2.json b/resources/profiles/Vivedino/process/0.28mm Extra Draft @Troodon2.json index e5a15e8d517..ec5ca299abc 100644 --- a/resources/profiles/Vivedino/process/0.28mm Extra Draft @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.28mm Extra Draft @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "GThcqEB89IuBQ7v2", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Volumic.json b/resources/profiles/Volumic.json index 9a6751c6280..08a313b0084 100644 --- a/resources/profiles/Volumic.json +++ b/resources/profiles/Volumic.json @@ -1,6 +1,6 @@ { "name": "Volumic", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "1", "description": "VOLUMIC configurations", "machine_model_list": [ diff --git a/resources/profiles/Volumic/filament/PA6 CF20 (Performance).json b/resources/profiles/Volumic/filament/PA6 CF20 (Performance).json index d87cb3b1389..362b3b3720f 100644 --- a/resources/profiles/Volumic/filament/PA6 CF20 (Performance).json +++ b/resources/profiles/Volumic/filament/PA6 CF20 (Performance).json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFN99", - "setting_id": "GFSN98", + "setting_id": "wuZ0EvlbcJ8GxajY", "name": "PA6 CF20 (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/PETG ESD (Performance).json b/resources/profiles/Volumic/filament/PETG ESD (Performance).json index 09d6764aef5..ba8e94a8751 100644 --- a/resources/profiles/Volumic/filament/PETG ESD (Performance).json +++ b/resources/profiles/Volumic/filament/PETG ESD (Performance).json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", + "setting_id": "May8rNEMOOs1qtae", "name": "PETG ESD (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/PPS Carbone (Performance).json b/resources/profiles/Volumic/filament/PPS Carbone (Performance).json index 969b3ab324f..996494cc43b 100644 --- a/resources/profiles/Volumic/filament/PPS Carbone (Performance).json +++ b/resources/profiles/Volumic/filament/PPS Carbone (Performance).json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFN99", - "setting_id": "GFSN98", + "setting_id": "HE0yILdkhbiXbH1j", "name": "PPS Carbone (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic ABS Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic ABS Ultra Performance.json index d9535dea366..8b48f0995c2 100644 --- a/resources/profiles/Volumic/filament/Volumic ABS Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic ABS Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "466ggy6ydgaZOrSx", "name": "Volumic ABS Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic ABS Ultra.json b/resources/profiles/Volumic/filament/Volumic ABS Ultra.json index 373087f4e23..cab927e9256 100644 --- a/resources/profiles/Volumic/filament/Volumic ABS Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic ABS Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "omHiTINFPThooUqk", "name": "Volumic ABS Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic ASA Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic ASA Ultra Performance.json index 560b6150a03..ea3f078ce45 100644 --- a/resources/profiles/Volumic/filament/Volumic ASA Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic ASA Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "uE5jxeOBISvO5o7L", "name": "Volumic ASA Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic ASA Ultra.json b/resources/profiles/Volumic/filament/Volumic ASA Ultra.json index 9ee48f983c0..62de93ee243 100644 --- a/resources/profiles/Volumic/filament/Volumic ASA Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic ASA Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "LOAp2zgQWqg1lQQ4", "name": "Volumic ASA Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra Performance.json index 7cb5b5687ee..54049ab1459 100644 --- a/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFU99", - "setting_id": "GFSR99", + "setting_id": "k5V3bjZrtr7t8zl0", "name": "Volumic FLEX93 Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra.json b/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra.json index c5697e1749a..16f143b405c 100644 --- a/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFU99", - "setting_id": "GFSR99", + "setting_id": "DXZ4Gp5XP5VCJTXY", "name": "Volumic FLEX93 Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic NYLON Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic NYLON Ultra Performance.json index d1e3cd37dbb..44ab540de1f 100644 --- a/resources/profiles/Volumic/filament/Volumic NYLON Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic NYLON Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFN99", - "setting_id": "GFSN98", + "setting_id": "RC5gFyIejXWDJuHH", "name": "Volumic NYLON Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic NYLON Ultra.json b/resources/profiles/Volumic/filament/Volumic NYLON Ultra.json index fa59ae1cd95..9b7cbd06023 100644 --- a/resources/profiles/Volumic/filament/Volumic NYLON Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic NYLON Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFN99", - "setting_id": "GFSN98", + "setting_id": "AL4xDgN8EIYb3UrL", "name": "Volumic NYLON Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PC Performance.json b/resources/profiles/Volumic/filament/Volumic PC Performance.json index c4ea8f9f47e..d239419ccfc 100644 --- a/resources/profiles/Volumic/filament/Volumic PC Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PC Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFC99", - "setting_id": "GFSC99", + "setting_id": "ht6Ar3ilCkPT7geN", "name": "Volumic PC (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PC.json b/resources/profiles/Volumic/filament/Volumic PC.json index b2632b9eecc..5ffe6cd4158 100644 --- a/resources/profiles/Volumic/filament/Volumic PC.json +++ b/resources/profiles/Volumic/filament/Volumic PC.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFC99", - "setting_id": "GFSC99", + "setting_id": "3pUnwXise3J77Qmc", "name": "Volumic PC", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PCTG Ultra (Performance).json b/resources/profiles/Volumic/filament/Volumic PCTG Ultra (Performance).json index 70e6553bde4..d28d3732edb 100644 --- a/resources/profiles/Volumic/filament/Volumic PCTG Ultra (Performance).json +++ b/resources/profiles/Volumic/filament/Volumic PCTG Ultra (Performance).json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", + "setting_id": "NdegYSDVrQ4Rawtp", "name": "Volumic PCTG Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PETG Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic PETG Ultra Performance.json index 47fdc984cb8..3a3d240a4e4 100644 --- a/resources/profiles/Volumic/filament/Volumic PETG Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PETG Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", + "setting_id": "bNcC5kGe9jOm7Ltu", "name": "Volumic PETG Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone Performance.json b/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone Performance.json index 48a5fccf4cc..adf3a8fc451 100644 --- a/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG98", - "setting_id": "GFSG50", + "setting_id": "IIFtCkVvHoLtxPxj", "name": "Volumic PETG Ultra carbone (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone.json b/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone.json index 3cf6c6125a1..4ee0a684649 100644 --- a/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone.json +++ b/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG98", - "setting_id": "GFSG50", + "setting_id": "nOKT0adoQi3O7Tge", "name": "Volumic PETG Ultra carbone", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PETG Ultra.json b/resources/profiles/Volumic/filament/Volumic PETG Ultra.json index 70fb1ab7443..25162f2d94e 100644 --- a/resources/profiles/Volumic/filament/Volumic PETG Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic PETG Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", + "setting_id": "CuBXW7SqUeJOcxPP", "name": "Volumic PETG Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PLA Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic PLA Ultra Performance.json index adf77a54fa0..741d2eab822 100644 --- a/resources/profiles/Volumic/filament/Volumic PLA Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PLA Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", + "setting_id": "8J2ZIz8ByFNEB9PC", "name": "Volumic PLA Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PLA Ultra.json b/resources/profiles/Volumic/filament/Volumic PLA Ultra.json index 5291e6344db..67d33d3b52d 100644 --- a/resources/profiles/Volumic/filament/Volumic PLA Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic PLA Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", + "setting_id": "3BeQ60i4cOs3BfZn", "name": "Volumic PLA Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PP Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic PP Ultra Performance.json index 70c76499425..91bfcf197d2 100644 --- a/resources/profiles/Volumic/filament/Volumic PP Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PP Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "nsiOJ8ExySR1RksQ", "name": "Volumic PP Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PP Ultra.json b/resources/profiles/Volumic/filament/Volumic PP Ultra.json index ca64eccb40f..895c9ed467e 100644 --- a/resources/profiles/Volumic/filament/Volumic PP Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic PP Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "UA91pv54dzbBRkFe", "name": "Volumic PP Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PVA Performance.json b/resources/profiles/Volumic/filament/Volumic PVA Performance.json index ab192d88d0e..92a94ac5c1e 100644 --- a/resources/profiles/Volumic/filament/Volumic PVA Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PVA Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFS99", - "setting_id": "GFSS99", + "setting_id": "L9ZTGhwNpVWT6E5j", "name": "Volumic PVA-BVOH (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PVA.json b/resources/profiles/Volumic/filament/Volumic PVA.json index 8b73e707755..5d9892417cf 100644 --- a/resources/profiles/Volumic/filament/Volumic PVA.json +++ b/resources/profiles/Volumic/filament/Volumic PVA.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFS99", - "setting_id": "GFSS99", + "setting_id": "rw4bB5gYM6YF8v9e", "name": "Volumic PVA", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra Performance.json index 68b3b9b2ba3..e20e88ed673 100644 --- a/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", + "setting_id": "rxVkBvMZYgHOoFW6", "name": "Volumic UNIVERSAL Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra.json b/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra.json index 87e6fc5f1ec..568b3a5beb1 100644 --- a/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", + "setting_id": "6iOFERN4x6xBbtuT", "name": "Volumic UNIVERSAL Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/desactive.json b/resources/profiles/Volumic/filament/desactive.json index f90f31547ca..6485f044f00 100644 --- a/resources/profiles/Volumic/filament/desactive.json +++ b/resources/profiles/Volumic/filament/desactive.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "DFL99", - "setting_id": "DFSL99", + "setting_id": "Sphn4hoDMpH2uy86", "name": "Désactivé", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 (0.4 nozzle).json index 3697565b31d..2a9fad874e0 100644 --- a/resources/profiles/Volumic/machine/EXO42 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "38SnDDmFg2mCRcFt", "name": "EXO42 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 IDRE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 IDRE (0.4 nozzle).json index f74344e89f5..e1b362df83e 100644 --- a/resources/profiles/Volumic/machine/EXO42 IDRE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 IDRE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "15K6j1YDiO2ubyZq", "name": "EXO42 IDRE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 IDRE COPY MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 IDRE COPY MODE (0.4 nozzle).json index c146634f23a..0f6303fd195 100644 --- a/resources/profiles/Volumic/machine/EXO42 IDRE COPY MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 IDRE COPY MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "cNF164YBrD1xcG2h", "name": "EXO42 IDRE COPY MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 IDRE MIRROR MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 IDRE MIRROR MODE (0.4 nozzle).json index c4c59fd5331..1c5f5d17009 100644 --- a/resources/profiles/Volumic/machine/EXO42 IDRE MIRROR MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 IDRE MIRROR MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "OMdv9AS4d4HDXYB7", "name": "EXO42 IDRE MIRROR MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 Performance (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 Performance (0.4 nozzle).json index 3fadec99907..fbece162b54 100644 --- a/resources/profiles/Volumic/machine/EXO42 Performance (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 Performance (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "uSgdeLwfwMCIF8jJ", "name": "EXO42 Performance (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 Stage 2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 Stage 2 (0.4 nozzle).json index c31a4270349..978af519f66 100644 --- a/resources/profiles/Volumic/machine/EXO42 Stage 2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 Stage 2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "nFLSTPErGjQw6XnS", "name": "EXO42 Stage 2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 (0.6 nozzle).json b/resources/profiles/Volumic/machine/EXO65 (0.6 nozzle).json index f34f92b6f17..8ca2438da99 100644 --- a/resources/profiles/Volumic/machine/EXO65 (0.6 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 (0.6 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "N5hPPEyrF6WFPO8r", "name": "EXO65 (0.6 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 IDRE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO65 IDRE (0.4 nozzle).json index f5f6ab0e91e..8d67f7fa061 100644 --- a/resources/profiles/Volumic/machine/EXO65 IDRE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 IDRE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "eInlnTPT9RXNQe0H", "name": "EXO65 IDRE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 IDRE COPY MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO65 IDRE COPY MODE (0.4 nozzle).json index 10be82ab064..6609ff57cc2 100644 --- a/resources/profiles/Volumic/machine/EXO65 IDRE COPY MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 IDRE COPY MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "qTCFDCqFaq5Cr2MK", "name": "EXO65 IDRE COPY MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 IDRE MIRROR MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO65 IDRE MIRROR MODE (0.4 nozzle).json index 0e740204830..e331184117d 100644 --- a/resources/profiles/Volumic/machine/EXO65 IDRE MIRROR MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 IDRE MIRROR MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "CRmhnf8ONHFpDZ9p", "name": "EXO65 IDRE MIRROR MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 Performance (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO65 Performance (0.4 nozzle).json index 71102cfc1e2..54c15d80b03 100644 --- a/resources/profiles/Volumic/machine/EXO65 Performance (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 Performance (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "Iokq2oBwJVaEwT9A", "name": "EXO65 Performance (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 Performance (0.6 nozzle).json b/resources/profiles/Volumic/machine/EXO65 Performance (0.6 nozzle).json index 4f28a57bfb3..8bbc66ef386 100644 --- a/resources/profiles/Volumic/machine/EXO65 Performance (0.6 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 Performance (0.6 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "WWrVx8eGg8rm1saw", "name": "EXO65 Performance (0.6 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 Performance (0.8 nozzle).json b/resources/profiles/Volumic/machine/EXO65 Performance (0.8 nozzle).json index 152761cb5f0..cb2b91161b3 100644 --- a/resources/profiles/Volumic/machine/EXO65 Performance (0.8 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 Performance (0.8 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "4LGJDuCA7yAKGml3", "name": "EXO65 Performance (0.8 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 Stage 2 (0.6 nozzle).json b/resources/profiles/Volumic/machine/EXO65 Stage 2 (0.6 nozzle).json index 3394ffdf945..735e1843bc2 100644 --- a/resources/profiles/Volumic/machine/EXO65 Stage 2 (0.6 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 Stage 2 (0.6 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "jsBm1DhY7qw63SSI", "name": "EXO65 Stage 2 (0.6 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 (0.4 nozzle).json index 15ac1d03757..a49591a4217 100644 --- a/resources/profiles/Volumic/machine/SH65 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "EeJsStZPNfCT7WkW", "name": "SH65 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 IDRE (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 IDRE (0.4 nozzle).json index ef6cc817a72..a316163582f 100644 --- a/resources/profiles/Volumic/machine/SH65 IDRE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 IDRE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "aKBeUSXzBU2qQIEE", "name": "SH65 IDRE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 IDRE COPY MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 IDRE COPY MODE (0.4 nozzle).json index 7615eb9e0e4..bcd01d002fd 100644 --- a/resources/profiles/Volumic/machine/SH65 IDRE COPY MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 IDRE COPY MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "abcf94SvavkMYyFU", "name": "SH65 IDRE COPY MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 IDRE MIRROR MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 IDRE MIRROR MODE (0.4 nozzle).json index 548a80d039a..72c8ab938de 100644 --- a/resources/profiles/Volumic/machine/SH65 IDRE MIRROR MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 IDRE MIRROR MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "xBbVrJNCzJO4egUE", "name": "SH65 IDRE MIRROR MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 Performance (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 Performance (0.4 nozzle).json index 09765eddecb..0163a27d656 100644 --- a/resources/profiles/Volumic/machine/SH65 Performance (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 Performance (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "lmlG4rGxYKYkydUM", "name": "SH65 Performance (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 Stage 2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 Stage 2 (0.4 nozzle).json index 8c6bfa8ba6f..09c3802d100 100644 --- a/resources/profiles/Volumic/machine/SH65 Stage 2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 Stage 2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "e3rpbhqZmSzuW5kA", "name": "SH65 Stage 2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS20MK2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS20MK2 (0.4 nozzle).json index c77a02299b2..18f800df157 100644 --- a/resources/profiles/Volumic/machine/VS20MK2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS20MK2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "xV2JznZ0imfZku62", "name": "VS20MK2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30MK2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30MK2 (0.4 nozzle).json index e78d41167e2..e0c5195a1d1 100644 --- a/resources/profiles/Volumic/machine/VS30MK2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30MK2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "MnCC2SAgstB2WR50", "name": "VS30MK2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30MK3 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30MK3 (0.4 nozzle).json index 449312bab60..72924347a34 100644 --- a/resources/profiles/Volumic/machine/VS30MK3 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30MK3 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "KFPbLwO3vQqIuJ34", "name": "VS30MK3 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30MK3 Stage 2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30MK3 Stage 2 (0.4 nozzle).json index 8f94e05a2b5..d45f2a6b6b6 100644 --- a/resources/profiles/Volumic/machine/VS30MK3 Stage 2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30MK3 Stage 2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "XW58eNI9Y25FmAMR", "name": "VS30MK3 Stage 2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30SC (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30SC (0.4 nozzle).json index d90d893ef37..af49da615d0 100644 --- a/resources/profiles/Volumic/machine/VS30SC (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30SC (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "8HxzSP6HW9nOPphc", "name": "VS30SC (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30SC2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30SC2 (0.4 nozzle).json index 94ac661bbbd..2e67106b5c7 100644 --- a/resources/profiles/Volumic/machine/VS30SC2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30SC2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "D9xXWUeeAAWmesfa", "name": "VS30SC2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30SC2 Performance (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30SC2 Performance (0.4 nozzle).json index ff43e99a0c1..b2e93183378 100644 --- a/resources/profiles/Volumic/machine/VS30SC2 Performance (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30SC2 Performance (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "PKKfRBEEc0CGbh45", "name": "VS30SC2 Performance (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30SC2 Stage 2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30SC2 Stage 2 (0.4 nozzle).json index 666be445a58..4d5fe68f1d8 100644 --- a/resources/profiles/Volumic/machine/VS30SC2 Stage 2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30SC2 Stage 2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "2RWMRzJILLpB2W3V", "name": "VS30SC2 Stage 2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30ULTRA (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30ULTRA (0.4 nozzle).json index 9489576bd71..a7ed6be9ace 100644 --- a/resources/profiles/Volumic/machine/VS30ULTRA (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30ULTRA (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "IZzmiYZXK5UBri4z", "name": "VS30ULTRA (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/process/Compatible speed - 0.10mm.json b/resources/profiles/Volumic/process/Compatible speed - 0.10mm.json index 385c13513a4..0dfce3935fa 100644 --- a/resources/profiles/Volumic/process/Compatible speed - 0.10mm.json +++ b/resources/profiles/Volumic/process/Compatible speed - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "0Gwgv9G1arp0ufdp", "name": "Compatible speed - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Compatible speed - 0.15mm.json b/resources/profiles/Volumic/process/Compatible speed - 0.15mm.json index 3bc27343fe6..e8745de20f7 100644 --- a/resources/profiles/Volumic/process/Compatible speed - 0.15mm.json +++ b/resources/profiles/Volumic/process/Compatible speed - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Tp9t0BQZKkxCA8qZ", "name": "Compatible speed - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Compatible speed - 0.20mm.json b/resources/profiles/Volumic/process/Compatible speed - 0.20mm.json index 1df25234a5a..0e8644aa730 100644 --- a/resources/profiles/Volumic/process/Compatible speed - 0.20mm.json +++ b/resources/profiles/Volumic/process/Compatible speed - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "z3fSJ5Y0JuhRQhOU", "name": "Compatible speed - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Compatible speed - 0.25mm.json b/resources/profiles/Volumic/process/Compatible speed - 0.25mm.json index 1a600e0ba50..28f94dda2c6 100644 --- a/resources/profiles/Volumic/process/Compatible speed - 0.25mm.json +++ b/resources/profiles/Volumic/process/Compatible speed - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "hfNxq9KnwJlS0gcr", "name": "Compatible speed - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Compatible speed - 0.30mm.json b/resources/profiles/Volumic/process/Compatible speed - 0.30mm.json index a057eb33c11..9f6d1ecb485 100644 --- a/resources/profiles/Volumic/process/Compatible speed - 0.30mm.json +++ b/resources/profiles/Volumic/process/Compatible speed - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Pdg0wxAaJS0SR8AF", "name": "Compatible speed - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance - 0.10mm.json b/resources/profiles/Volumic/process/Full performance - 0.10mm.json index 09ad280a54b..e672435e53b 100644 --- a/resources/profiles/Volumic/process/Full performance - 0.10mm.json +++ b/resources/profiles/Volumic/process/Full performance - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "BdckjC9G0PLHCMgf", "name": "Full performance - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance - 0.15mm.json b/resources/profiles/Volumic/process/Full performance - 0.15mm.json index b880abc98b3..71ca39fbab1 100644 --- a/resources/profiles/Volumic/process/Full performance - 0.15mm.json +++ b/resources/profiles/Volumic/process/Full performance - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "fx3iCV7mYY4FYrci", "name": "Full performance - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance - 0.20mm.json b/resources/profiles/Volumic/process/Full performance - 0.20mm.json index 192c7a86142..8834a822f0b 100644 --- a/resources/profiles/Volumic/process/Full performance - 0.20mm.json +++ b/resources/profiles/Volumic/process/Full performance - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "vjm5CwY9lx6DOJZy", "name": "Full performance - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance - 0.25mm.json b/resources/profiles/Volumic/process/Full performance - 0.25mm.json index 1477983a188..e977f22c251 100644 --- a/resources/profiles/Volumic/process/Full performance - 0.25mm.json +++ b/resources/profiles/Volumic/process/Full performance - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "q3EqyOZ87HZpBzvO", "name": "Full performance - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance - 0.30mm.json b/resources/profiles/Volumic/process/Full performance - 0.30mm.json index eb80c402066..8df0793a6af 100644 --- a/resources/profiles/Volumic/process/Full performance - 0.30mm.json +++ b/resources/profiles/Volumic/process/Full performance - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "EG1g0ef96ojgMo8K", "name": "Full performance - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance DUAL - 0.10mm.json b/resources/profiles/Volumic/process/Full performance DUAL - 0.10mm.json index 2c511fb2238..f58e4f6d665 100644 --- a/resources/profiles/Volumic/process/Full performance DUAL - 0.10mm.json +++ b/resources/profiles/Volumic/process/Full performance DUAL - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "WtBzcQwLoYPoNDbM", "name": "Full performance DUAL - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance DUAL - 0.15mm.json b/resources/profiles/Volumic/process/Full performance DUAL - 0.15mm.json index bbd37d952ba..90eceadcdb6 100644 --- a/resources/profiles/Volumic/process/Full performance DUAL - 0.15mm.json +++ b/resources/profiles/Volumic/process/Full performance DUAL - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "QwgTvSeq1hLKGILo", "name": "Full performance DUAL - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance DUAL - 0.20mm.json b/resources/profiles/Volumic/process/Full performance DUAL - 0.20mm.json index f26f3d60beb..8d674fa854f 100644 --- a/resources/profiles/Volumic/process/Full performance DUAL - 0.20mm.json +++ b/resources/profiles/Volumic/process/Full performance DUAL - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "BKpizWAIMDwwSaTu", "name": "Full performance DUAL - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance DUAL - 0.25mm.json b/resources/profiles/Volumic/process/Full performance DUAL - 0.25mm.json index a2c5aae762a..586bc7220c3 100644 --- a/resources/profiles/Volumic/process/Full performance DUAL - 0.25mm.json +++ b/resources/profiles/Volumic/process/Full performance DUAL - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Oua2iEIMKavdJVHY", "name": "Full performance DUAL - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance DUAL - 0.30mm.json b/resources/profiles/Volumic/process/Full performance DUAL - 0.30mm.json index 85307bfeed0..915ac0527e9 100644 --- a/resources/profiles/Volumic/process/Full performance DUAL - 0.30mm.json +++ b/resources/profiles/Volumic/process/Full performance DUAL - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "W8bDRq0EMAasHC0C", "name": "Full performance DUAL - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance VS30 - 0.10mm.json b/resources/profiles/Volumic/process/Full performance VS30 - 0.10mm.json index c608c62e3dc..4d6bba2889b 100644 --- a/resources/profiles/Volumic/process/Full performance VS30 - 0.10mm.json +++ b/resources/profiles/Volumic/process/Full performance VS30 - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "n3LCfOd6MlXqSaFM", "name": "Full performance VS30 - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance VS30 - 0.15mm.json b/resources/profiles/Volumic/process/Full performance VS30 - 0.15mm.json index 70c2a249b02..f745a7d4761 100644 --- a/resources/profiles/Volumic/process/Full performance VS30 - 0.15mm.json +++ b/resources/profiles/Volumic/process/Full performance VS30 - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "WJxmd7QtAlD99oWO", "name": "Full performance VS30 - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance VS30 - 0.20mm.json b/resources/profiles/Volumic/process/Full performance VS30 - 0.20mm.json index 5ce44c155c6..9f6e156e043 100644 --- a/resources/profiles/Volumic/process/Full performance VS30 - 0.20mm.json +++ b/resources/profiles/Volumic/process/Full performance VS30 - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "6O8V3laqfmS31DpL", "name": "Full performance VS30 - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance VS30 - 0.25mm.json b/resources/profiles/Volumic/process/Full performance VS30 - 0.25mm.json index 02b50be71f0..a10387ee11c 100644 --- a/resources/profiles/Volumic/process/Full performance VS30 - 0.25mm.json +++ b/resources/profiles/Volumic/process/Full performance VS30 - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "q5Df9Zk0bBsl6tgn", "name": "Full performance VS30 - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance VS30 - 0.30mm.json b/resources/profiles/Volumic/process/Full performance VS30 - 0.30mm.json index a5cf457015d..b642805e57d 100644 --- a/resources/profiles/Volumic/process/Full performance VS30 - 0.30mm.json +++ b/resources/profiles/Volumic/process/Full performance VS30 - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "4xhjCaz0oSdj4dmz", "name": "Full performance VS30 - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance - 0.10mm.json b/resources/profiles/Volumic/process/High performance - 0.10mm.json index 427c75808e9..5897a066ec0 100644 --- a/resources/profiles/Volumic/process/High performance - 0.10mm.json +++ b/resources/profiles/Volumic/process/High performance - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "gkRJ4aBb8nYiWWkQ", "name": "High performance - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance - 0.15mm.json b/resources/profiles/Volumic/process/High performance - 0.15mm.json index 39cfbe18366..a0d2b729041 100644 --- a/resources/profiles/Volumic/process/High performance - 0.15mm.json +++ b/resources/profiles/Volumic/process/High performance - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "tZ9EVpNMRCnEh4QD", "name": "High performance - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance - 0.20mm.json b/resources/profiles/Volumic/process/High performance - 0.20mm.json index d42c55b11e9..d021e402866 100644 --- a/resources/profiles/Volumic/process/High performance - 0.20mm.json +++ b/resources/profiles/Volumic/process/High performance - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "yCDzVcIWjVgIyIRH", "name": "High performance - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance - 0.25mm.json b/resources/profiles/Volumic/process/High performance - 0.25mm.json index 7bc0d82df2d..87b210962c6 100644 --- a/resources/profiles/Volumic/process/High performance - 0.25mm.json +++ b/resources/profiles/Volumic/process/High performance - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "x0Q3hHsXoY33V4Df", "name": "High performance - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance - 0.30mm.json b/resources/profiles/Volumic/process/High performance - 0.30mm.json index 50719eda4aa..2a9f73d5646 100644 --- a/resources/profiles/Volumic/process/High performance - 0.30mm.json +++ b/resources/profiles/Volumic/process/High performance - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "wtWZKy5RUZxBEKiA", "name": "High performance - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance DUAL - 0.10mm.json b/resources/profiles/Volumic/process/High performance DUAL - 0.10mm.json index eec2d633140..b8615a5a794 100644 --- a/resources/profiles/Volumic/process/High performance DUAL - 0.10mm.json +++ b/resources/profiles/Volumic/process/High performance DUAL - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "AQxzb91WKNnqyR4m", "name": "High performance DUAL - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance DUAL - 0.15mm.json b/resources/profiles/Volumic/process/High performance DUAL - 0.15mm.json index 33141e9b2c0..aac928ed9e9 100644 --- a/resources/profiles/Volumic/process/High performance DUAL - 0.15mm.json +++ b/resources/profiles/Volumic/process/High performance DUAL - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "L4Ok3bi0ZUYayKei", "name": "High performance DUAL - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance DUAL - 0.20mm.json b/resources/profiles/Volumic/process/High performance DUAL - 0.20mm.json index 25ed6ca323e..820c72f2510 100644 --- a/resources/profiles/Volumic/process/High performance DUAL - 0.20mm.json +++ b/resources/profiles/Volumic/process/High performance DUAL - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VzveNihkhzpEd8YX", "name": "High performance DUAL - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance DUAL - 0.25mm.json b/resources/profiles/Volumic/process/High performance DUAL - 0.25mm.json index b44e9745041..48f07847842 100644 --- a/resources/profiles/Volumic/process/High performance DUAL - 0.25mm.json +++ b/resources/profiles/Volumic/process/High performance DUAL - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "SH11Eth4ecxaSafR", "name": "High performance DUAL - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance DUAL - 0.30mm.json b/resources/profiles/Volumic/process/High performance DUAL - 0.30mm.json index 47e7de8e0ff..9129a454578 100644 --- a/resources/profiles/Volumic/process/High performance DUAL - 0.30mm.json +++ b/resources/profiles/Volumic/process/High performance DUAL - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Rheh3fgJfFugxKZL", "name": "High performance DUAL - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance VS30 - 0.10mm.json b/resources/profiles/Volumic/process/High performance VS30 - 0.10mm.json index 5a2f55795ce..3b458847e5b 100644 --- a/resources/profiles/Volumic/process/High performance VS30 - 0.10mm.json +++ b/resources/profiles/Volumic/process/High performance VS30 - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "nfaAKkhQ6yt2AC7o", "name": "High performance VS30 - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance VS30 - 0.15mm.json b/resources/profiles/Volumic/process/High performance VS30 - 0.15mm.json index db85b5c9c9e..fd5e05ef6f8 100644 --- a/resources/profiles/Volumic/process/High performance VS30 - 0.15mm.json +++ b/resources/profiles/Volumic/process/High performance VS30 - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Eb3wJrmzg2nzEwAm", "name": "High performance VS30 - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance VS30 - 0.20mm.json b/resources/profiles/Volumic/process/High performance VS30 - 0.20mm.json index efc52a53730..34369239bc9 100644 --- a/resources/profiles/Volumic/process/High performance VS30 - 0.20mm.json +++ b/resources/profiles/Volumic/process/High performance VS30 - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "qWEOT65KoPG51AJW", "name": "High performance VS30 - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance VS30 - 0.25mm.json b/resources/profiles/Volumic/process/High performance VS30 - 0.25mm.json index 352aeccce8b..969f1daa283 100644 --- a/resources/profiles/Volumic/process/High performance VS30 - 0.25mm.json +++ b/resources/profiles/Volumic/process/High performance VS30 - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Co6sQp00KLUD50WN", "name": "High performance VS30 - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance VS30 - 0.30mm.json b/resources/profiles/Volumic/process/High performance VS30 - 0.30mm.json index a414d66bf22..147e0cd2175 100644 --- a/resources/profiles/Volumic/process/High performance VS30 - 0.30mm.json +++ b/resources/profiles/Volumic/process/High performance VS30 - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "3qVuLHagvoHBu2yP", "name": "High performance VS30 - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.10mm.json b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.10mm.json index f67067aee4f..3fbe07956d3 100644 --- a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.10mm.json +++ b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "3vksM99YF7pwEP3G", "name": "High speed (Stage 2) - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.15mm.json b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.15mm.json index 9f3abbff36e..7a4313160a2 100644 --- a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.15mm.json +++ b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "9k0mROwMyk1hxZm1", "name": "High speed (Stage 2) - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.20mm.json b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.20mm.json index 98cf95019d4..91d998c170f 100644 --- a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.20mm.json +++ b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "s7GVelf1PDb0Qy9g", "name": "High speed (Stage 2) - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.25mm.json b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.25mm.json index 6a33cd7ce8b..a3277f67a7e 100644 --- a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.25mm.json +++ b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Kxk9C4GtJ5tiwqes", "name": "High speed (Stage 2) - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.30mm.json b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.30mm.json index 634ac6afc34..76bfe212861 100644 --- a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.30mm.json +++ b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ireCZVAGHWDUN03m", "name": "High speed (Stage 2) - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed - 0.10mm.json b/resources/profiles/Volumic/process/High speed - 0.10mm.json index c342c037e0e..c86d7535c0e 100644 --- a/resources/profiles/Volumic/process/High speed - 0.10mm.json +++ b/resources/profiles/Volumic/process/High speed - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ClExqnoYEdZmnnOX", "name": "High speed - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed - 0.15mm.json b/resources/profiles/Volumic/process/High speed - 0.15mm.json index 9c42ccd1758..0e3da3a700e 100644 --- a/resources/profiles/Volumic/process/High speed - 0.15mm.json +++ b/resources/profiles/Volumic/process/High speed - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Wk6UnqxF8mQm9sE6", "name": "High speed - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed - 0.20mm.json b/resources/profiles/Volumic/process/High speed - 0.20mm.json index 5c8e3462a9b..c37503c7241 100644 --- a/resources/profiles/Volumic/process/High speed - 0.20mm.json +++ b/resources/profiles/Volumic/process/High speed - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "72tWDDDqVKtRwBFH", "name": "High speed - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed - 0.25mm.json b/resources/profiles/Volumic/process/High speed - 0.25mm.json index 7e573a3d6e7..10286f71961 100644 --- a/resources/profiles/Volumic/process/High speed - 0.25mm.json +++ b/resources/profiles/Volumic/process/High speed - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Qx4TTWaVVzXqRCJ4", "name": "High speed - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed - 0.30mm.json b/resources/profiles/Volumic/process/High speed - 0.30mm.json index 9f46ed717d9..abc18e3fc19 100644 --- a/resources/profiles/Volumic/process/High speed - 0.30mm.json +++ b/resources/profiles/Volumic/process/High speed - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "6h7mK5XKws51vPov", "name": "High speed - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance - 0.10mm.json b/resources/profiles/Volumic/process/Normal performance - 0.10mm.json index cbf9027ed2d..7bc3240b5ed 100644 --- a/resources/profiles/Volumic/process/Normal performance - 0.10mm.json +++ b/resources/profiles/Volumic/process/Normal performance - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "FTqjZjQPPR7L9pO1", "name": "Normal performance - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance - 0.15mm.json b/resources/profiles/Volumic/process/Normal performance - 0.15mm.json index ca338554458..a274e1263ad 100644 --- a/resources/profiles/Volumic/process/Normal performance - 0.15mm.json +++ b/resources/profiles/Volumic/process/Normal performance - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "JY670KAkuqNKq1pD", "name": "Normal performance - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance - 0.20mm.json b/resources/profiles/Volumic/process/Normal performance - 0.20mm.json index 37cedf03c16..e03c5bdafde 100644 --- a/resources/profiles/Volumic/process/Normal performance - 0.20mm.json +++ b/resources/profiles/Volumic/process/Normal performance - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "6xUkj1ATyvZ9n69E", "name": "Normal performance - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance - 0.25mm.json b/resources/profiles/Volumic/process/Normal performance - 0.25mm.json index 014c0930481..3b1db4b002c 100644 --- a/resources/profiles/Volumic/process/Normal performance - 0.25mm.json +++ b/resources/profiles/Volumic/process/Normal performance - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "J2ZwCE8TcdUDJy9u", "name": "Normal performance - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance - 0.30mm.json b/resources/profiles/Volumic/process/Normal performance - 0.30mm.json index c9bffc5cc53..b75c0433c3b 100644 --- a/resources/profiles/Volumic/process/Normal performance - 0.30mm.json +++ b/resources/profiles/Volumic/process/Normal performance - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "TikIASel3dJuzlIC", "name": "Normal performance - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance DUAL - 0.10mm.json b/resources/profiles/Volumic/process/Normal performance DUAL - 0.10mm.json index 01a5fc717eb..2fdfb80a546 100644 --- a/resources/profiles/Volumic/process/Normal performance DUAL - 0.10mm.json +++ b/resources/profiles/Volumic/process/Normal performance DUAL - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CPvAoewpDOyAUZzz", "name": "Normal performance DUAL - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance DUAL - 0.15mm.json b/resources/profiles/Volumic/process/Normal performance DUAL - 0.15mm.json index 6bbe8fd3256..b231cbe91bb 100644 --- a/resources/profiles/Volumic/process/Normal performance DUAL - 0.15mm.json +++ b/resources/profiles/Volumic/process/Normal performance DUAL - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "lxzarnB1H22cOqIl", "name": "Normal performance DUAL - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance DUAL - 0.20mm.json b/resources/profiles/Volumic/process/Normal performance DUAL - 0.20mm.json index 3006b559ba1..bed3e748ab3 100644 --- a/resources/profiles/Volumic/process/Normal performance DUAL - 0.20mm.json +++ b/resources/profiles/Volumic/process/Normal performance DUAL - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "GNPkW4cAsenc06Qj", "name": "Normal performance DUAL - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance DUAL - 0.25mm.json b/resources/profiles/Volumic/process/Normal performance DUAL - 0.25mm.json index 44142dd68c6..87596fc8902 100644 --- a/resources/profiles/Volumic/process/Normal performance DUAL - 0.25mm.json +++ b/resources/profiles/Volumic/process/Normal performance DUAL - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VvM6yKMGis2PyNHn", "name": "Normal performance DUAL - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance DUAL - 0.30mm.json b/resources/profiles/Volumic/process/Normal performance DUAL - 0.30mm.json index f64e3e29261..a389180199f 100644 --- a/resources/profiles/Volumic/process/Normal performance DUAL - 0.30mm.json +++ b/resources/profiles/Volumic/process/Normal performance DUAL - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ouPv4ZnFRqBIZTUQ", "name": "Normal performance DUAL - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance VS30 - 0.10mm.json b/resources/profiles/Volumic/process/Normal performance VS30 - 0.10mm.json index 078b4cbb00e..fb120c03a58 100644 --- a/resources/profiles/Volumic/process/Normal performance VS30 - 0.10mm.json +++ b/resources/profiles/Volumic/process/Normal performance VS30 - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "A1MeH5DTrbaapIvs", "name": "Normal performance VS30 - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance VS30 - 0.15mm.json b/resources/profiles/Volumic/process/Normal performance VS30 - 0.15mm.json index f556ca2764e..b95abd904f5 100644 --- a/resources/profiles/Volumic/process/Normal performance VS30 - 0.15mm.json +++ b/resources/profiles/Volumic/process/Normal performance VS30 - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "RN31YrQ3X4sAgRji", "name": "Normal performance VS30 - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance VS30 - 0.20mm.json b/resources/profiles/Volumic/process/Normal performance VS30 - 0.20mm.json index 1b4dd1116f6..0657825c7ba 100644 --- a/resources/profiles/Volumic/process/Normal performance VS30 - 0.20mm.json +++ b/resources/profiles/Volumic/process/Normal performance VS30 - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "pW9nom8pyi48XeOB", "name": "Normal performance VS30 - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance VS30 - 0.25mm.json b/resources/profiles/Volumic/process/Normal performance VS30 - 0.25mm.json index bf0688719ca..0197bc775d4 100644 --- a/resources/profiles/Volumic/process/Normal performance VS30 - 0.25mm.json +++ b/resources/profiles/Volumic/process/Normal performance VS30 - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "O4mCyYEDLcYs9ksp", "name": "Normal performance VS30 - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance VS30 - 0.30mm.json b/resources/profiles/Volumic/process/Normal performance VS30 - 0.30mm.json index 0a8d5556daa..5f8a81f236d 100644 --- a/resources/profiles/Volumic/process/Normal performance VS30 - 0.30mm.json +++ b/resources/profiles/Volumic/process/Normal performance VS30 - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Wl53R1wiaRjXyP4m", "name": "Normal performance VS30 - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.10mm.json b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.10mm.json index 259d9840cec..7a4cca2086e 100644 --- a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.10mm.json +++ b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "tc9ZLzQlKlARHNGw", "name": "Normal speed (Stage 2) - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.15mm.json b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.15mm.json index 0975b887011..1b3bdfd4736 100644 --- a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.15mm.json +++ b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "SIjHUj1PwWkFFffa", "name": "Normal speed (Stage 2) - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.20mm.json b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.20mm.json index f470b388e48..789a59c8e7b 100644 --- a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.20mm.json +++ b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "M0E4QeWLUVdWUHfJ", "name": "Normal speed (Stage 2) - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.25mm.json b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.25mm.json index e5a426e5ca0..6b1a0c5fe3c 100644 --- a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.25mm.json +++ b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "7RRVQg0tShBy6Xuj", "name": "Normal speed (Stage 2) - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.30mm.json b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.30mm.json index c6178c480bc..0243eff1b9e 100644 --- a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.30mm.json +++ b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VeLRxlpx80B0fAVO", "name": "Normal speed (Stage 2) - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed - 0.10mm.json b/resources/profiles/Volumic/process/Normal speed - 0.10mm.json index f06e980fd97..475b8436ca8 100644 --- a/resources/profiles/Volumic/process/Normal speed - 0.10mm.json +++ b/resources/profiles/Volumic/process/Normal speed - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KYuX2erMe0Qnjqig", "name": "Normal speed - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed - 0.15mm.json b/resources/profiles/Volumic/process/Normal speed - 0.15mm.json index 6ed23bafebf..5ee0b65a918 100644 --- a/resources/profiles/Volumic/process/Normal speed - 0.15mm.json +++ b/resources/profiles/Volumic/process/Normal speed - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ulLTG505AlCQyOVT", "name": "Normal speed - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed - 0.20mm.json b/resources/profiles/Volumic/process/Normal speed - 0.20mm.json index f4a320f9dd3..18f07ba295c 100644 --- a/resources/profiles/Volumic/process/Normal speed - 0.20mm.json +++ b/resources/profiles/Volumic/process/Normal speed - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "5VK09EV5nZFZ8tDX", "name": "Normal speed - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed - 0.25mm.json b/resources/profiles/Volumic/process/Normal speed - 0.25mm.json index a1be98fb0fe..a0400b22e51 100644 --- a/resources/profiles/Volumic/process/Normal speed - 0.25mm.json +++ b/resources/profiles/Volumic/process/Normal speed - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "sKsaHEmeYNos7Ap3", "name": "Normal speed - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed - 0.30mm.json b/resources/profiles/Volumic/process/Normal speed - 0.30mm.json index 40b64dd1520..227cda5c1ef 100644 --- a/resources/profiles/Volumic/process/Normal speed - 0.30mm.json +++ b/resources/profiles/Volumic/process/Normal speed - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "fLtovREOpasPunPM", "name": "Normal speed - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.10mm.json b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.10mm.json index 92dd3cf0b73..d80d3230e45 100644 --- a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.10mm.json +++ b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "v29Kc1X5AEVhYRk8", "name": "Very high speed (Stage 2) - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.15mm.json b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.15mm.json index a9905cc4497..fea250b867e 100644 --- a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.15mm.json +++ b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "IFk4SdxdsDe9XHA7", "name": "Very high speed (Stage 2) - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.20mm.json b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.20mm.json index 69fc204243c..b308dbbf7e1 100644 --- a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.20mm.json +++ b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "rnRfy0wN7TWGyq6y", "name": "Very high speed (Stage 2) - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.25mm.json b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.25mm.json index 146ca87f281..004cc147190 100644 --- a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.25mm.json +++ b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Trb33VeRJfEhjvyw", "name": "Very high speed (Stage 2) - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.30mm.json b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.30mm.json index 041a717c82c..b5225c859ea 100644 --- a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.30mm.json +++ b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "A7yh9LBPEQ0kX3w4", "name": "Very high speed (Stage 2) - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed - 0.10mm.json b/resources/profiles/Volumic/process/Very high speed - 0.10mm.json index b2fc073dab7..1b1e9c91088 100644 --- a/resources/profiles/Volumic/process/Very high speed - 0.10mm.json +++ b/resources/profiles/Volumic/process/Very high speed - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ZqsUCKAhvogcqdcv", "name": "Very high speed - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed - 0.15mm.json b/resources/profiles/Volumic/process/Very high speed - 0.15mm.json index 144f5a9a63f..7e657c64980 100644 --- a/resources/profiles/Volumic/process/Very high speed - 0.15mm.json +++ b/resources/profiles/Volumic/process/Very high speed - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Ept7P07GPaZjDkH1", "name": "Very high speed - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed - 0.20mm.json b/resources/profiles/Volumic/process/Very high speed - 0.20mm.json index ddc1c1e9612..5f12b90d5e7 100644 --- a/resources/profiles/Volumic/process/Very high speed - 0.20mm.json +++ b/resources/profiles/Volumic/process/Very high speed - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "1I77SBl6Oe7z8QVf", "name": "Very high speed - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed - 0.25mm.json b/resources/profiles/Volumic/process/Very high speed - 0.25mm.json index 1ed29fc015c..eede1a2bf38 100644 --- a/resources/profiles/Volumic/process/Very high speed - 0.25mm.json +++ b/resources/profiles/Volumic/process/Very high speed - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "qy4K1ha3a6cbW0sw", "name": "Very high speed - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed - 0.30mm.json b/resources/profiles/Volumic/process/Very high speed - 0.30mm.json index c253c267481..b6148c6aa64 100644 --- a/resources/profiles/Volumic/process/Very high speed - 0.30mm.json +++ b/resources/profiles/Volumic/process/Very high speed - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "4up2FChqWIEn6vYl", "name": "Very high speed - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Voron.json b/resources/profiles/Voron.json index 7f29a3c168b..24c9f82e9c7 100644 --- a/resources/profiles/Voron.json +++ b/resources/profiles/Voron.json @@ -1,6 +1,6 @@ { "name": "Voron", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Voron configurations", "machine_model_list": [ diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.15 nozzle.json index 3d10f369850..a9317c97a6b 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "RSadcTHDZHjlbsFd", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.2 nozzle.json index 73929290f4d..6b9a3b64e8f 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "lXEF4z0hdwdok2CH", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.25 nozzle.json index 4d0212861c1..4cf75cc87ea 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "DULWJ8Zec8HTWxDh", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.4 nozzle.json index f29e941c414..60481ed375b 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.4 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "kquY5Lc3pSREFhza", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.5 nozzle.json index 38fdf744f71..a5da931cf28 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "8Hrb0gBmZRg4MYLw", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.6 nozzle.json index 3997aa1d01b..fcea5f03a26 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "AJChFdhvFWxwNMK1", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.8 nozzle.json index 6015daae3aa..1015d1f6865 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "FpfWQS6wD4qoFBkN", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 1.0 nozzle.json index 0acbee1a3ea..916ad177d27 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "Gqs2KG5OmxJX9yfu", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.15 nozzle.json index 7fc137332a3..6a7f20f7e97 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "4aoiMkcZca9kJxZ4", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json index 46839a8fd69..62ab018cd49 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "bHcmiRMYYjUq5Oe7", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.25 nozzle.json index a26c15d04ef..5c7370a9ffd 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "gAbA9vQO1wiTx4th", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.4 nozzle.json index af7da735f53..f76a823e19e 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.4 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "tMneqFiYEOQmrtnj", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.5 nozzle.json index 342cf8a2d4a..a8029cbb550 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "jO3B7JrN7mIqU22S", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json index cdb35f39d20..dfd021b4ef1 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "KmcPeB3UBN3BMqbG", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json index 547459096a6..7dfa9d918f3 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "0dQZ44P3Z4rZLZQA", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 1.0 nozzle.json index b71c5a10d97..fb866ae71b4 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "mGio5zVg50VkXuTo", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json index 61f463af888..41a8d12b343 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "4F4ECwZM6CQVuLu3", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json index 2cc6b3ac422..aab646ee6ae 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "w6cGdRGVU2mdjr0r", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json index 18a93975c20..0c2f78920d0 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "FMR2ykre2vRYivO8", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.4 nozzle.json index 243acb3ffee..a79fa8c109d 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.4 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "G4jBDBTV7TnKVT6X", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.5 nozzle.json index fca5002737d..3eba77278f5 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "zJGon17g9uaa0mf7", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json index 457544c804a..2061569b31c 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "u3IP8AwH0qXQAUE3", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json index 0e98d9d5664..e1d2ec2b47d 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "Ftd0fJWg866zYxbu", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 1.0 nozzle.json index 60748755f1d..8a16caabbdd 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "jjWXQhWT6SRqBPZt", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.15 nozzle.json index d0a8bd72613..803fcabbfec 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "5MsTnvkKhQAASF8b", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json index d1b22d5fcc0..ff983a832a4 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "jVj5pL1eUnxUPpOQ", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.25 nozzle.json index 045e5863e24..aaa8d918b57 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "kV1zjevI1NpgmiYj", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.4 nozzle.json index 2cc0009589e..fca4468a98d 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.4 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "b1Bu76BOqWx9hn8u", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.5 nozzle.json index 5288a71f1c2..4ed1a19dfcf 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "HjdBfGnZlWzMuvk0", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json index f2721bacf63..3305fda8623 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "IVcldSYpQ7o8uT8k", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json index bdb55f91419..13f738f4cad 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "isxCbzE9ASACVOPu", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 1.0 nozzle.json index 84626a6a979..c17f6937c4b 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "KVAdqy6C35LGB00e", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.15 nozzle.json index 32d135cdbc2..ce7bce26b12 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "brA0Ou6CDFH7GF4S", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.2 nozzle.json index 5a0e2b9d929..751d7207dfe 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "Suf28dYToJTjqiKh", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.25 nozzle.json index 9515026c056..68e7dbc5bb2 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "PuziiatkDvJkuuJZ", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.4 nozzle.json index ba7af518f16..6d3ce37960c 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.4 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "WHYEf0YqJXNgIUnP", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.5 nozzle.json index 4f6fab8af35..f51cc5e5c69 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "tjek5U0AkXTYI7cn", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.6 nozzle.json index 2be7de3cea0..93daaf224a4 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "OSw8n6yRCHZHdOgM", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.8 nozzle.json index a5f89f92ff7..7a2e6b729f1 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "wNEUMNpyafB7yN8O", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 1.0 nozzle.json index d1cc07734a2..a93767551de 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "OUj0nzRwlGD2YBo6", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.15 nozzle.json index db98eeb881f..baf3be80661 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "F8GJR6YZE10TMA0y", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.2 nozzle.json index 719793b5355..257c06c9835 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "WOmexnmUoHkptByc", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.25 nozzle.json index f093d4abf54..ef3693f828d 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "rkurdiS4CTaa3fKW", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.4 nozzle.json index 2a4dd28b5a6..cd5a4ed082c 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.4 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "cdWYMr2HnBtUUZP4", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.5 nozzle.json index 6d37561e7bc..74bd61b4033 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "opNpG2tiXcDqfAgo", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.6 nozzle.json index d4f1cee363e..ac62b0dc9ba 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "DOssK38zCrPwJUw3", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.8 nozzle.json index 8a1d89ac331..b7032fc2a70 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "8jCRycJ89FUcjJdj", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 1.0 nozzle.json index 0a2663cd82b..a2717eeab7e 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "YeTSXmrG716Vcm2s", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.15 nozzle.json index 27fe60cdd52..2e209ccd743 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "UDVgTVcLwqVXusSB", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.2 nozzle.json index c4cdf62d92e..447c1522077 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ZGoJujNIvqSxBVx5", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.25 nozzle.json index 98f934c3142..d206bef37c0 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ENL4Gb8oNlIiAsuT", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.4 nozzle.json index 15fbd11ec26..967240ebaf2 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.4 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "movln7KnLdZZVJSJ", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.5 nozzle.json index d57aee7e50a..2749dc72e4c 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "38iO66jPbRLabAkg", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.6 nozzle.json index 9f037c7edce..171ebb4640a 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "Ux02b7O2cluT1g2x", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.8 nozzle.json index b7915c0213b..44b7de8ea84 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "r56Tg2wgsAbHx0zC", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 1.0 nozzle.json index 6f321c43005..f6eda70ca54 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "Ei7VU82mjgq6MrVA", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.15 nozzle.json index 2d4c437efcf..72e211390e0 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "h5BoablHRKcPWsoi", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.2 nozzle.json index 05280061904..dfba8a1b502 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "FupNz3FYotUKztVb", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.25 nozzle.json index 169bed3741c..c72b2c1a3fa 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "NWxG5NRD7OxyDeLJ", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.4 nozzle.json index 2c99b6088b5..090e779399c 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.4 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "kd6Dylwaz7A8A1LB", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.5 nozzle.json index ee9554f8b98..f5372841799 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "DS558fFGRIbNmoxv", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.30mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.6 nozzle.json index 44a2f45e66d..4141421686e 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "P5IwnHyq6cqZvO1T", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.8 nozzle.json index 65fba9e34f5..b2050e97d8f 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "hnbh3EUedehyohuh", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 1.0 nozzle.json index 0e8155b9a7b..d761c0876c4 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "z3usdYqkNXICQWZA", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/process/0.05mm Fine 0.15 nozzle @Voron.json b/resources/profiles/Voron/process/0.05mm Fine 0.15 nozzle @Voron.json index d8b2940f7be..bbed1070e37 100644 --- a/resources/profiles/Voron/process/0.05mm Fine 0.15 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.05mm Fine 0.15 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.05mm Fine 0.15 nozzle @Voron", "inherits": "fdm_process_voron_common_0_1_5", "from": "system", - "setting_id": "GP004", + "setting_id": "jtt0gO87jzVyOD6s", "instantiation": "true", "layer_height": "0.05", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json index c10f9cec5a3..3df87527a2c 100644 --- a/resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.06mm Fine 0.2 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "1HlVm6T9mIu2OAA6", "instantiation": "true", "layer_height": "0.06", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.06mm Fine 0.25 nozzle @Voron.json b/resources/profiles/Voron/process/0.06mm Fine 0.25 nozzle @Voron.json index 414a1a295b3..f568a0a67a8 100644 --- a/resources/profiles/Voron/process/0.06mm Fine 0.25 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.06mm Fine 0.25 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.06mm Fine 0.25 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2_5", "from": "system", - "setting_id": "GP004", + "setting_id": "vOfL5uyHjmcRPcXO", "instantiation": "true", "layer_height": "0.06", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.07mm Optimal 0.15 nozzle @Voron.json b/resources/profiles/Voron/process/0.07mm Optimal 0.15 nozzle @Voron.json index b93fddb62eb..c7861069aa3 100644 --- a/resources/profiles/Voron/process/0.07mm Optimal 0.15 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.07mm Optimal 0.15 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.07mm Optimal 0.15 nozzle @Voron", "inherits": "fdm_process_voron_common_0_1_5", "from": "system", - "setting_id": "GP004", + "setting_id": "b01TGllB1v9Z64WK", "instantiation": "true", "layer_height": "0.07", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.08mm Extra Fine @Voron.json b/resources/profiles/Voron/process/0.08mm Extra Fine @Voron.json index 62a91d27015..4cb9415d597 100644 --- a/resources/profiles/Voron/process/0.08mm Extra Fine @Voron.json +++ b/resources/profiles/Voron/process/0.08mm Extra Fine @Voron.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "eFPB6RHFWXA8mbJf", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json index 8c8e4ca2eb6..625460d27a1 100644 --- a/resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal 0.2 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "L4l0DFuqhk0sisSh", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.08mm Optimal 0.25 nozzle @Voron.json b/resources/profiles/Voron/process/0.08mm Optimal 0.25 nozzle @Voron.json index 4f7d3af548a..8701c01fcfd 100644 --- a/resources/profiles/Voron/process/0.08mm Optimal 0.25 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.08mm Optimal 0.25 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal 0.25 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2_5", "from": "system", - "setting_id": "GP004", + "setting_id": "6lIv5g030ozyUvUj", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.09mm Standard 0.15 nozzle @Voron.json b/resources/profiles/Voron/process/0.09mm Standard 0.15 nozzle @Voron.json index 2bb6750cfa1..0af7a7e9d66 100644 --- a/resources/profiles/Voron/process/0.09mm Standard 0.15 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.09mm Standard 0.15 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.09mm Standard 0.15 nozzle @Voron", "inherits": "fdm_process_voron_common_0_1_5", "from": "system", - "setting_id": "GP004", + "setting_id": "SAL9phdxeRYwE6e0", "instantiation": "true", "layer_height": "0.09", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.10mm Extra Fine 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.10mm Extra Fine 0.5 nozzle @Voron.json index 5864af07d63..652f2381a5d 100644 --- a/resources/profiles/Voron/process/0.10mm Extra Fine 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.10mm Extra Fine 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.10mm Extra Fine 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "3Vv5tGKJguczYF1R", "instantiation": "true", "layer_height": "0.10", "bottom_shell_layers": "6", diff --git a/resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json index 4830606a4a9..6c9e758b28c 100644 --- a/resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard 0.2 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "l8jKZEaxjGcnkqw4", "instantiation": "true", "layer_height": "0.10", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.10mm Standard 0.25 nozzle @Voron.json b/resources/profiles/Voron/process/0.10mm Standard 0.25 nozzle @Voron.json index 892e68506ba..1c860fe5d29 100644 --- a/resources/profiles/Voron/process/0.10mm Standard 0.25 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.10mm Standard 0.25 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard 0.25 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2_5", "from": "system", - "setting_id": "GP004", + "setting_id": "hRS807y4Y7Ur9cJV", "instantiation": "true", "layer_height": "0.10", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.12mm Draft 0.15 nozzle @Voron.json b/resources/profiles/Voron/process/0.12mm Draft 0.15 nozzle @Voron.json index 3d61b78200f..50b93dfc11b 100644 --- a/resources/profiles/Voron/process/0.12mm Draft 0.15 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.12mm Draft 0.15 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft 0.15 nozzle @Voron", "inherits": "fdm_process_voron_common_0_1_5", "from": "system", - "setting_id": "GP004", + "setting_id": "DAzzkVWIVurPT7Fj", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json index bfb52190e2d..b6bf3ebada0 100644 --- a/resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft 0.2 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "qaROJcuKAF42scUc", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.12mm Draft 0.25 nozzle @Voron.json b/resources/profiles/Voron/process/0.12mm Draft 0.25 nozzle @Voron.json index 90e978415c1..928861ca31c 100644 --- a/resources/profiles/Voron/process/0.12mm Draft 0.25 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.12mm Draft 0.25 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft 0.25 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2_5", "from": "system", - "setting_id": "GP004", + "setting_id": "RZ1d77nOCvPHWZcR", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.12mm Fine @Voron.json b/resources/profiles/Voron/process/0.12mm Fine @Voron.json index b33ce07312a..9ded0fced7d 100644 --- a/resources/profiles/Voron/process/0.12mm Fine @Voron.json +++ b/resources/profiles/Voron/process/0.12mm Fine @Voron.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dsfcyBIJOMl6SPZ7", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json index f41a3fcbaa8..ca443a5cdc8 100644 --- a/resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft 0.2 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "0Xwso4SmnLzUa1I7", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.14mm Extra Draft 0.25 nozzle @Voron.json b/resources/profiles/Voron/process/0.14mm Extra Draft 0.25 nozzle @Voron.json index 7bed3d098c3..803db110def 100644 --- a/resources/profiles/Voron/process/0.14mm Extra Draft 0.25 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.14mm Extra Draft 0.25 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft 0.25 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2_5", "from": "system", - "setting_id": "GP004", + "setting_id": "2MQb1n0alSr64cVm", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.15mm Fine 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.15mm Fine 0.5 nozzle @Voron.json index e0ecc54eb82..b6342b41f9a 100644 --- a/resources/profiles/Voron/process/0.15mm Fine 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.15mm Fine 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.15mm Fine 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "S7wMy6FGpi2O5hYv", "instantiation": "true", "layer_height": "0.15", "bottom_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.15mm Optimal @Voron.json b/resources/profiles/Voron/process/0.15mm Optimal @Voron.json index bafdb8523d8..75843a03d2c 100644 --- a/resources/profiles/Voron/process/0.15mm Optimal @Voron.json +++ b/resources/profiles/Voron/process/0.15mm Optimal @Voron.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JYeXOs4NWhpFBNwj", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json index dec7ef8674d..3c2ead71dc7 100644 --- a/resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "kGptY816CvOINz31", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.20mm Optimal 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.20mm Optimal 0.5 nozzle @Voron.json index 0ea60a25e46..67a4bbf0bea 100644 --- a/resources/profiles/Voron/process/0.20mm Optimal 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.20mm Optimal 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.20mm Optimal 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "LGTKjeVVwtXYQoMF", "instantiation": "true", "layer_height": "0.20", "bottom_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.20mm Standard @Voron.json b/resources/profiles/Voron/process/0.20mm Standard @Voron.json index dfd1eb82b97..0f95db44f94 100644 --- a/resources/profiles/Voron/process/0.20mm Standard @Voron.json +++ b/resources/profiles/Voron/process/0.20mm Standard @Voron.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "woKQ9fsFs3B9vQCS", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.24mm Draft @Voron.json b/resources/profiles/Voron/process/0.24mm Draft @Voron.json index 6c33cb84029..05b641c6d21 100644 --- a/resources/profiles/Voron/process/0.24mm Draft @Voron.json +++ b/resources/profiles/Voron/process/0.24mm Draft @Voron.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hGqnR2CSdJ0vbzA5", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json index 9237a363be4..0c9f75d2079 100644 --- a/resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine 0.8 nozzle @Voron", "inherits": "fdm_process_voron_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "mEpo3myfJtsFdBpf", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json index dd0cf59d049..6a13f3ff468 100644 --- a/resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "9zDra43Gi9Uf58Bz", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.25mm Standard 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.25mm Standard 0.5 nozzle @Voron.json index 5b8b899070e..deb90ebc637 100644 --- a/resources/profiles/Voron/process/0.25mm Standard 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.25mm Standard 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "Z2vpBftpFjvLR7zM", "instantiation": "true", "layer_height": "0.25", "bottom_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.28mm Extra Draft @Voron.json b/resources/profiles/Voron/process/0.28mm Extra Draft @Voron.json index 6657bff1f8c..3a61d4147c0 100644 --- a/resources/profiles/Voron/process/0.28mm Extra Draft @Voron.json +++ b/resources/profiles/Voron/process/0.28mm Extra Draft @Voron.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UDB3DygiAKMYmAU3", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Voron/process/0.30mm Draft 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.30mm Draft 0.5 nozzle @Voron.json index e74b9f90d39..4fb7434248a 100644 --- a/resources/profiles/Voron/process/0.30mm Draft 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.30mm Draft 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "wdFabSuzOsdbtpj0", "instantiation": "true", "layer_height": "0.30", "top_surface_line_width": "0.55", diff --git a/resources/profiles/Voron/process/0.30mm Fine 1.0 nozzle @Voron.json b/resources/profiles/Voron/process/0.30mm Fine 1.0 nozzle @Voron.json index 65426eb969b..4a2a9820285 100644 --- a/resources/profiles/Voron/process/0.30mm Fine 1.0 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.30mm Fine 1.0 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.30mm Fine 1.0 nozzle @Voron", "inherits": "fdm_process_voron_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "qGIEkSUhwWx1TR12", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json index 78e9d50a02e..9d675a8b2ce 100644 --- a/resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "nBqIcIolrCqGeBUq", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json index c7b17fecf02..442155d2e8a 100644 --- a/resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "I0th0trvF3qNf03w", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.35mm Extra Draft 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.35mm Extra Draft 0.5 nozzle @Voron.json index 7fed261d795..52747718c09 100644 --- a/resources/profiles/Voron/process/0.35mm Extra Draft 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.35mm Extra Draft 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.35mm Extra Draft 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "XFRqwwIkRITwt2WL", "instantiation": "true", "layer_height": "0.35", "top_surface_line_width": "0.55", diff --git a/resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json index 14564bec0b7..5c2f2f41708 100644 --- a/resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "DuK2ANqZkCTaCu7Z", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json index afde3bc9e0a..687511027c5 100644 --- a/resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard 0.8 nozzle @Voron", "inherits": "fdm_process_voron_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "uADnKEy08W0cVHqM", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json index cfdecaecb29..355e7385275 100644 --- a/resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "LTgJgK9n8kXOO0yt", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json index 6ee603f56d0..3e249506155 100644 --- a/resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft 0.8 nozzle @Voron", "inherits": "fdm_process_voron_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "dp3sfAZ99AA20Pa1", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.50mm Standard 1.0 nozzle @Voron.json b/resources/profiles/Voron/process/0.50mm Standard 1.0 nozzle @Voron.json index 170832f8c7f..0f8eeb483ed 100644 --- a/resources/profiles/Voron/process/0.50mm Standard 1.0 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.50mm Standard 1.0 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard 1.0 nozzle @Voron", "inherits": "fdm_process_voron_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "VhNkP4FxrHEoubZQ", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json index cd53766a996..5e6b077ccd7 100644 --- a/resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft 0.8 nozzle @Voron", "inherits": "fdm_process_voron_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "ZETvf18e3WD5QXI5", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.60mm Draft 1.0 nozzle @Voron.json b/resources/profiles/Voron/process/0.60mm Draft 1.0 nozzle @Voron.json index 1c33d078aa3..a0091a9e29c 100644 --- a/resources/profiles/Voron/process/0.60mm Draft 1.0 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.60mm Draft 1.0 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.60mm Draft 1.0 nozzle @Voron", "inherits": "fdm_process_voron_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "wq1Qf5Onp0KUGeJE", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.80mm Extra Draft 1.0 nozzle @Voron.json b/resources/profiles/Voron/process/0.80mm Extra Draft 1.0 nozzle @Voron.json index e214562baff..9ad822995ac 100644 --- a/resources/profiles/Voron/process/0.80mm Extra Draft 1.0 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.80mm Extra Draft 1.0 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.80mm Extra Draft 1.0 nozzle @Voron", "inherits": "fdm_process_voron_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "6VRaJ7Ns2zncUUfz", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", diff --git a/resources/profiles/Voxelab.json b/resources/profiles/Voxelab.json index e2da594a74e..758b9d0cd3b 100644 --- a/resources/profiles/Voxelab.json +++ b/resources/profiles/Voxelab.json @@ -1,7 +1,7 @@ { "name": "Voxelab", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Voxelab configurations", "machine_model_list": [ diff --git a/resources/profiles/Voxelab/machine/Voxelab Aquila X2 0.4 nozzle.json b/resources/profiles/Voxelab/machine/Voxelab Aquila X2 0.4 nozzle.json index 4f74451d1b3..39441951802 100644 --- a/resources/profiles/Voxelab/machine/Voxelab Aquila X2 0.4 nozzle.json +++ b/resources/profiles/Voxelab/machine/Voxelab Aquila X2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Voxelab Aquila X2 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "7ODLRyfsqCsC3PID", "instantiation": "true", "printer_model": "Voxelab Aquila X2", "default_print_profile": "0.20mm Standard @Voxelab AquilaX2", diff --git a/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json b/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json index 4abebe479ca..f595e8b16b3 100644 --- a/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json +++ b/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Voxelab AquilaX2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "xCSbqEmBX0IB51ZS", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json b/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json index fce226e4d9b..97d049eb149 100644 --- a/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json +++ b/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Voxelab AquilaX2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "DbIfKn2knpsOQT7H", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Vzbot.json b/resources/profiles/Vzbot.json index e30720f7370..12ec13402b3 100644 --- a/resources/profiles/Vzbot.json +++ b/resources/profiles/Vzbot.json @@ -1,6 +1,6 @@ { "name": "Vzbot", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Vzbot configurations", "machine_model_list": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic ABS.json b/resources/profiles/Vzbot/filament/Vzbot Generic ABS.json index 743ae454092..831670240cd 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic ABS.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic ABS.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nRFPlbSKRMb0UpSI", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic ASA.json b/resources/profiles/Vzbot/filament/Vzbot Generic ASA.json index 357f84697d9..0996b8cd18d 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic ASA.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic ASA.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rP4Qul9OY7lUhPgO", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PA-CF.json b/resources/profiles/Vzbot/filament/Vzbot Generic PA-CF.json index c7468a1f986..f51cda8ed98 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PA-CF.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AKO1twNgFO67N5GK", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PA.json b/resources/profiles/Vzbot/filament/Vzbot Generic PA.json index ea267516438..815969c7121 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PA.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PA.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4CBO5MnUk8Smhs3q", "filament_id": "GFN99", "instantiation": "true", "nozzle_temperature_initial_layer": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PC.json b/resources/profiles/Vzbot/filament/Vzbot Generic PC.json index 6afb4180fa2..ebb44e627a9 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PC.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PC.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wUe99Mr4HqzSNxgO", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PETG.json b/resources/profiles/Vzbot/filament/Vzbot Generic PETG.json index f5a9d039eb0..cc48d692990 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PETG.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PETG.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "C8LMRvN350POVqC2", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PLA-CF.json b/resources/profiles/Vzbot/filament/Vzbot Generic PLA-CF.json index 33acc1967f6..33ab4f69a3c 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PLA-CF.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nt1egZD1dQEVXp0v", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PLA.json b/resources/profiles/Vzbot/filament/Vzbot Generic PLA.json index 044416df584..48a8aefecca 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PLA.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PLA.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4JMiuJbl1gNrBipT", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PVA.json b/resources/profiles/Vzbot/filament/Vzbot Generic PVA.json index 104dccf1f2c..0d0bd62a3e5 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PVA.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PVA.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DX4eZb2tlNVqeUrn", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic TPU.json b/resources/profiles/Vzbot/filament/Vzbot Generic TPU.json index 138e74a10ff..f5ca3927791 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic TPU.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic TPU.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YlhTF1F3OA2qj6o2", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.4 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.4 nozzle.json index ec48989ae17..d2712138dca 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.4 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 235 AWD 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "EZf1lYKG9h7c8gKn", "instantiation": "true", "printer_model": "Vzbot 235 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.5 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.5 nozzle.json index e283ce78314..e2df37a0204 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.5 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 235 AWD 0.5 nozzle", "inherits": "Vzbot 235 AWD 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "RxA0Pu5VwOqEKrov", "instantiation": "true", "printer_model": "Vzbot 235 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.6 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.6 nozzle.json index 1877a98da8c..78abc22676b 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.6 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 235 AWD 0.6 nozzle", "inherits": "Vzbot 235 AWD 0.4 nozzle", "from": "system", - "setting_id": "GM003", + "setting_id": "bb7maLXPfrMcxn8p", "instantiation": "true", "printer_model": "Vzbot 235 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.4 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.4 nozzle.json index 6000a95412e..d27f1681d73 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.4 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 330 AWD 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "vxwG1SY30m0B6XTp", "instantiation": "true", "printer_model": "Vzbot 330 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.5 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.5 nozzle.json index 1cf5daa6c8d..a234c97df73 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.5 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 330 AWD 0.5 nozzle", "inherits": "Vzbot 330 AWD 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "a6ccTGhce7Lv2QHs", "instantiation": "true", "printer_model": "Vzbot 330 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.6 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.6 nozzle.json index b7d4e9d4b16..1f19e7bc5c9 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.6 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 330 AWD 0.6 nozzle", "inherits": "Vzbot 330 AWD 0.4 nozzle", "from": "system", - "setting_id": "GM003", + "setting_id": "o56K7oCaMvsfo8BT", "instantiation": "true", "printer_model": "Vzbot 330 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot.json b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot.json index 9994391c44d..92d5df57828 100644 --- a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "VZ004", + "setting_id": "sXYnaha5Rf3X27WC", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.5_nozzle.json index c7c5cc38082..ec4a43288b7 100644 --- a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common_0.5_nozzle", "from": "system", - "setting_id": "VZ004", + "setting_id": "Jb7iDPMXUzlD0paU", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.6_nozzle.json index d4315c3f1e5..3453e07b86b 100644 --- a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common_0.6_nozzle", "from": "system", - "setting_id": "VZ004", + "setting_id": "nH8Qe9FH8KAyug2D", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot.json b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot.json index 96429c3485c..d7bb7051e05 100644 --- a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "rIolBnxPDz0JZ1y3", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.5_nozzle.json index 120ea3c42ba..cf95df6ea37 100644 --- a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common_0.5_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "vBKmguJfN2ksgQIj", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.6_nozzle.json index 64be6c3ec07..9e940825722 100644 --- a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common_0.6_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "C8BcidoYg7hz6pZR", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot.json b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot.json index 5d9e1b8a2a3..9ef0460f5fe 100644 --- a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EJM4jDs5VAoDZ2Ck", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.5_nozzle.json index b3c7ebb6e1f..30882e8b8e6 100644 --- a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common_0.5_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "DthzVPCYv8NTUSVz", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.6_nozzle.json index cb1c035dbbc..9ae89f95f95 100644 --- a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common_0.6_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "JQKOfoNtaaLXMDfL", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot.json b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot.json index 7400ea036ef..3ad1d22f9c9 100644 --- a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aufrk8Rt9qtJksVX", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.5_nozzle.json index 0f450244624..dbc5b4e2d1e 100644 --- a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common_0.5_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "6Mc2gE5998yaaxw1", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.6_nozzle.json index 58ef60a6776..144f8b1fb3e 100644 --- a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common_0.6_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "94SjpnI8J6WQ62OI", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot.json b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot.json index c7288585bf1..d3176f67f17 100644 --- a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "R3eBcc7rUY7oh5Vh", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.5_nozzle.json index ebd54291c5d..f7aac43eceb 100644 --- a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common_0.5_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "u5viOOkhCR3nFs8B", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.6_nozzle.json index fabcbc142b3..8ab6c961281 100644 --- a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common_0.6_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "j24GeRgrodJlPD18", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot.json b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot.json index 5005938a097..efadd4a9be9 100644 --- a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "YKDq6PIKg8dcn3vr", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.5_nozzle.json index 547bf12e2c7..c10e0af6a82 100644 --- a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5ZGKXsobBGrbtETB", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.52", diff --git a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.6_nozzle.json index f8b83cdba66..430bab94975 100644 --- a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZBf4g6Ez56En1SmA", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/WEMAKE3D.json b/resources/profiles/WEMAKE3D.json index 18a91722dbd..399d3426414 100644 --- a/resources/profiles/WEMAKE3D.json +++ b/resources/profiles/WEMAKE3D.json @@ -1,6 +1,6 @@ { "name": "WEMAKE3D", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "WEMAKE3D configurations", "machine_model_list": [ @@ -32,7 +32,7 @@ }, { "name": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", - "sub_path": "process/0.08mm ExtraFine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json" + "sub_path": "process/0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json" }, { "name": "0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle", diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.2mm nozzle.json index 1111559057c..c83afd8d4b2 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.2mm nozzle.json @@ -4,7 +4,7 @@ "inherits": "fdm_machine_phoenixprov1_common", "from": "system", "instantiation": "true", - "setting_id": "GM001", + "setting_id": "XHK731uBkstR3hRp", "printer_model": "WEMAKE3D PhoenixProV1", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.3mm nozzle.json index cd18eff66ff..f9535d41144 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_machine_phoenixprov1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "nRofRzkgAke3Bvj3", "instantiation": "true", "printer_model": "WEMAKE3D PhoenixProV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.4mm nozzle.json index a39c89511d4..525328632b5 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_machine_phoenixprov1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "XJntkwRAhQqQVQ7k", "instantiation": "true", "printer_model": "WEMAKE3D PhoenixProV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.6mm nozzle.json index d57eb48855a..dc68c2513fb 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.6mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D PhoenixProV1 0.6mm nozzle", "inherits": "fdm_machine_phoenixprov1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "KZEPfgrYGYHmnRSl", "instantiation": "true", "printer_model": "WEMAKE3D PhoenixProV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.2mm nozzle.json index fc745254ec3..3ffd9859a7f 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.2mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D TinyBotV1 0.2mm nozzle", "inherits": "fdm_machine_tinybotv1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "peKdjRumdiusZYeD", "instantiation": "true", "printer_model": "WEMAKE3D TinyBotV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.3mm nozzle.json index eb6fa29b46b..b5fac967209 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_machine_tinybotv1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "wjb507santoIgEgu", "instantiation": "true", "printer_model": "WEMAKE3D TinyBotV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.4mm nozzle.json index 3c6bf75ea47..e922a08b202 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_machine_tinybotv1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "yNLzZW7IYBbiVENM", "instantiation": "true", "printer_model": "WEMAKE3D TinyBotV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.6mm nozzle.json index ed91c95168e..833b4158244 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.6mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D TinyBotV1 0.6mm nozzle", "inherits": "fdm_machine_tinybotv1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "dxguOcKUGzTHj76q", "instantiation": "true", "printer_model": "WEMAKE3D TinyBotV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index 39a2c8f13ac..6b2e6971aa1 100644 --- a/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.06mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "P4I2dGs9mdGxK7bX", "instantiation": "true", "layer_height": "0.06", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 44cb7164f2b..b2e79038220 100644 --- a/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.06mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "lKRhksHIcW8U9nlN", "instantiation": "true", "layer_height": "0.06", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index a191b238c8b..d0e54983acc 100644 --- a/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "wwivWw7JD0tDe0ar", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 43bb0df4440..bfccefe24c7 100644 --- a/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "oeUMFiVN3C19a8lI", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json deleted file mode 100644 index a191b238c8b..00000000000 --- a/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "type": "process", - "name": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", - "inherits": "fdm_process_phoenixProV1_common", - "from": "system", - "instantiation": "true", - "bottom_shell_layers": "4", - "counterbore_hole_bridging": "partiallybridge", - "default_acceleration": "3000", - "gap_infill_speed": "200", - "layer_height": "0.08", - "initial_layer_acceleration": "1000", - "initial_layer_infill_speed": "80", - "initial_layer_line_width": "0.38", - "initial_layer_speed": "80", - "inner_wall_acceleration": "2500", - "inner_wall_speed": "200", - "internal_solid_infill_line_width": "0.32", - "internal_solid_infill_speed": "200", - "line_width": "0.32", - "outer_wall_acceleration": "2000", - "outer_wall_line_width": "0.32", - "outer_wall_speed": "150", - "print_settings_id": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", - "slow_down_layers": "2", - "sparse_infill_pattern": "rectilinear", - "sparse_infill_speed": "200", - "support_line_width": "0.32", - "thick_bridges": "1", - "top_shell_layers": "4", - "top_surface_acceleration": "2000", - "top_surface_line_width": "0.32", - "top_surface_speed": "150", - "travel_acceleration": "3000", - "travel_speed": "250", - "wall_sequence": "inner-outer-inner wall", - "compatible_printers": [ - "WEMAKE3D PhoenixProV1 0.3mm nozzle" - ] -} diff --git a/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D TinyBotV1 0.3mm nozzle.json deleted file mode 100644 index f813eef18c0..00000000000 --- a/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "type": "process", - "name": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", - "inherits": "fdm_process_phoenixProV1_common", - "from": "system", - "instantiation": "true", - "bottom_shell_layers": "4", - "counterbore_hole_bridging": "partiallybridge", - "default_acceleration": "3000", - "gap_infill_speed": "200", - "layer_height": "0.08", - "initial_layer_acceleration": "1000", - "initial_layer_infill_speed": "80", - "initial_layer_line_width": "0.38", - "initial_layer_speed": "80", - "inner_wall_acceleration": "2500", - "inner_wall_speed": "200", - "internal_solid_infill_line_width": "0.32", - "internal_solid_infill_speed": "200", - "line_width": "0.32", - "outer_wall_acceleration": "2000", - "outer_wall_line_width": "0.32", - "outer_wall_speed": "150", - "print_settings_id": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", - "slow_down_layers": "2", - "sparse_infill_pattern": "rectilinear", - "sparse_infill_speed": "200", - "support_line_width": "0.32", - "thick_bridges": "1", - "top_shell_layers": "4", - "top_surface_acceleration": "2000", - "top_surface_line_width": "0.32", - "top_surface_speed": "150", - "travel_acceleration": "3000", - "travel_speed": "250", - "wall_sequence": "inner-outer-inner wall", - "compatible_printers": [ - "WEMAKE3D TinyBotV1 0.3mm nozzle" - ] -} diff --git a/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle.json index 26980fced75..ed85612e02c 100644 --- a/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "vm9IE4XjJPo8RphS", "instantiation": "true", "layer_height": "0.08", "initial_layer_print_height": "0.16", diff --git a/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D TinyBotV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D TinyBotV1 0.2mm nozzle.json index c75cedb3afc..e3265dd901b 100644 --- a/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D TinyBotV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D TinyBotV1 0.2mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Fine @WEMAKE3D TinyBotV1 0.2mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "KJHOVcfIXsr31KvN", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.16", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json index be355028857..e1f88ea7d7f 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "wmpXPDudntnom6Kx", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json index 64027f5c958..79fc6f603fd 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "2VQgdFkpCRMTA03y", "instantiation": "true", "print_settings_id": "0.12mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle", "layer_height": "0.12", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json index 26281f82bd3..d0dbe927465 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "xvCH51xkv0PvTkqf", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json index deac2803ed7..3f7381affa5 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.6mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "icBFwkQJxqVsDSUH", "instantiation": "true", "print_settings_id": "0.12mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle", "layer_height": "0.12", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index c4ba30bed60..b4f7e2b5b46 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "wAsOQFNNDiluP4fB", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 65668633c92..1f933649a17 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "HbmbIKLbAqm1rPok", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json index c52e23ecafd..890fd826fd4 100644 --- a/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.15mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "q67HwK2lQ2ImXhQ9", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json index 54c51f0db7c..d974bd4401b 100644 --- a/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.15mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "VF0y0eQfT0BZ7iPk", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index 7a5b9d9c706..adf0661503b 100644 --- a/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.15mm Standard @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "oSkFgMyUPhIqmcee", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 389f9570b0e..3a1696ac738 100644 --- a/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.15mm Standard @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "u7Bh8Hf5vOB1MvSl", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json index c3639718694..29d3075124e 100644 --- a/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.16mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "puR7xyQKQioFauQk", "instantiation": "true", "layer_height": "0.16", "initial_layer_print_height": "0.16", diff --git a/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json index 9000cd66ea1..3da6f111e85 100644 --- a/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.16mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "2JQ1plV6wu1puqxi", "instantiation": "true", "layer_height": "0.16", "initial_layer_print_height": "0.16", diff --git a/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json index 6b01f4e4a5f..5de336b8802 100644 --- a/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.1mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "cwITGBAP2HYzhu0i", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json index c849e5b3863..f6659c3ceb9 100644 --- a/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.1mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "EYwYFmo7JV2eyNwY", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index ea12e477a70..5384a59a236 100644 --- a/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.1mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "T3dqJHhfcmP3k6DQ", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 604023f8020..023e3005c7f 100644 --- a/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.1mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "dCweNZzyr6sqDHtt", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index fbf18a90b19..04255607e78 100644 --- a/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.24mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "QHMAReprYaHKSMO7", "instantiation": "true", "layer_height": "0.24", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 2941bc1cae0..723ffcd8ffe 100644 --- a/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.24mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "yEeTta1SiYsHzwiq", "instantiation": "true", "layer_height": "0.24", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index 4d337061f40..2ee6f14fbcd 100644 --- a/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "TFl8vBOxyNLPiX1a", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 240946ec1aa..6bb9b99d15e 100644 --- a/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "keLrcV1Yh3HhZNAJ", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json index 46b55548813..aba823b3676 100644 --- a/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "5m612Xzx3KRvVWrt", "instantiation": "true", "print_settings_id": "0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle", "layer_height": "0.25", diff --git a/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json index 417eb123e0a..158fab90ce8 100644 --- a/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "FOWYsBb6XtGRR2Up", "instantiation": "true", "print_settings_id": "0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle", "layer_height": "0.25", diff --git a/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D PhoenixProV1 0.4mm nozzle.json index af3199de280..87b04d834ee 100644 --- a/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.2mm Standard @WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "DmlEv80SRpa9pYNt", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D TinyBotV1 0.4mm nozzle.json index 2e85557956f..bdf0ae7620a 100644 --- a/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.2mm Standard @WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "Pt0aOqxcVy8GTRXM", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json index e43d86398df..2dbb8c25b36 100644 --- a/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.32mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "aQzgJDz6SgKP22qD", "instantiation": "true", "layer_height": "0.32", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json index bfe167ac92e..fe36c4ab67b 100644 --- a/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.32mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "qjNZ2kkEVuDxyIPG", "instantiation": "true", "layer_height": "0.32", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json index 604eb37052a..65d3d3815b0 100644 --- a/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.3mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "UMMyrxw5h5Xf2g4Q", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json index 243fc14ca5f..c9a7abce942 100644 --- a/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.3mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "JszyAEXCkx9Fy65G", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json index 61f277c107f..dddce271323 100644 --- a/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "MelYbFwaIqcTgRmR", "instantiation": "true", "print_settings_id": "0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle", "layer_height": "0.48", diff --git a/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json index 1be263bfabc..47c7d14c505 100644 --- a/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.48mm Extra Draft @WEMAKE3D TinyBotV1 0.6mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "QKSZ5T6peyXMfqZE", "instantiation": "true", "layer_height": "0.48", "initial_layer_print_height": "0.48", diff --git a/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json index 4f8c90c9796..cf9888c55c3 100644 --- a/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "5JXwah0qXXmMA89e", "instantiation": "true", "print_settings_id": "0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle", "layer_height": "0.4", diff --git a/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json index 7f709119545..8a7bb1f3ea8 100644 --- a/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "hqBED1cY7X1cXHk2", "instantiation": "true", "print_settings_id": "0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle", "layer_height": "0.4", diff --git a/resources/profiles/Wanhao France.json b/resources/profiles/Wanhao France.json index 3b957e5f83a..92fc62c4bdd 100644 --- a/resources/profiles/Wanhao France.json +++ b/resources/profiles/Wanhao France.json @@ -1,6 +1,6 @@ { "name": "Wanhao France", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Wanhao France D12 configurations", "machine_model_list": [ diff --git a/resources/profiles/Wanhao France/filament/YUMI PETG.json b/resources/profiles/Wanhao France/filament/YUMI PETG.json index e1fa2450886..b8046df21ff 100644 --- a/resources/profiles/Wanhao France/filament/YUMI PETG.json +++ b/resources/profiles/Wanhao France/filament/YUMI PETG.json @@ -3,7 +3,7 @@ "name": "YUMI PETG", "inherits": "Yumi Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PFFm20QNgwqyuglH", "filament_id": "GFG99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Wanhao France/filament/YUMI PLA Bowden.json b/resources/profiles/Wanhao France/filament/YUMI PLA Bowden.json index 0eb11d23954..d6a5d6dcc6f 100644 --- a/resources/profiles/Wanhao France/filament/YUMI PLA Bowden.json +++ b/resources/profiles/Wanhao France/filament/YUMI PLA Bowden.json @@ -3,7 +3,7 @@ "name": "YUMI PLA Bowden", "inherits": "Yumi Generic PLA", "from": "system", - "setting_id": "GFSR99", + "setting_id": "zQSSA2QZi27ESyQK", "filament_id": "GFU99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Wanhao France/filament/YUMI PLA Direct Drive.json b/resources/profiles/Wanhao France/filament/YUMI PLA Direct Drive.json index c39ccbe8bfc..be13517ab5b 100644 --- a/resources/profiles/Wanhao France/filament/YUMI PLA Direct Drive.json +++ b/resources/profiles/Wanhao France/filament/YUMI PLA Direct Drive.json @@ -3,7 +3,7 @@ "name": "YUMI PLA Direct Drive", "inherits": "Yumi Generic PLA", "from": "system", - "setting_id": "GFSR99", + "setting_id": "v2p0ooSxHnvVkn57", "filament_id": "GFU99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Wanhao France/filament/Yumi Generic PETG.json b/resources/profiles/Wanhao France/filament/Yumi Generic PETG.json index be868610fa1..83d505ac6fc 100644 --- a/resources/profiles/Wanhao France/filament/Yumi Generic PETG.json +++ b/resources/profiles/Wanhao France/filament/Yumi Generic PETG.json @@ -3,7 +3,6 @@ "name": "Yumi Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFG99", "instantiation": "false", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Wanhao France/filament/Yumi Generic PLA.json b/resources/profiles/Wanhao France/filament/Yumi Generic PLA.json index a9a540f1815..bbace09129f 100644 --- a/resources/profiles/Wanhao France/filament/Yumi Generic PLA.json +++ b/resources/profiles/Wanhao France/filament/Yumi Generic PLA.json @@ -3,7 +3,6 @@ "name": "Yumi Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFL99", "instantiation": "false", "filament_flow_ratio": [ diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 DIRECT 0.4 nozzle.json index a41a6a1204c..865bad7e889 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO M2 DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "R46FVqdQJNceXFVB", "instantiation": "true", "printer_model": "D12 230 PRO M2 DIRECT", "gcode_flavor": "marlin2", diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool.json b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool.json index 95d2b52a4a8..4f89e83c22b 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "IJJla2ZJTEj5O83J", "instantiation": "true", "printer_model": "D12 230 PRO M2 MONO DUAL PoopTool", "default_print_profile": "0.20mm Standard @Wanhao-D12-230 PoopTool", diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle.json index a6ffc48c4fb..6f3cdc3ee9f 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO M2 MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "KLLikpspEn2p4hr0", "instantiation": "true", "printer_model": "D12 230 PRO M2 MONO DUAL", "default_print_profile": "0.20mm Standard @Wanhao-D12-230", diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD DIRECT 0.4 nozzle.json index bdff855c1a4..b15cecc5884 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO SMARTPAD DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "erVlXIi9IMKGHJXV", "instantiation": "true", "printer_model": "D12 230 PRO SMARTPAD DIRECT", "default_print_profile": "0.20mm Standard @Wanhao-D12-230", diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool.json b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool.json index beab95b51a5..80934434bbc 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PubqaINvB4L3UeWp", "instantiation": "true", "printer_model": "D12 230 PRO SMARTPAD MONO DUAL PoopTool", "default_print_profile": "0.20mm Standard @Wanhao-D12-230 PoopTool", diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle.json index 4857363296c..a5dd04837cf 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "GRFdNsjZaVMOtgwS", "instantiation": "true", "printer_model": "D12 230 PRO SMARTPAD MONO DUAL", "default_print_profile": "0.20mm Standard @Wanhao-D12-230", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 DIRECT 0.4 nozzle.json index f0f8e226647..88fc2fa519c 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO M2 DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "P6RfuPrBZJa2BR3J", "instantiation": "true", "printer_model": "D12 300 PRO M2 DIRECT", "gcode_flavor": "marlin2", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL 0.4 nozzle.json index 1941d06d224..e431c6ee247 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO M2 MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "bTbd37YEZf43Pkw2", "instantiation": "true", "printer_model": "D12 300 PRO M2 MONO DUAL", "gcode_flavor": "marlin2", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json index a1a190f1ab7..fe00d9421b5 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "5gVOdIblVA5gfKeN", "instantiation": "true", "printer_settings_id": "Wanhao France D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "printer_model": "D12 300 PRO M2 MONO DUAL PoopTool", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD DIRECT 0.4 nozzle.json index 05f24f68fb7..5795ec87f1d 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO SMARTPAD DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "8zR3DwyC6BsiJwzO", "instantiation": "true", "printer_model": "D12 300 PRO SMARTPAD DIRECT", "gcode_flavor": "klipper", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL 0.4 nozzle.json index 6fda93a2344..fb189c1c70a 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO SMARTPAD MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "N49lBIWv5z1cvRqn", "instantiation": "true", "printer_model": "D12 300 PRO SMARTPAD MONO DUAL", "gcode_flavor": "klipper", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json index c78b0daba85..694ea29dc17 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ADwIpXgme0LgZuMR", "instantiation": "true", "printer_settings_id": "Wanhao France D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "printer_model": "D12 300 PRO SMARTPAD MONO DUAL PoopTool", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 DIRECT 0.4 nozzle.json index b6f7349d788..d49638c216e 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO M2 DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "T1TovgQ0zwad2e0j", "instantiation": "true", "printer_model": "D12 500 PRO SMARTPAD DIRECT", "gcode_flavor": "marlin2", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL 0.4 nozzle.json index 3c3fb305007..f168fa5fe5f 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO M2 MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PBCiIJd64Had3Zta", "instantiation": "true", "printer_model": "D12 500 PRO M2 MONO DUAL", "gcode_flavor": "marlin2", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json index 0de474ad578..6b0c3af76cf 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "POogfMI53cHIGZi7", "instantiation": "true", "printer_settings_id": "Wanhao France D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "printer_model": "D12 500 PRO M2 MONO DUAL PoopTool", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD DIRECT 0.4 nozzle.json index bd2377e730d..4b41bbee339 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO SMARTPAD DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "qMwpt4V1DsowPbn1", "instantiation": "true", "printer_model": "D12 500 PRO SMARTPAD DIRECT", "gcode_flavor": "klipper", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL 0.4 nozzle.json index 0905568aedb..931c88e897d 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO SMARTPAD MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "xya7tlhSORyjAw4O", "instantiation": "true", "printer_model": "D12 500 PRO SMARTPAD MONO DUAL", "gcode_flavor": "klipper", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json index e1a64fcd33a..6f6bea00670 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "q9PXG348AwKyVpkS", "instantiation": "true", "printer_settings_id": "Wanhao France D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "printer_model": "D12 500 PRO SMARTPAD MONO DUAL PoopTool", diff --git a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-230.json b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-230.json index 53da19fa043..43ea7b540a6 100644 --- a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-230.json +++ b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-230.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Wanhao-D12-230", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sCx9qFYlRGVUhZxC", "instantiation": "true", "layer_height": "0.10", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-300.json b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-300.json index 2ede04d2d4d..cc676b1a9fc 100644 --- a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-300.json +++ b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-300.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Wanhao-D12-300", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oUVvy6gnxH9PGmj2", "instantiation": "true", "layer_height": "0.1", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-500.json b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-500.json index f7a9fcb7271..19f59d1b148 100644 --- a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-500.json +++ b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-500.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Wanhao-D12-500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZEiHmWvYEm8bydE2", "instantiation": "true", "layer_height": "0.1", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-230.json b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-230.json index 7e6ebc04472..f29dab795cc 100644 --- a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-230.json +++ b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-230.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @Wanhao-D12-230", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wZtQZ12wbfpFcCc7", "instantiation": "true", "layer_height": "0.15", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-300.json b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-300.json index 48b4db4b75c..62929a94391 100644 --- a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-300.json +++ b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-300.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @Wanhao-D12-300", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "yFtxcvmgj7PVB3hx", "instantiation": "true", "layer_height": "0.15", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-500.json b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-500.json index 7d6966b593c..3adfffbc907 100644 --- a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-500.json +++ b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-500.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @Wanhao-D12-500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "U6FXLvf6cRw4Xi5C", "instantiation": "true", "layer_height": "0.15", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230 PoopTool.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230 PoopTool.json index 70e145680c8..be29fe52f0f 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230 PoopTool.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230 PoopTool.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-230 PoopTool", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "mm5XTn07Si47K9JF", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230.json index 51e74495981..3891d3b2d08 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-230", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "htDDsczZsT3Fazvs", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300 PoopTool.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300 PoopTool.json index 672f0d19309..24f3ff20ef3 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300 PoopTool.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300 PoopTool.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-300 PoopTool", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "nkw0oVHu8xPoWe8i", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300.json index e65b8a2d4ab..5e90c8526bf 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-300", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dlmECZWMRSs0BGgu", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500 PoopTool.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500 PoopTool.json index d05e521cbdb..8f207457f0f 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500 PoopTool.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500 PoopTool.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-500 PoopTool", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MMBQTbhLBqb6byXv", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500.json index 5685fc107ad..8c0d3b7f090 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LSUl3D8OxCncxnMc", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-230.json b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-230.json index 38c46562541..52c14a59792 100644 --- a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-230.json +++ b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-230.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Wanhao-D12-230", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LAZpKTjIQwDI4BTx", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-300.json b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-300.json index 290f84e7154..71aa2e96cd6 100644 --- a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-300.json +++ b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-300.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Wanhao-D12-300", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LmOMl2jQ5G66qCo9", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-500.json b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-500.json index 90fc9acf1c3..4dbec41ea4f 100644 --- a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-500.json +++ b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-500.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Wanhao-D12-500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "O6OfxmRxpZPOmU50", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao.json b/resources/profiles/Wanhao.json index fbd1b366adb..d534a75d8b6 100644 --- a/resources/profiles/Wanhao.json +++ b/resources/profiles/Wanhao.json @@ -1,6 +1,6 @@ { "name": "Wanhao", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Wanhao configurations", "machine_model_list": [ diff --git a/resources/profiles/Wanhao/machine/Wanhao D12-300 0.4 nozzle.json b/resources/profiles/Wanhao/machine/Wanhao D12-300 0.4 nozzle.json index fffd1969c94..b96b3ce2d66 100644 --- a/resources/profiles/Wanhao/machine/Wanhao D12-300 0.4 nozzle.json +++ b/resources/profiles/Wanhao/machine/Wanhao D12-300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Wanhao D12-300 0.4 nozzle", "inherits": "fdm_wanhao_common", "from": "system", - "setting_id": "GM001", + "setting_id": "zEkUAK1KsoEiqC11", "instantiation": "true", "printer_model": "Wanhao D12-300", "nozzle_diameter": [ diff --git a/resources/profiles/Wanhao/process/0.12mm Fine @Wanhao D12-300.json b/resources/profiles/Wanhao/process/0.12mm Fine @Wanhao D12-300.json index 8c51766acd8..12cded493b8 100644 --- a/resources/profiles/Wanhao/process/0.12mm Fine @Wanhao D12-300.json +++ b/resources/profiles/Wanhao/process/0.12mm Fine @Wanhao D12-300.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Wanhao D12-400", "inherits": "fdm_process_wanhao_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qlj7Yq7lzsuAM9Yx", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Wanhao/process/0.15mm Optimal @Wanhao D12-300.json b/resources/profiles/Wanhao/process/0.15mm Optimal @Wanhao D12-300.json index c695b77d0f7..f664617cfc8 100644 --- a/resources/profiles/Wanhao/process/0.15mm Optimal @Wanhao D12-300.json +++ b/resources/profiles/Wanhao/process/0.15mm Optimal @Wanhao D12-300.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Wanhao D12-300", "inherits": "fdm_process_wanhao_common", "from": "system", - "setting_id": "GP004", + "setting_id": "rS2XLUYO7QV9sLuZ", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Wanhao/process/0.20mm Standard @Wanhao D12-300.json b/resources/profiles/Wanhao/process/0.20mm Standard @Wanhao D12-300.json index 1dffa0802b5..11965aac846 100644 --- a/resources/profiles/Wanhao/process/0.20mm Standard @Wanhao D12-300.json +++ b/resources/profiles/Wanhao/process/0.20mm Standard @Wanhao D12-300.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao D12-300", "inherits": "fdm_process_wanhao_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VTYPPf9wyj43tPrU", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Wanhao/process/0.24mm Draft @Wanhao D12-300.json b/resources/profiles/Wanhao/process/0.24mm Draft @Wanhao D12-300.json index 2e6987cf492..a574e0851bc 100644 --- a/resources/profiles/Wanhao/process/0.24mm Draft @Wanhao D12-300.json +++ b/resources/profiles/Wanhao/process/0.24mm Draft @Wanhao D12-300.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Wanhao D12-300", "inherits": "fdm_process_wanhao_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wJ1rmnyK4uPv168Y", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/WonderMaker.json b/resources/profiles/WonderMaker.json index 2ecb6d23236..c65bc827299 100755 --- a/resources/profiles/WonderMaker.json +++ b/resources/profiles/WonderMaker.json @@ -1,7 +1,7 @@ { "name": "WonderMaker", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "WonderMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/WonderMaker/filament/WonderMaker ABS @WonderMaker ZR Ultra S.json b/resources/profiles/WonderMaker/filament/WonderMaker ABS @WonderMaker ZR Ultra S.json index fb5895fa0d5..40d78fad997 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker ABS @WonderMaker ZR Ultra S.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker ABS @WonderMaker ZR Ultra S.json @@ -3,7 +3,7 @@ "name": "WonderMaker ABS @WonderMaker ZR Ultra S", "inherits": "WonderMaker ABS", "from": "system", - "setting_id": "GFSB01_07", + "setting_id": "uDsaIAQaCZJNxUcR", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/WonderMaker/filament/WonderMaker ABS.json b/resources/profiles/WonderMaker/filament/WonderMaker ABS.json index d6553b03824..ab6833cb04d 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker ABS.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker ABS.json @@ -3,6 +3,7 @@ "name": "WonderMaker ABS", "inherits": "fdm_filament_abs", "from": "system", + "setting_id": "cyLAXg9zBIDNkYNx", "filament_id": "GFB00", "instantiation": "true", "description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker ASA @WonderMaker ZR Ultra S.json b/resources/profiles/WonderMaker/filament/WonderMaker ASA @WonderMaker ZR Ultra S.json index b7d80bd1040..5202e4d4d36 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker ASA @WonderMaker ZR Ultra S.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker ASA @WonderMaker ZR Ultra S.json @@ -3,7 +3,7 @@ "name": "WonderMaker ASA @WonderMaker ZR Ultra S", "inherits": "WonderMaker ASA", "from": "system", - "setting_id": "GFSB01_07", + "setting_id": "UFAjAywKaIFE8fh4", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/WonderMaker/filament/WonderMaker ASA.json b/resources/profiles/WonderMaker/filament/WonderMaker ASA.json index 090fdafb98a..b73a974ea91 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker ASA.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker ASA.json @@ -3,6 +3,7 @@ "name": "WonderMaker ASA", "inherits": "fdm_filament_asa", "from": "system", + "setting_id": "Wu70ukKHBqIa4TDv", "filament_id": "GFB01", "instantiation": "true", "description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PET-CF @WonderMaker ZR Ultra S.json b/resources/profiles/WonderMaker/filament/WonderMaker PET-CF @WonderMaker ZR Ultra S.json index c898293a7bf..9fb85268912 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PET-CF @WonderMaker ZR Ultra S.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PET-CF @WonderMaker ZR Ultra S.json @@ -3,7 +3,7 @@ "name": "WonderMaker PET-CF @WonderMaker ZR Ultra S", "inherits": "WonderMaker PET-CF", "from": "system", - "setting_id": "GFST01_00", + "setting_id": "StweV7VENDenJpre", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PET-CF.json b/resources/profiles/WonderMaker/filament/WonderMaker PET-CF.json index f74de5e9627..79d0a85a774 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PET-CF.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PET-CF.json @@ -3,6 +3,7 @@ "name": "WonderMaker PET-CF", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "Rnm03E1ifi5A2vrQ", "filament_id": "GFT01", "instantiation": "true", "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PETG Basic.json b/resources/profiles/WonderMaker/filament/WonderMaker PETG Basic.json index 3e534406f9e..434c0f9fcae 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PETG Basic.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PETG Basic.json @@ -3,6 +3,7 @@ "name": "WonderMaker PETG Basic", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "ZtPZlMNIqq3Gaavc", "filament_id": "GFG00", "instantiation": "true", "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Basic.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Basic.json index 81bd0fd51d6..7440eae0eed 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Basic.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Basic.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Basic", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "HRFI81hKAaT1LwjF", "filament_id": "GFA00", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Marble.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Marble.json index 84cff808283..7c641e69b02 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Marble.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Marble.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Marble", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "eudiDwK2EVLlGnha", "filament_id": "GFA07", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Matte.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Matte.json index 578ef8787db..a935c961573 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Matte.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Matte.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Matte", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "YufHNkKBRBBxucHO", "filament_id": "GFA01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Metal.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Metal.json index 6e5fc98b6ec..222fcbce1a5 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Metal.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Metal.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Metal", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "4B7gD5YwPbUCvLAh", "filament_id": "GFA02", "instantiation": "true", "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Silk.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Silk.json index a92d7d4127d..6738e2802ee 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Silk.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Silk.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Silk", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "8kSWEkCpitdwX11c", "filament_id": "GFA05", "instantiation": "true", "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Wood.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Wood.json index ec69495ce91..d4b51f4b0dd 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Wood.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Wood.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Wood", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "KxnOjANQuyO10zzH", "filament_id": "GFA16", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PVA.json b/resources/profiles/WonderMaker/filament/WonderMaker PVA.json index ab2ff4fdea0..65f504da957 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PVA.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PVA.json @@ -3,6 +3,7 @@ "name": "WonderMaker PVA", "inherits": "fdm_filament_pva", "from": "system", + "setting_id": "PRdEoagTzltjzJCQ", "filament_id": "GFS04", "instantiation": "true", "description": "This is a water-soluble support filament, and usually it is only for the support structure and not for the model body. Printing this filament is of many requirements, and to get better printing quality, please refer to this wiki: PVA Printing Guide.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker TPU 95A.json b/resources/profiles/WonderMaker/filament/WonderMaker TPU 95A.json index 0e5012f7400..3b617e15ab4 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker TPU 95A.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker TPU 95A.json @@ -3,6 +3,7 @@ "name": "WonderMaker TPU 95A", "inherits": "fdm_filament_tpu", "from": "system", + "setting_id": "eUyRprcb22IdYNv3", "filament_id": "GFU01", "instantiation": "true", "description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.2 nozzle.json index 1317f1a41fd..a4f1ea74e05 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR 0.2 nozzle", "inherits": "WonderMaker ZR 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "G1FnwNbE7wHLzxxb", "instantiation": "true", "printer_model": "WonderMaker ZR", "default_print_profile": "0.10mm Standard @WonderMaker ZR 0.2 nozzle", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.4 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.4 nozzle.json index d49c9de2d4e..f15e38bc14f 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.4 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "c1cVpgV1r1CphIJV", "instantiation": "true", "printer_model": "WonderMaker ZR", "default_print_profile": "0.20mm Standard @WonderMaker ZR", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.6 nozzle.json index c6f98d7a158..1a44e35d9f3 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR 0.6 nozzle", "inherits": "WonderMaker ZR 0.4 nozzle", "from": "system", - "setting_id": "GM005", + "setting_id": "oad2AQ17RRqjtgrk", "instantiation": "true", "printer_model": "WonderMaker ZR", "default_print_profile": "0.30mm Standard @WonderMaker ZR 0.6 nozzle", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.8 nozzle.json index 0db573afca8..27db3da3793 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR 0.8 nozzle", "inherits": "WonderMaker ZR 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "RS3RvOaBqXvjPRl9", "instantiation": "true", "printer_model": "WonderMaker ZR", "default_print_profile": "0.40mm Standard @WonderMaker ZR 0.8 nozzle", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.2 nozzle.json index 4a22af38b08..927ab9d44bd 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra 0.2 nozzle", "inherits": "WonderMaker ZR Ultra 0.4 nozzle", "from": "system", - "setting_id": "GM010", + "setting_id": "AX42zNj8YsJ94ilv", "instantiation": "true", "nozzle_diameter": [ "0.2", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.4 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.4 nozzle.json index 9eb5868be61..0a301080526 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.4 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM013", + "setting_id": "xJBdCljSZVDINXnP", "instantiation": "true", "printer_model": "WonderMaker ZR Ultra", "default_print_profile": "0.20mm Standard @WonderMaker ZR Ultra", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.6 nozzle.json index 9b8539b457c..fc851ff348e 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra 0.6 nozzle", "inherits": "WonderMaker ZR Ultra 0.4 nozzle", "from": "system", - "setting_id": "GM011", + "setting_id": "6OWxZLFn3RD54QfX", "instantiation": "true", "nozzle_diameter": [ "0.6", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.8 nozzle.json index ef3cc9cc3d3..eefaab34310 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra 0.8 nozzle", "inherits": "WonderMaker ZR Ultra 0.4 nozzle", "from": "system", - "setting_id": "GM012", + "setting_id": "SY9snlsMkurhEYWP", "instantiation": "true", "nozzle_diameter": [ "0.8", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.2 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.2 nozzle.json index 5140de1a3c2..26ad5e21d71 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra S 0.2 nozzle", "inherits": "WonderMaker ZR Ultra S 0.4 nozzle", "from": "system", - "setting_id": "GM015", + "setting_id": "ZNAx3f7tX3DatiK1", "instantiation": "true", "nozzle_diameter": [ "0.2", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.4 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.4 nozzle.json index 0243d9a2a6d..df1dbbb9a8e 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.4 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra S 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM014", + "setting_id": "8xoZ6vYv9ws0J97u", "instantiation": "true", "printer_model": "WonderMaker ZR Ultra S", "default_print_profile": "0.20mm Standard @WonderMaker ZR Ultra", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.6 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.6 nozzle.json index d44ff34d685..9f2bd6f0692 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra S 0.6 nozzle", "inherits": "WonderMaker ZR Ultra S 0.4 nozzle", "from": "system", - "setting_id": "GM016", + "setting_id": "xuJnOPTmSW1BMo6p", "instantiation": "true", "printer_model": "WonderMaker ZR Ultra S", "default_print_profile": "0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.8 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.8 nozzle.json index 9d04d4e3d42..2137855fe0d 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra S 0.8 nozzle", "inherits": "WonderMaker ZR Ultra S 0.4 nozzle", "from": "system", - "setting_id": "GM017", + "setting_id": "0BPLKMspArilfkGT", "instantiation": "true", "printer_model": "WonderMaker ZR Ultra S", "default_print_profile": "0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle", diff --git a/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR 0.2 nozzle.json index e98bf38ff1c..0b113f9f013 100755 --- a/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Fine @WonderMaker ZR 0.2 nozzle", "inherits": "fdm_process_wm_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "u12WUH0jDnm5Rn3x", "instantiation": "true", "description": "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer height, and results in minimal layer lines and higher printing quality, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR Ultra 0.2 nozzle.json index fe24ad5c750..27b1b48eca0 100755 --- a/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Fine @WonderMaker ZR Ultra 0.2 nozzle", "inherits": "fdm_process_wm_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP063", + "setting_id": "lq88Zo3JjwDLKgiq", "instantiation": "true", "description": "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer height, and results in minimal layer lines and higher printing quality, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR Ultra.json index bfd9c86a221..7b393336dfd 100755 --- a/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.08", "from": "system", - "setting_id": "GP018", + "setting_id": "S9bZmEeAYQKyQW6v", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR.json index f73c709e14e..1f4a7fed3b8 100755 --- a/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @WonderMaker ZR", "inherits": "fdm_process_wm_0.08", "from": "system", - "setting_id": "GP001", + "setting_id": "MDzBBVuT9evcSDUx", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR 0.2 nozzle.json index 0706c2a6401..4713c9c6ef0 100755 --- a/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal @WonderMaker ZR 0.2 nozzle", "inherits": "fdm_process_wm_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "sRvGwME6QEtqFE4R", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height, and results in almost invisible layer lines and higher printing quality, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR Ultra 0.2 nozzle.json index fde240d0c06..422b17646b4 100755 --- a/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal @WonderMaker ZR Ultra 0.2 nozzle", "inherits": "fdm_process_wm_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP064", + "setting_id": "stHCWih7tHvZJdIz", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height, and results in almost invisible layer lines and higher printing quality, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR 0.2 nozzle.json index 517a29b98e9..1c298bcab02 100755 --- a/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @WonderMaker ZR 0.2 nozzle", "inherits": "fdm_process_wm_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "9fkqViiWCOVJQB6M", "instantiation": "true", "description": "It has a small layer height, and results in almost negligible layer lines and high printing quality. It is suitable for most general printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR Ultra 0.2 nozzle.json index 6b9b30c2142..eeddb0e9f8a 100755 --- a/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @WonderMaker ZR Ultra 0.2 nozzle", "inherits": "fdm_process_wm_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP014", + "setting_id": "k1hGxsywYldN81jM", "instantiation": "true", "description": "It has a small layer height, and results in almost negligible layer lines and high printing quality. It is suitable for most general printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR 0.2 nozzle.json index 14a67bcab1d..a1275857def 100755 --- a/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft @WonderMaker ZR 0.2 nozzle", "inherits": "fdm_process_wm_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "kI8JZdjGYo0TzG37", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a slightly bigger layer height, and results in almost negligible layer lines, and slightly shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR Ultra 0.2 nozzle.json index a586bd6e028..f9a1aedca2b 100755 --- a/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft @WonderMaker ZR Ultra 0.2 nozzle", "inherits": "fdm_process_wm_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP065", + "setting_id": "8Ubs9u8uMI3Rsg7p", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a slightly bigger layer height, and results in almost negligible layer lines, and slightly shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR Ultra.json index 0e97315eb9c..f270e60327a 100755 --- a/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.12", "from": "system", - "setting_id": "GP019", + "setting_id": "bSzDzVfhYbOfsvrm", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR.json index c470dd7affe..1e0fd84bfd0 100755 --- a/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @WonderMaker ZR", "inherits": "fdm_process_wm_0.12", "from": "system", - "setting_id": "GP002", + "setting_id": "RNjDYmMvSgIjaGUB", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR 0.2 nozzle.json index 8f0f4925b4b..5c24551f111 100755 --- a/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft @WonderMaker ZR 0.2 nozzle", "inherits": "fdm_process_wm_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "pc5c2rBdvGc0Qpjr", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer height, and results in slightly visible layer lines, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR Ultra 0.2 nozzle.json index 0eb57bc8572..d10132d3332 100755 --- a/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft @WonderMaker ZR Ultra 0.2 nozzle", "inherits": "fdm_process_wm_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP066", + "setting_id": "C9hqtsamnyeX5OMB", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer height, and results in slightly visible layer lines, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR Ultra.json index a4cb68000ad..49e6dee9e5c 100755 --- a/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.16", "from": "system", - "setting_id": "GP020", + "setting_id": "CJRH0KVoqMhAKf7b", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR.json index 514e2b8f4ac..d6837e19f28 100755 --- a/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @WonderMaker ZR", "inherits": "fdm_process_wm_0.16", "from": "system", - "setting_id": "GP003", + "setting_id": "Gq8p7VLck61epJRQ", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR 0.6 nozzle.json index 6541c66decb..5ac88d7e8cd 100755 --- a/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @WonderMaker ZR 0.6 nozzle", "inherits": "fdm_process_wm_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "YrxhXDkyXhyTQQ0H", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR Ultra 0.6 nozzle.json index 7a0e7bec8d1..b3c7bc33daa 100755 --- a/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @WonderMaker ZR Ultra 0.6 nozzle", "inherits": "fdm_process_wm_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP072", + "setting_id": "0y9QaQRP3vLt7QYx", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR Ultra.json index 698640dbd33..88320865b2a 100755 --- a/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.20", "from": "system", - "setting_id": "GP015", + "setting_id": "5UnvGUSJUfxiX3Oh", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR.json index 6a4b91a30b2..da460844625 100755 --- a/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @WonderMaker ZR", "inherits": "fdm_process_wm_0.20", "from": "system", - "setting_id": "GP004", + "setting_id": "nalI7H3j0Qhs6qig", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR Ultra.json index ca3de49b4d9..0c33e1a7f18 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.24", "from": "system", - "setting_id": "GP022", + "setting_id": "hSxtB6qUwhhTkAtv", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR.json index 2442e90e915..f0b4ba5369f 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @WonderMaker ZR", "inherits": "fdm_process_wm_0.24", "from": "system", - "setting_id": "GP005", + "setting_id": "ptoXhTDH4PGy8H4w", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR 0.8 nozzle.json index 4b667a2491b..0808b7056e9 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine @WonderMaker ZR 0.8 nozzle", "inherits": "fdm_process_wm_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "fPc2zm5gAaMeZ6jN", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR Ultra 0.8 nozzle.json index af0d99d7160..433cc33740a 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine @WonderMaker ZR Ultra 0.8 nozzle", "inherits": "fdm_process_wm_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP068", + "setting_id": "6wVSTX0lBUuYzTrD", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR 0.6 nozzle.json index 65200360f39..ec5029b95ab 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @WonderMaker ZR 0.6 nozzle", "inherits": "fdm_process_wm_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "qshwcVTD0Jn7qAD1", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR Ultra 0.6 nozzle.json index 99d4ba0636f..e31b67eb367 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @WonderMaker ZR Ultra 0.6 nozzle", "inherits": "fdm_process_wm_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP069", + "setting_id": "9oDBk1n6TuwyrHFJ", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR Ultra.json index 5efb81148c9..52b01c70c4b 100755 --- a/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.28", "from": "system", - "setting_id": "GP023", + "setting_id": "sGfFFynEl5ot8fzq", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR.json index 17b5c663b47..3c61b187bf8 100755 --- a/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @WonderMaker ZR", "inherits": "fdm_process_wm_0.28", "from": "system", - "setting_id": "GP006", + "setting_id": "cns9NtEbZzQRnUOq", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR 0.6 nozzle.json index 05419e7b8c0..3818aa0c7f4 100755 --- a/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @WonderMaker ZR 0.6 nozzle", "inherits": "fdm_process_wm_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "YGC1wctF6IMnms22", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle.json index 02420b1cce0..35257448eec 100755 --- a/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle", "inherits": "fdm_process_wm_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP016", + "setting_id": "VjbvTVLXEiXjDCKe", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR 0.8 nozzle.json index fe0b66086f6..01040bc97d8 100755 --- a/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @WonderMaker ZR 0.8 nozzle", "inherits": "fdm_process_wm_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "2gXa2N36jKPE7Z1n", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR Ultra 0.8 nozzle.json index 6b985c7ca61..9387e0bd31d 100755 --- a/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @WonderMaker ZR Ultra 0.8 nozzle", "inherits": "fdm_process_wm_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP075", + "setting_id": "10tgvfIXdID8MQZG", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR 0.6 nozzle.json index 0be0445e2a5..32e8d231a00 100755 --- a/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @WonderMaker ZR 0.6 nozzle", "inherits": "fdm_process_wm_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "wHkpL94vCq5iAtub", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR Ultra 0.6 nozzle.json index 8b654096555..aec25c67cda 100755 --- a/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @WonderMaker ZR Ultra 0.6 nozzle", "inherits": "fdm_process_wm_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP070", + "setting_id": "lrsmSmfq3ytqV38a", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR 0.8 nozzle.json index 0c1a7aed742..9e040a39f7b 100755 --- a/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @WonderMaker ZR 0.8 nozzle", "inherits": "fdm_process_wm_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "fFeU1UUieMxYsNI3", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle.json index d3de87a8f79..1e5fbadf5a4 100755 --- a/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle", "inherits": "fdm_process_wm_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP017", + "setting_id": "aaR3LNHYDQLU1bbk", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR 0.6 nozzle.json index f441d8aa30d..23b41cff0f0 100755 --- a/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @WonderMaker ZR 0.6 nozzle", "inherits": "fdm_process_wm_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "NDPYJ3cBbpVzXUHd", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR Ultra 0.6 nozzle.json index 3408f112490..0499dd48ff5 100755 --- a/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @WonderMaker ZR Ultra 0.6 nozzle", "inherits": "fdm_process_wm_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP073", + "setting_id": "b4zjQB9iBj3QS7hk", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR 0.8 nozzle.json index ae22cde1982..b2d1696c4f3 100755 --- a/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @WonderMaker ZR 0.8 nozzle", "inherits": "fdm_process_wm_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "h56TM3cdab29ggGJ", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR Ultra 0.8 nozzle.json index 7d2dc149a8a..526dd3db7d3 100755 --- a/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @WonderMaker ZR Ultra 0.8 nozzle", "inherits": "fdm_process_wm_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP074", + "setting_id": "lBfQjmLtGNXxUxOb", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR 0.8 nozzle.json index 261c1709276..399b5834295 100755 --- a/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft @WonderMaker ZR 0.8 nozzle", "inherits": "fdm_process_wm_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "ZwvDNVZGXWq0LjCE", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger layer height, and results in extremely apparent layer lines and much lower printing quality, but much shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR Ultra 0.8 nozzle.json index 542fbe48779..4708bbfed94 100755 --- a/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft @WonderMaker ZR Ultra 0.8 nozzle", "inherits": "fdm_process_wm_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP071", + "setting_id": "myIHBiZX88X6p44O", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger layer height, and results in extremely apparent layer lines and much lower printing quality, but much shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt.json b/resources/profiles/Z-Bolt.json index 0c9d52be1fc..8e3d3a0cd56 100644 --- a/resources/profiles/Z-Bolt.json +++ b/resources/profiles/Z-Bolt.json @@ -1,7 +1,7 @@ { "name": "Z-Bolt", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Z-Bolt configurations", "machine_model_list": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.4 nozzle.json index b664f07ab24..5f505d80da4 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS @Z-Bolt Base", "renamed_from": "Z-Bolt ABS;Generic ABS @Z-Bolt;Z-Bolt ABS @0.4 nozzle", "from": "system", - "setting_id": "GFSL204", + "setting_id": "p97bQCnVyGgwMn2y", "filament_id": "GFL204", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.6 nozzle.json index 6c4ee60de00..641fff9a6bd 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS @Z-Bolt Base", "renamed_from": "Z-Bolt ABS @0.6 nozzle", "from": "system", - "setting_id": "GFSL206", + "setting_id": "BQdgCL8lvVW7I8Dw", "filament_id": "GFL206", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.8 nozzle.json index 586c5200600..1b55d4460b6 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS @Z-Bolt Base", "renamed_from": "Z-Bolt ABS @0.8 nozzle", "from": "system", - "setting_id": "GFSL208", + "setting_id": "Xn2L7IBp26Bb6G2K", "filament_id": "GFL208", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt Base.json b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt Base.json index 6b2c8e89f98..bdef07fbb7c 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt Base.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt Base.json @@ -4,7 +4,6 @@ "inherits": "fdm_filament_abs", "renamed_from": "Z-Bolt ABS;Generic ABS @Z-Bolt", "from": "system", - "setting_id": "GFSL200", "filament_id": "GFL200", "instantiation": "false", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.4 nozzle.json index bf3019b67fe..a933deaf74c 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS HT @Z-Bolt Base", "renamed_from": "Z-Bolt ABS HT;Generic ABS HT @Z-Bolt;Z-Bolt ABS HT @0.4 nozzle", "from": "system", - "setting_id": "GFSL504", + "setting_id": "TDGj84iuRAL9R1d4", "filament_id": "GFL504", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.6 nozzle.json index 588e4b37c4d..701a2e6b7f3 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS HT @Z-Bolt Base", "renamed_from": "Z-Bolt ABS HT @0.6 nozzle", "from": "system", - "setting_id": "GFSL506", + "setting_id": "2AKxm2VhVlL2vMM1", "filament_id": "GFL506", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.8 nozzle.json index 94bd6ae8bb3..6c73a3d99ff 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS HT @Z-Bolt Base", "renamed_from": "Z-Bolt ABS HT @0.8 nozzle", "from": "system", - "setting_id": "GFSL508", + "setting_id": "ztusMudd96Ns3Ip0", "filament_id": "GFL508", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt Base.json b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt Base.json index 677046a909b..431d4dc7c2a 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt Base.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt Base.json @@ -4,7 +4,6 @@ "inherits": "Generic ABS @Z-Bolt Base", "renamed_from": "Z-Bolt ABS HT;Generic ABS HT @Z-Bolt", "from": "system", - "setting_id": "GFSL500", "filament_id": "GFL500", "instantiation": "false", "description": "Use this filament profile to print big ABS models with chamber heating", diff --git a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.4 nozzle.json index 898a727533c..e9b01c547c6 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PA @Z-Bolt Base", "renamed_from": "Z-Bolt PA;Generic PA @Z-Bolt;Z-Bolt PA @0.4 nozzle", "from": "system", - "setting_id": "GFSL404", + "setting_id": "zuvJBWxHOiPMyExQ", "filament_id": "GFL404", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.6 nozzle.json index 84da8ad4043..d74fcf8470b 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PA @Z-Bolt Base", "renamed_from": "Z-Bolt PA @0.6 nozzle", "from": "system", - "setting_id": "GFSL406", + "setting_id": "MB0n4BeDFEI25yTe", "filament_id": "GFL406", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.8 nozzle.json index da2b1d8da8b..42d675d826b 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PA @Z-Bolt Base", "renamed_from": "Z-Bolt PA @0.8 nozzle", "from": "system", - "setting_id": "GFSL408", + "setting_id": "WZc4C1f6cPG8HZR3", "filament_id": "GFL408", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt Base.json b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt Base.json index 04a78f56a6d..73459bf3268 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt Base.json +++ b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt Base.json @@ -4,7 +4,6 @@ "inherits": "fdm_filament_pa", "renamed_from": "Z-Bolt PA;Generic PA @Z-Bolt", "from": "system", - "setting_id": "GFSL400", "filament_id": "GFL400", "instantiation": "false", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.4 nozzle.json index 8577825333d..476ece5d3b1 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PETG @Z-Bolt Base", "renamed_from": "Z-Bolt PETG;Generic PETG @Z-Bolt;Z-Bolt PETG @0.4 nozzle", "from": "system", - "setting_id": "GFSL304", + "setting_id": "LWwbNXs8bf1iGELi", "filament_id": "GFL304", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.6 nozzle.json index 3f46a7b70e9..8bd7ff1efac 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PETG @Z-Bolt Base", "renamed_from": "Z-Bolt PETG @0.6 nozzle", "from": "system", - "setting_id": "GFSL306", + "setting_id": "w4HVBbunzssG9j3s", "filament_id": "GFL306", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.8 nozzle.json index 9e2bd0a7f56..3bce1def137 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PETG @Z-Bolt Base", "renamed_from": "Z-Bolt PETG @0.8 nozzle", "from": "system", - "setting_id": "GFSL308", + "setting_id": "TnLZ0vOVjIjng3u0", "filament_id": "GFL308", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt Base.json b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt Base.json index a2b16dd28a1..8e64cc62003 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt Base.json +++ b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt Base.json @@ -4,7 +4,6 @@ "inherits": "fdm_filament_pet", "renamed_from": "Z-Bolt PETG;Generic PETG @Z-Bolt", "from": "system", - "setting_id": "GFSL300", "filament_id": "GFL300", "instantiation": "false", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.4 nozzle.json index e2e0193b4f8..943d57d6c1a 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PLA @Z-Bolt Base", "renamed_from": "Z-Bolt PLA;Generic PLA @Z-Bolt;Z-Bolt PLA @0.4 nozzle", "from": "system", - "setting_id": "GFSL100", + "setting_id": "0MfamDPH1L6sMRff", "filament_id": "GFL100", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.6 nozzle.json index 659cc8dfdba..a87f1451293 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PLA @Z-Bolt Base", "renamed_from": "Z-Bolt PLA @0.6 nozzle", "from": "system", - "setting_id": "GFSL106", + "setting_id": "tdq9Ye9GLpZXlak6", "filament_id": "GFL106", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.8 nozzle.json index a444c45a3d3..283951b1a2a 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PLA @Z-Bolt Base", "renamed_from": "Z-Bolt PLA @0.8 nozzle", "from": "system", - "setting_id": "GFSL108", + "setting_id": "GKtc9mJusUZJD6kx", "filament_id": "GFL108", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt Base.json b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt Base.json index 28763f236e4..4b946c44cdc 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt Base.json +++ b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt Base.json @@ -4,7 +4,6 @@ "inherits": "fdm_filament_pla", "renamed_from": "Z-Bolt PLA;Generic PLA @Z-Bolt", "from": "system", - "setting_id": "GFSL100", "filament_id": "GFL100", "instantiation": "false", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.4 nozzle.json index 70fed7cb579..1ac60a5d78c 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 0.4 nozzle", "inherits": "fdm_zbolt_common", "from": "system", - "setting_id": "GM030", + "setting_id": "teptDuAWtxJygEmK", "instantiation": "true", "printer_settings_id": "Z-Bolt", "printer_structure": "corexy", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.6 nozzle.json index c08a1d571d4..ec0f7006b1f 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 0.6 nozzle", "inherits": "Z-Bolt S1000 0.4 nozzle", "from": "system", - "setting_id": "GM031", + "setting_id": "24PaKKVYhLmrDWHU", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.8 nozzle.json index 2bf984384b9..effb2a2e231 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 0.8 nozzle", "inherits": "Z-Bolt S1000 0.4 nozzle", "from": "system", - "setting_id": "GM032", + "setting_id": "rV9bipfXnmsrhOLP", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.4 nozzle.json index 7c989b2b8f4..da04d25c6ce 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 Dual 0.4 nozzle", "inherits": "Z-Bolt S1000 0.4 nozzle", "from": "system", - "setting_id": "GM033", + "setting_id": "t3buunOXSlncNI1F", "instantiation": "true", "printer_settings_id": "Z-Bolt", "manual_filament_change": "0", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.6 nozzle.json index d238ff4a74b..309b3292d8e 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 Dual 0.6 nozzle", "inherits": "Z-Bolt S1000 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM034", + "setting_id": "RUhTCO93peC0F9qB", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.8 nozzle.json index cdb92d7d382..83f7fa507a6 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 Dual 0.8 nozzle", "inherits": "Z-Bolt S1000 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM035", + "setting_id": "9OzS2xKymzssMiIc", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.4 nozzle.json index c5e00dd1a7e..e39d6bd5308 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 0.4 nozzle", "inherits": "fdm_zbolt_common", "from": "system", - "setting_id": "GM001", + "setting_id": "8Bi7z6ZxVlWnf4Va", "instantiation": "true", "printer_settings_id": "Z-Bolt", "printer_structure": "corexy", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.6 nozzle.json index 13a87042e95..6410f96b645 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 0.6 nozzle", "inherits": "Z-Bolt S300 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "bv3xhNCXPQEch67E", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.8 nozzle.json index 0debe4be4b9..11cd86fe3b5 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 0.8 nozzle", "inherits": "Z-Bolt S300 0.4 nozzle", "from": "system", - "setting_id": "GM003", + "setting_id": "taVWWULjpGHAu2ET", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.4 nozzle.json index ff660e57fe2..c461088460c 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 Dual 0.4 nozzle", "inherits": "Z-Bolt S300 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "F6Mu65zXaazaah92", "instantiation": "true", "printer_settings_id": "Z-Bolt", "manual_filament_change": "0", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.6 nozzle.json index 1237a4e4512..8e8cc70b43b 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 Dual 0.6 nozzle", "inherits": "Z-Bolt S300 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM005", + "setting_id": "SK1eQRjXAv4jHCBe", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.8 nozzle.json index 03b2353be40..506b51678be 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 Dual 0.8 nozzle", "inherits": "Z-Bolt S300 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM006", + "setting_id": "T9HkAOHMH4od12Qm", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.4 nozzle.json index b1d528acdaf..b1e7c814741 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 0.4 nozzle", "inherits": "fdm_zbolt_common", "from": "system", - "setting_id": "GM011", + "setting_id": "SXJc7HlZGXJ02MOQ", "instantiation": "true", "printer_settings_id": "Z-Bolt", "printer_structure": "corexy", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.6 nozzle.json index 271f90580da..908459ccf9d 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 0.6 nozzle", "inherits": "Z-Bolt S400 0.4 nozzle", "from": "system", - "setting_id": "GM012", + "setting_id": "zVeQRpjQjZCSBVgz", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.8 nozzle.json index b03c87eab4b..fe81c2f7450 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 0.8 nozzle", "inherits": "Z-Bolt S400 0.4 nozzle", "from": "system", - "setting_id": "GM013", + "setting_id": "k66cWXAmc3hLsvn5", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.4 nozzle.json index c05732fddad..d42c0e90f62 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 Dual 0.4 nozzle", "inherits": "Z-Bolt S400 0.4 nozzle", "from": "system", - "setting_id": "GM014", + "setting_id": "aCsQtmoIIBiyxrh4", "instantiation": "true", "printer_settings_id": "Z-Bolt", "manual_filament_change": "0", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.6 nozzle.json index aed97c16098..6664864f650 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 Dual 0.6 nozzle", "inherits": "Z-Bolt S400 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM015", + "setting_id": "hSnOgkPOy9NtKJK2", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.8 nozzle.json index 58b4f4efd4d..005c177fcfe 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 Dual 0.8 nozzle", "inherits": "Z-Bolt S400 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM016", + "setting_id": "mHCjknijcVhtMmIB", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.4 nozzle.json index 27e80104032..15d56b4bff4 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 0.4 nozzle", "inherits": "fdm_zbolt_common", "from": "system", - "setting_id": "GM021", + "setting_id": "nEeGm6lrMgJ9s7QX", "instantiation": "true", "printer_settings_id": "Z-Bolt", "printer_structure": "corexy", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.6 nozzle.json index 632484744bc..8c0ce9fb6ad 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 0.6 nozzle", "inherits": "Z-Bolt S600 0.4 nozzle", "from": "system", - "setting_id": "GM022", + "setting_id": "r5DRM0XlqXNWBJWF", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.8 nozzle.json index d0f2e669cb1..8e8643c7011 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 0.8 nozzle", "inherits": "Z-Bolt S600 0.4 nozzle", "from": "system", - "setting_id": "GM023", + "setting_id": "L4FzsKQqiLfRqodo", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.4 nozzle.json index b3a89d22ced..5c2e4175347 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 Dual 0.4 nozzle", "inherits": "Z-Bolt S600 0.4 nozzle", "from": "system", - "setting_id": "GM024", + "setting_id": "T3y6YCpaoHLujWU7", "instantiation": "true", "printer_settings_id": "Z-Bolt", "manual_filament_change": "0", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.6 nozzle.json index 38fee1f4085..c15bf491f1d 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 Dual 0.6 nozzle", "inherits": "Z-Bolt S600 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM025", + "setting_id": "UznPK75y7HFfNtvQ", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.8 nozzle.json index 555f4be064e..f51e1af0d84 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 Dual 0.8 nozzle", "inherits": "Z-Bolt S600 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM026", + "setting_id": "XAnYOqbzFATWmL1N", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.4 nozzle.json index 4738add8261..1e204e9f5cd 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S800 Dual 0.4 nozzle", "inherits": "fdm_zbolt_common", "from": "system", - "setting_id": "GM027", + "setting_id": "D7vDL0C4LzflAtPs", "instantiation": "true", "printer_settings_id": "Z-Bolt", "printer_structure": "corexy", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.6 nozzle.json index 43bde623c78..5c4fc794174 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S800 Dual 0.6 nozzle", "inherits": "Z-Bolt S800 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM028", + "setting_id": "OQLW5tKVfAKnILs9", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.8 nozzle.json index c910a92bb62..83fc5abc56f 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S800 Dual 0.8 nozzle", "inherits": "Z-Bolt S800 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM029", + "setting_id": "pCByNIozAYMfCW3T", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt 0.4 nozzle.json index cc3d3fd7d2f..52e9dae00d8 100644 --- a/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.08mm Extra Fine @Z-Bolt S300;0.08mm Extra Fine @Z-Bolt S400", "inherits": "fdm_process_zbolt_0.08", "from": "system", - "setting_id": "GP001", + "setting_id": "aQbSyiYUXanu2sjX", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt 0.4 nozzle.json index 6449a944d3f..c71a6ae5ef0 100644 --- a/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.08mm High Quality @Z-Bolt S300;0.08mm High Quality @Z-Bolt S400", "inherits": "fdm_process_zbolt_0.08", "from": "system", - "setting_id": "GP003", + "setting_id": "MP6HTVlWkZ8xa9QD", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt 0.4 nozzle.json index e371b199720..74108d7eb69 100644 --- a/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.12mm Fine @Z-Bolt S300;0.12mm Fine @Z-Bolt S400;0.12mm Fine @Z-Bolt S600;0.12mm Fine @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.12", "from": "system", - "setting_id": "GP005", + "setting_id": "FXUuYzz6QKb2B8NO", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt 0.4 nozzle.json index 40501e6872a..b7faeba25f3 100644 --- a/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.12mm High Quality @Z-Bolt S300;0.12mm High Quality @Z-Bolt S400;0.12mm High Quality @Z-Bolt S600;0.12mm High Quality @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.12", "from": "system", - "setting_id": "GP006", + "setting_id": "qsrMniHC8vspHFyM", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.4 nozzle.json index 8a40e3b9f61..06b6c23e344 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.16mm High Quality @Z-Bolt S300;0.16mm High Quality @Z-Bolt S400;0.16mm High Quality @Z-Bolt S600;0.16mm High Quality @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.16", "from": "system", - "setting_id": "GP008", + "setting_id": "c3EwAGKFJchwWGzt", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.6 nozzle.json index e6540c8d47e..e826d762af8 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm High Quality @Z-Bolt 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP010H", + "setting_id": "AAJa8VuKqBMn2qlt", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "outer_wall_speed": "40", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt 0.4 nozzle.json index a1ef4018b8f..ccd2dbcd33e 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.16mm Optimal @Z-Bolt S300;0.16mm Optimal @Z-Bolt S400;0.16mm Optimal @Z-Bolt S600;0.16mm Optimal @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.16", "from": "system", - "setting_id": "GP009", + "setting_id": "TrwuaRthXrp9Aqc2", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt 0.6 nozzle.json index a3aae00ffdd..62e3e30a66f 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.16mm Standard @Z-Bolt S300 0.6 nozzle;0.16mm Standard @Z-Bolt S400 0.6 nozzle;0.16mm Standard @Z-Bolt S600 0.6 nozzle;0.16mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "0SCq38hvD9Qc2qEM", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json index 4d6f6a2df18..a2651b61b8a 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "2RxXv1nZQz9czrdj", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json index 15207c34b5f..7dceacb4d06 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP110", + "setting_id": "2OURPHmPHYOYKSXV", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json index 8f290efc52c..db42d946e5f 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP210", + "setting_id": "SZPyQZpFP1OoKwjU", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json index ba6c4613f57..053a3b9593d 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP310", + "setting_id": "YRK4yyqj2mKB3Yas", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm High Quality @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm High Quality @Z-Bolt 0.6 nozzle.json index a4b1496468a..d926fede967 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm High Quality @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm High Quality @Z-Bolt 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm High Quality @Z-Bolt 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP024H", + "setting_id": "6kKt7MQNZiERohDf", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.4 nozzle.json index 78c0e1c54ec..e10958dbfe2 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.20mm Standard @Z-Bolt S300;0.20mm Standard @Z-Bolt S400;0.20mm Standard @Z-Bolt S600;0.20mm Standard @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.20", "from": "system", - "setting_id": "GP011", + "setting_id": "jSA9QDV6RfL4eb5X", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.6 nozzle.json index af2348534b5..92e55765ebb 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.20mm Standard @Z-Bolt S300 0.6 nozzle;0.20mm Standard @Z-Bolt S400 0.6 nozzle;0.20mm Standard @Z-Bolt S600 0.6 nozzle;0.20mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP024", + "setting_id": "NDWJp1Shr9glm0Pz", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json index e6c2224c103..97f40201d24 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP024", + "setting_id": "ESOOiuQrreUN5wjl", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json index ce59d29270c..6366647a6fe 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP124", + "setting_id": "ceEDWf14ChMEAKeL", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json index 15e7d6cd320..7b31b4afbbf 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP224", + "setting_id": "xuDGD4zohFJ5W0fQ", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json index ac6117273c8..27808d012c0 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP324", + "setting_id": "eNTV0x3etSjM8VC8", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt 0.4 nozzle.json index 3dc99523615..177a7d1f877 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.20mm Strength @Z-Bolt S300;0.20mm Strength @Z-Bolt S400;0.20mm Strength @Z-Bolt S600;0.20mm Strength @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.20", "from": "system", - "setting_id": "GP012", + "setting_id": "42rvcJiQF05SDsGM", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "outer_wall_speed": "60", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt 0.4 nozzle.json index be9194ab11d..358ae59e06e 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.24mm Draft @Z-Bolt S300;0.24mm Draft @Z-Bolt S400;0.24mm Draft @Z-Bolt S600;0.24mm Draft @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.24", "from": "system", - "setting_id": "GP013", + "setting_id": "L1bdHzIO1OKLDT3Q", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.6 nozzle.json index 96c2e7ae09e..5ef55f74f5c 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.24mm Standard @Z-Bolt S300 0.6 nozzle;0.24mm Standard @Z-Bolt S400 0.6 nozzle;0.24mm Standard @Z-Bolt S600 0.6 nozzle;0.24mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP014", + "setting_id": "R2ymo1GdwtRhkIoT", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.8 nozzle.json index d61f160f9c9..dad18905336 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.24mm Standard @Z-Bolt S300 0.8 nozzle;0.24mm Standard @Z-Bolt S400 0.8 nozzle;0.24mm Standard @Z-Bolt S600 0.8 nozzle;0.24mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP015", + "setting_id": "AGLwvCuJJX93NNJh", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json index 26608c0ca25..fce0f0dc278 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP014", + "setting_id": "TAbgYTebJ8fJfoGv", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json index ed8590d61af..1f84b547850 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S300 0.8 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP015", + "setting_id": "aZbWDLIaBHyxpLB1", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json index 3eca2c47c10..fe57ad21496 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP114", + "setting_id": "HfdhuDWXbB1hgPST", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json index 1c75f833978..c1a1f9d3bac 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S400 0.8 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP115", + "setting_id": "d1RSgT1SCZvEW2VE", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json index a684461f4fb..e12643bd2a6 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP214", + "setting_id": "XdM0HtHqwCxHWMh8", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json index 068bec19bba..962ba3a32a5 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S600 0.8 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP215", + "setting_id": "z763KCvFxiSuIa3Q", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json index 9e6c1ce0752..8ba32b08b99 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP314", + "setting_id": "hrBhcyAFEynEpWLS", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json index 6a6d5d84041..7ff2da7c2db 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP315", + "setting_id": "MKNqN7HXWUkC0YlP", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt 0.4 nozzle.json index 84596844ce8..f442650a69f 100644 --- a/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.28mm Extra Draft @Z-Bolt S300;0.28mm Extra Draft @Z-Bolt S400;0.28mm Extra Draft @Z-Bolt S600;0.28mm Extra Draft @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.28", "from": "system", - "setting_id": "GP016", + "setting_id": "U6WOuHSZoT8XksE5", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt 0.6 nozzle.json index ee3b207eb16..006f1c4d0a6 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.30mm Standard @Z-Bolt S300 0.6 nozzle;0.30mm Standard @Z-Bolt S400 0.6 nozzle;0.30mm Standard @Z-Bolt S600 0.6 nozzle;0.30mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP017", + "setting_id": "mHxycjW2eGEiIUSO", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json index 4fa8039e60b..5bc3a498b37 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP017", + "setting_id": "6iyFuqK8Y0ioSZuP", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json index 05dfb6a3c77..6984af380f9 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP117", + "setting_id": "9M43aMN5dnqhoP87", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json index 866cf5a88fd..6df85166a4b 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP217", + "setting_id": "txwrrb1yo7nMfBMG", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json index 5db6712d526..5add162efc3 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP317", + "setting_id": "VJ5D0Y1GlaGNRVK2", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt 0.6 nozzle.json index a1192215105..8fea2817894 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.30mm Strength @Z-Bolt S300 0.6 nozzle;0.30mm Strength @Z-Bolt S400 0.6 nozzle;0.30mm Strength @Z-Bolt S600 0.6 nozzle;0.30mm Strength @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP018", + "setting_id": "bmaReFmorAZrEdWG", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json index 6625224fb32..127c42f19cd 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP018", + "setting_id": "mm1sR19x1GMV5HWd", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json index 27f6d34d8a9..d03ac505d5c 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP118", + "setting_id": "i4Hf8fQwAQBYI4KY", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json index d68c0a9691e..14dcc0f4eea 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP218", + "setting_id": "sw1E5WWkpBJ0Vv3Y", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json index 5920d1df993..9dd0eb0728b 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP318", + "setting_id": "V8BUZgHTc3aSw9Gm", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt 0.8 nozzle.json index 6e8e9e63594..7a8f7ea2e99 100644 --- a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.32mm Standard @Z-Bolt S300 0.8 nozzle;0.32mm Standard @Z-Bolt S400 0.8 nozzle;0.32mm Standard @Z-Bolt S600 0.8 nozzle;0.32mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP019", + "setting_id": "VlQaxN8Jt27ZM4Qc", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json index ad2b910c655..e639b6b277a 100644 --- a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Z-Bolt S300 0.8 nozzle", "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP019", + "setting_id": "5wBPobAWXKWdo5ig", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json index 6c02a44d220..dc7e570d653 100644 --- a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Z-Bolt S400 0.8 nozzle", "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP119", + "setting_id": "UWegs5xqs4lUGptC", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json index 9076a672fe0..e7a77f55a19 100644 --- a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Z-Bolt S600 0.8 nozzle", "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP219", + "setting_id": "IY3WH7g6iA27BZUk", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json index 0a852da3eff..7fe77089304 100644 --- a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP319", + "setting_id": "mc9deGY78RGgMaEJ", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt 0.6 nozzle.json index d3806e764d3..236979d1126 100644 --- a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.36mm Standard @Z-Bolt S300 0.6 nozzle;0.36mm Standard @Z-Bolt S400 0.6 nozzle;0.36mm Standard @Z-Bolt S600 0.6 nozzle;0.36mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP020", + "setting_id": "loQ0K8BuYnb4lhrs", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json index 023ce835ae2..32ec85d70dd 100644 --- a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP020", + "setting_id": "0g05ryRBoI9OcI7R", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json index 32d84d3803d..5f0e9269912 100644 --- a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP120", + "setting_id": "cZ7LKDgxE9BlU5hy", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json index dcea16d35bc..e58fecfbe15 100644 --- a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP220", + "setting_id": "UHHHawiR4wKDK8y9", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json index 6723440ece0..3d2af55bd0e 100644 --- a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP320", + "setting_id": "qwG5GY4TvvzC8I1n", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt 0.8 nozzle.json index f1cc3a7a1c5..b8c39f25b39 100644 --- a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.40mm Standard @Z-Bolt S300 0.8 nozzle;0.40mm Standard @Z-Bolt S400 0.8 nozzle;0.40mm Standard @Z-Bolt S600 0.8 nozzle;0.40mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP021", + "setting_id": "3enbj8N1CBmVvS22", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json index 03379d6b6ab..bacba10332c 100644 --- a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Z-Bolt S300 0.8 nozzle", "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP021", + "setting_id": "3YDW0mR0ZlosVM1L", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json index 1052ed04d36..1234ff53d86 100644 --- a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Z-Bolt S400 0.8 nozzle", "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP121", + "setting_id": "iyKInbHHk3UFFlOH", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json index ead49f1cba5..6b05db5f96b 100644 --- a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Z-Bolt S600 0.8 nozzle", "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP221", + "setting_id": "vFw2NfpLaCrga9ZR", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json index b699c70a3aa..0d0475e7d9b 100644 --- a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP321", + "setting_id": "Kx7bqTTuygjpXimK", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt 0.6 nozzle.json index 2039abbf637..ccaab4f0707 100644 --- a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.42mm Standard @Z-Bolt S300 0.6 nozzle;0.42mm Standard @Z-Bolt S400 0.6 nozzle;0.42mm Standard @Z-Bolt S600 0.6 nozzle;0.42mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP022", + "setting_id": "3Y2p4ilbdJWtoet7", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json index 6cd1efbcf92..9a5e4b5aa5b 100644 --- a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP022", + "setting_id": "S5yi1BSlwFr8p5a6", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json index a26ba5ef0dd..c84e8895c09 100644 --- a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP122", + "setting_id": "cM8ZNZGpxY1c3Mlb", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json index eee7a4e160e..20f0a155e32 100644 --- a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP222", + "setting_id": "2XGL3ppk2sbHogrF", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json index b16def4b6ab..ed319c209f4 100644 --- a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP322", + "setting_id": "3IwVpXqkrUPSODSc", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt 0.8 nozzle.json index febe394d8d3..b26b749a815 100644 --- a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.48mm Standard @Z-Bolt S300 0.8 nozzle;0.48mm Standard @Z-Bolt S400 0.8 nozzle;0.48mm Standard @Z-Bolt S600 0.8 nozzle;0.48mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP023", + "setting_id": "Xck8aOlCEcVdSFda", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json index a13302cb3b9..42ddc4ff8de 100644 --- a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Z-Bolt S300 0.8 nozzle", "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP023", + "setting_id": "ttdUbDHxaTJsZWWR", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json index 330169a7dfe..916e7a28e6a 100644 --- a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Z-Bolt S400 0.8 nozzle", "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP123", + "setting_id": "9WxhJWzZzlIc9PWh", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json index f087f8b22ca..32dc534606d 100644 --- a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Z-Bolt S600 0.8 nozzle", "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP223", + "setting_id": "aM8NhaD1tGH4wDiV", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json index 642f16d96f7..21c660ae184 100644 --- a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP323", + "setting_id": "0GGBIejcNifBg5qs", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/iQ.json b/resources/profiles/iQ.json index ff1ad6fbed5..a0a64b3593f 100644 --- a/resources/profiles/iQ.json +++ b/resources/profiles/iQ.json @@ -1,6 +1,6 @@ { "name": "innovatiQ", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "1", "description": "innovatiQ configuration", "machine_model_list": [ diff --git a/resources/profiles/iQ/filament/Fiberthree PACF Pro P1 @iQ TiQ2 0.4 Nozzle.json b/resources/profiles/iQ/filament/Fiberthree PACF Pro P1 @iQ TiQ2 0.4 Nozzle.json index 0925d4f064f..79be89b3870 100644 --- a/resources/profiles/iQ/filament/Fiberthree PACF Pro P1 @iQ TiQ2 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/Fiberthree PACF Pro P1 @iQ TiQ2 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Fiberthree PACF Pro P1 @iQ TiQ2 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "IQS1", + "setting_id": "7YUqT6co3NfvJ8L9", "filament_id": "IQM1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/iQ/filament/Fiberthree PACF Pro P2 @iQ TiQ2 0.4 Nozzle.json b/resources/profiles/iQ/filament/Fiberthree PACF Pro P2 @iQ TiQ2 0.4 Nozzle.json index 00f81390efa..8b07c6af0fd 100644 --- a/resources/profiles/iQ/filament/Fiberthree PACF Pro P2 @iQ TiQ2 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/Fiberthree PACF Pro P2 @iQ TiQ2 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Fiberthree PACF Pro P2 @iQ TiQ2 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "IQS7", + "setting_id": "B5VrAYqX9Dzj5qfV", "filament_id": "IQM7", "instantiation": "true", "compatible_prints": [ diff --git a/resources/profiles/iQ/filament/Grauts HPP4GF25 P1 @iQ TiQ2 0.4 Nozzle.json b/resources/profiles/iQ/filament/Grauts HPP4GF25 P1 @iQ TiQ2 0.4 Nozzle.json index 24a4237eaef..b692152c714 100644 --- a/resources/profiles/iQ/filament/Grauts HPP4GF25 P1 @iQ TiQ2 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/Grauts HPP4GF25 P1 @iQ TiQ2 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Grauts HPP4GF25 P1 @iQ TiQ2 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "IQS1", + "setting_id": "5M829nxsQdq2Sde5", "filament_id": "IQM1", "instantiation": "true", "compatible_prints": [ diff --git a/resources/profiles/iQ/filament/Material4Print ABS Natur P1 @iQ TiQ8 0.4 Nozzle.json b/resources/profiles/iQ/filament/Material4Print ABS Natur P1 @iQ TiQ8 0.4 Nozzle.json index be6fbfa3ea6..e0faf6eb712 100644 --- a/resources/profiles/iQ/filament/Material4Print ABS Natur P1 @iQ TiQ8 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/Material4Print ABS Natur P1 @iQ TiQ8 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Material4Print ABS Natur P1 @iQ TiQ8 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "IQS2", + "setting_id": "2gaJup2jw52l27sv", "filament_id": "IQM2", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/iQ/filament/Polymaker PETG Polymax black P1 @iQ TiQ2 0.4 Nozzle.json b/resources/profiles/iQ/filament/Polymaker PETG Polymax black P1 @iQ TiQ2 0.4 Nozzle.json index 73395d834fc..5226e1e7559 100644 --- a/resources/profiles/iQ/filament/Polymaker PETG Polymax black P1 @iQ TiQ2 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/Polymaker PETG Polymax black P1 @iQ TiQ2 0.4 Nozzle.json @@ -3,9 +3,9 @@ "name": "Polymaker PETG Polymax black P1 @iQ TiQ2 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", + "setting_id": "QefI7iu8bAQ9jzDK", "filament_id": "IQM3", "instantiation": "true", - "settings_id": "IQS3", "activate_air_filtration": [ "0" ], diff --git a/resources/profiles/iQ/filament/VXL90 TiQ2 P2 @iQ TiQ2 0.4 Nozzle.json b/resources/profiles/iQ/filament/VXL90 TiQ2 P2 @iQ TiQ2 0.4 Nozzle.json index c8031f0fb7e..2855f13552d 100644 --- a/resources/profiles/iQ/filament/VXL90 TiQ2 P2 @iQ TiQ2 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/VXL90 TiQ2 P2 @iQ TiQ2 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "VXL90 TiQ2 P2 @iQ TiQ2 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "IQS1011", + "setting_id": "rVzUhxKEDUfGMnQi", "filament_id": "IQM1011", "instantiation": "true", "compatible_prints": [ diff --git a/resources/profiles/iQ/machine/iQ TiQ2 0.25 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ2 0.25 nozzle.json index 01dc15c3cef..69ad99e3c4c 100644 --- a/resources/profiles/iQ/machine/iQ TiQ2 0.25 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ2 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ2 0.25 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "cIJ59rG6rulmYsqA", "instantiation": "true", "printer_settings_id": "iQ TiQ2 0.25 Nozzle", "printer_model": "TiQ2", diff --git a/resources/profiles/iQ/machine/iQ TiQ2 0.4 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ2 0.4 nozzle.json index 8264393b42c..0fe6cccdd73 100644 --- a/resources/profiles/iQ/machine/iQ TiQ2 0.4 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ2 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ2 0.4 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "y69zlNoa8dYh0lzV", "instantiation": "true", "printer_settings_id": "iQ TiQ2 0.4 Nozzle", "printer_model": "TiQ2", diff --git a/resources/profiles/iQ/machine/iQ TiQ2 0.6 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ2 0.6 nozzle.json index 33e5f175c3d..7ed46af6af8 100644 --- a/resources/profiles/iQ/machine/iQ TiQ2 0.6 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ2 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ2 0.6 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "U5GboRipEfd1fsBm", "instantiation": "true", "printer_settings_id": "iQ TiQ2 0.6 Nozzle", "printer_model": "TiQ2", diff --git a/resources/profiles/iQ/machine/iQ TiQ2 0.8 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ2 0.8 nozzle.json index d7e9086ee51..d019b20c24f 100644 --- a/resources/profiles/iQ/machine/iQ TiQ2 0.8 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ2 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ2 0.8 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "Hnv1OfrxjIFdQTpK", "instantiation": "true", "printer_settings_id": "iQ TiQ2 0.8 Nozzle", "printer_model": "TiQ2", diff --git a/resources/profiles/iQ/machine/iQ TiQ8 0.25 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ8 0.25 nozzle.json index c6782e935c4..6a9864b7ac5 100644 --- a/resources/profiles/iQ/machine/iQ TiQ8 0.25 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ8 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ8 0.25 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "5fSAp50K3cdzj1VS", "instantiation": "true", "printer_settings_id": "iQ TiQ8 0.25 Nozzle", "printer_model": "TiQ8", diff --git a/resources/profiles/iQ/machine/iQ TiQ8 0.4 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ8 0.4 nozzle.json index fc60e4275cf..4d0cd066123 100644 --- a/resources/profiles/iQ/machine/iQ TiQ8 0.4 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ8 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ8 0.4 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "sFyLghE6YxFT4Kbm", "instantiation": "true", "printer_settings_id": "iQ TiQ8 0.4 Nozzle", "printer_model": "TiQ8", diff --git a/resources/profiles/iQ/machine/iQ TiQ8 0.6 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ8 0.6 nozzle.json index fdff73069e7..33b9495ea0b 100644 --- a/resources/profiles/iQ/machine/iQ TiQ8 0.6 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ8 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ8 0.6 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "lESAAlMZnASrLHFw", "instantiation": "true", "printer_settings_id": "iQ TiQ8 0.6 Nozzle", "printer_model": "TiQ8", diff --git a/resources/profiles/iQ/machine/iQ TiQ8 0.8 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ8 0.8 nozzle.json index bfd3fdf465a..411aaf2f5b8 100644 --- a/resources/profiles/iQ/machine/iQ TiQ8 0.8 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ8 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ8 0.8 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "KmISSZMOnHtmrfRD", "instantiation": "true", "printer_settings_id": "iQ TiQ8 0.8 Nozzle", "printer_model": "TiQ8", diff --git a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json index 4f42d9e534b..f9d2bad95e4 100644 --- a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json +++ b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle)", "inherits": "fdm_process_tiq_common", "from": "system", + "setting_id": "BH3aGItMozgr9VXA", "instantiation": "true", "default_acceleration": "1500", "enable_extra_bridge_layer": "apply_to_all", diff --git a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PACF Pro Fiberthree (0.4 Nozzle).json b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PACF Pro Fiberthree (0.4 Nozzle).json index df1ee7ff685..9b670487d24 100644 --- a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PACF Pro Fiberthree (0.4 Nozzle).json +++ b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PACF Pro Fiberthree (0.4 Nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @iQ TiQ2 P1 - PACF Pro Fiberthree (0.4 Nozzle)", "inherits": "fdm_process_tiq_common", "from": "system", + "setting_id": "3n8Yio8keohwR0wt", "instantiation": "true", "bridge_flow": "1.07", "bridge_speed": "25", diff --git a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PETG Polymax Polymaker (0.4 Nozzle).json b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PETG Polymax Polymaker (0.4 Nozzle).json index a8cde49a860..7c2c8d9fa29 100644 --- a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PETG Polymax Polymaker (0.4 Nozzle).json +++ b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PETG Polymax Polymaker (0.4 Nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @iQ TiQ2 P1 - PETG Polymax Polymaker (0.4 Nozzle)", "inherits": "fdm_process_tiq_common", "from": "system", + "setting_id": "MjcIXgMAbvXbskhu", "instantiation": "true", "exclude_object": "0", "gcode_label_objects": "0", diff --git a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P2 - PACF Pro Fiberthree + VXL90 Xioneer (0.4 Nozzle).json b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P2 - PACF Pro Fiberthree + VXL90 Xioneer (0.4 Nozzle).json index 84a5908bca7..f2b71249d63 100644 --- a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P2 - PACF Pro Fiberthree + VXL90 Xioneer (0.4 Nozzle).json +++ b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P2 - PACF Pro Fiberthree + VXL90 Xioneer (0.4 Nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @iQ TiQ2 P2 - PACF Pro Fiberthree + VXL90 Xioneer (0.4 Nozzle)", "inherits": "fdm_process_tiq_common", "from": "system", + "setting_id": "xLqfZEouOkHUrK2D", "instantiation": "true", "gap_infill_speed": "70", "independent_support_layer_height": "0", diff --git a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle).json b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle).json index 324bb087a85..376acbb1480 100644 --- a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle).json +++ b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle)", "inherits": "fdm_process_tiq_common", "from": "system", + "setting_id": "2tme6z6FUnpCpm4H", "instantiation": "true", "bridge_flow": "1.4", "bridge_speed": "100", diff --git a/resources/profiles/re3D.json b/resources/profiles/re3D.json index 69a1c87fa96..aff4e932aab 100644 --- a/resources/profiles/re3D.json +++ b/resources/profiles/re3D.json @@ -1,6 +1,6 @@ { "name": "re3D", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "re3D configurations", "machine_model_list": [ diff --git a/resources/profiles/re3D/filament/re3D Greengate rPETG @0.8 nozzle.json b/resources/profiles/re3D/filament/re3D Greengate rPETG @0.8 nozzle.json index 0649a23f8f6..028bf042bbe 100644 --- a/resources/profiles/re3D/filament/re3D Greengate rPETG @0.8 nozzle.json +++ b/resources/profiles/re3D/filament/re3D Greengate rPETG @0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG01", - "setting_id": "GFSG01", + "setting_id": "fRX555Prkdu5ESIp", "name": "re3D Greengate rPETG @0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/re3D/filament/re3D Greengate rPETG @1.75 nozzle.json b/resources/profiles/re3D/filament/re3D Greengate rPETG @1.75 nozzle.json index a409f08bbe2..5ae3d832fff 100644 --- a/resources/profiles/re3D/filament/re3D Greengate rPETG @1.75 nozzle.json +++ b/resources/profiles/re3D/filament/re3D Greengate rPETG @1.75 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG01", - "setting_id": "GFSG01_175", + "setting_id": "6aPU6CYS2cmODkok", "name": "re3D Greengate rPETG @1.75 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/re3D/filament/re3D Greengate rPETG.json b/resources/profiles/re3D/filament/re3D Greengate rPETG.json index 6c56f72fb56..5111e5b9511 100644 --- a/resources/profiles/re3D/filament/re3D Greengate rPETG.json +++ b/resources/profiles/re3D/filament/re3D Greengate rPETG.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pet", "filament_id": "GFG01", - "setting_id": "re3d_greengate_rpetg", + "setting_id": "SdugLw5oy9GB7NID", "filament_settings_id": [ "re3D Greengate rPETG" ], diff --git a/resources/profiles/re3D/filament/re3D PC @0.4 nozzle.json b/resources/profiles/re3D/filament/re3D PC @0.4 nozzle.json index 97e5308b5b0..47a3a44f349 100644 --- a/resources/profiles/re3D/filament/re3D PC @0.4 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PC @0.4 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pc", "filament_id": "GFG99", - "setting_id": "re3d_pc_04", + "setting_id": "6yqRE2eSyER7X82N", "filament_settings_id": [ "re3D PC @0.4 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PC @0.8 nozzle.json b/resources/profiles/re3D/filament/re3D PC @0.8 nozzle.json index 783856f0a32..c1f329f295a 100644 --- a/resources/profiles/re3D/filament/re3D PC @0.8 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PC @0.8 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pc", "filament_id": "GFG99", - "setting_id": "re3d_pc_08", + "setting_id": "YVPbVSiVCzjp5ynf", "filament_settings_id": [ "re3D PC @0.8 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PC.json b/resources/profiles/re3D/filament/re3D PC.json index 12498c0d2b9..36e475e4e9e 100644 --- a/resources/profiles/re3D/filament/re3D PC.json +++ b/resources/profiles/re3D/filament/re3D PC.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pc", "filament_id": "GFG99", - "setting_id": "re3d_pc", + "setting_id": "eSR00TZTotTvJs8l", "filament_settings_id": [ "re3D PC" ], diff --git a/resources/profiles/re3D/filament/re3D PETG @0.4 nozzle.json b/resources/profiles/re3D/filament/re3D PETG @0.4 nozzle.json index 3878394f8de..c275a7517fb 100644 --- a/resources/profiles/re3D/filament/re3D PETG @0.4 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PETG @0.4 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pet", "filament_id": "GFG03", - "setting_id": "re3d_petg_04", + "setting_id": "epcrSCwjgRXMycBx", "filament_settings_id": [ "re3D PETG @0.4 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PETG @0.8 nozzle.json b/resources/profiles/re3D/filament/re3D PETG @0.8 nozzle.json index 61583c2cd32..148f6540fe6 100644 --- a/resources/profiles/re3D/filament/re3D PETG @0.8 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PETG @0.8 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pet", "filament_id": "GFG03", - "setting_id": "re3d_petg_08", + "setting_id": "MoQie1JMlUeH0BwR", "filament_settings_id": [ "re3D PETG @0.8 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PETG.json b/resources/profiles/re3D/filament/re3D PETG.json index 959c5585648..fb4cf4278c7 100644 --- a/resources/profiles/re3D/filament/re3D PETG.json +++ b/resources/profiles/re3D/filament/re3D PETG.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pet", "filament_id": "GFG03", - "setting_id": "re3d_petg", + "setting_id": "msXDK31R8KOvqNqK", "filament_settings_id": [ "re3D PETG" ], diff --git a/resources/profiles/re3D/filament/re3D PLA @0.4 nozzle.json b/resources/profiles/re3D/filament/re3D PLA @0.4 nozzle.json index 9b41a6b8631..1719807f7f5 100644 --- a/resources/profiles/re3D/filament/re3D PLA @0.4 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PLA @0.4 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pla", "filament_id": "GFL99", - "setting_id": "re3d_pla_04", + "setting_id": "M8OOntNjjDBR4W32", "filament_settings_id": [ "re3D PLA @0.4 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PLA @0.8 nozzle.json b/resources/profiles/re3D/filament/re3D PLA @0.8 nozzle.json index a38682a5d00..01e7abbc9a5 100644 --- a/resources/profiles/re3D/filament/re3D PLA @0.8 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PLA @0.8 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pla", "filament_id": "GFL99", - "setting_id": "re3d_pla_08", + "setting_id": "SpF19Y2sSYbPHyxz", "filament_settings_id": [ "re3D PLA @0.8 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PLA.json b/resources/profiles/re3D/filament/re3D PLA.json index bf2894030a2..c3eb7300241 100644 --- a/resources/profiles/re3D/filament/re3D PLA.json +++ b/resources/profiles/re3D/filament/re3D PLA.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pla", "filament_id": "GFL99", - "setting_id": "re3d_pla", + "setting_id": "nPpDwvFg7WQr7K3t", "filament_settings_id": [ "re3D PLA" ], diff --git a/resources/profiles/re3D/filament/re3D rPP @0.8 nozzle.json b/resources/profiles/re3D/filament/re3D rPP @0.8 nozzle.json index 3312aa97024..a49f19e128e 100644 --- a/resources/profiles/re3D/filament/re3D rPP @0.8 nozzle.json +++ b/resources/profiles/re3D/filament/re3D rPP @0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG02", - "setting_id": "GFSG02", + "setting_id": "i9ii0b7qFYWnkGSq", "name": "re3D rPP @0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/re3D/filament/re3D rPP @1.75 nozzle.json b/resources/profiles/re3D/filament/re3D rPP @1.75 nozzle.json index 219216279c1..0bde56c5962 100644 --- a/resources/profiles/re3D/filament/re3D rPP @1.75 nozzle.json +++ b/resources/profiles/re3D/filament/re3D rPP @1.75 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG02", - "setting_id": "GFSG02_175", + "setting_id": "356nOwsfGLI3CNqU", "name": "re3D rPP @1.75 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/re3D/filament/re3D rPP.json b/resources/profiles/re3D/filament/re3D rPP.json index b82b6e46eb2..d2266972403 100644 --- a/resources/profiles/re3D/filament/re3D rPP.json +++ b/resources/profiles/re3D/filament/re3D rPP.json @@ -8,7 +8,7 @@ "PP" ], "filament_id": "GFG02", - "setting_id": "re3d_rpp", + "setting_id": "8PB62qm5Cd3SHLf4", "filament_settings_id": [ "re3D rPP" ], diff --git a/resources/profiles/re3D/machine/re3D Gigabot 4 0.4 nozzle.json b/resources/profiles/re3D/machine/re3D Gigabot 4 0.4 nozzle.json index 4d2b39c0960..a0cbd3c0e2a 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot 4 0.4 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Gigabot 4 0.4 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.26 Standard", "printer_settings_id": "re3d_gigbot4_04", - "setting_id": "re3d_gigbot4_04" + "setting_id": "2FfoXQpNqgdO0psS" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D Gigabot 4 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D Gigabot 4 0.8 nozzle.json index 15f0de246de..e5d847e62cb 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot 4 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Gigabot 4 0.8 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.4 Standard", "printer_settings_id": "re3d_gigbot4_08", - "setting_id": "re3d_gigbot4_08" + "setting_id": "t5Efv7WaUvnPYIAm" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.4 nozzle.json b/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.4 nozzle.json index 763628ee73d..8a5e118bffa 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.4 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.4 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.26 Standard", "printer_settings_id": "re3d_gigabot4_xlt_04", - "setting_id": "re3d_gigabot4_xlt_04" + "setting_id": "UrYpMJff1UulWnSk" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.8 nozzle.json index a12f8784edb..a3fabc985da 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.8 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.4 Standard", "printer_settings_id": "re3d_gigabot4_xlt_08", - "setting_id": "re3d_gigabot4_xlt_08" + "setting_id": "owqU0OvESWbbsBaw" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D GigabotX 2 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D GigabotX 2 0.8 nozzle.json index b0f1e87aad1..8260ee5a1d9 100644 --- a/resources/profiles/re3D/machine/re3D GigabotX 2 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D GigabotX 2 0.8 nozzle.json @@ -29,5 +29,5 @@ ], "default_print_profile": "0.6 Standard", "printer_settings_id": "re3d_gbx_08", - "setting_id": "re3d_gbx_08" + "setting_id": "pASXL7fDFXAG0tkJ" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D GigabotX 2 1.75 nozzle.json b/resources/profiles/re3D/machine/re3D GigabotX 2 1.75 nozzle.json index 4e5bc46cd8b..8a89e9d858d 100644 --- a/resources/profiles/re3D/machine/re3D GigabotX 2 1.75 nozzle.json +++ b/resources/profiles/re3D/machine/re3D GigabotX 2 1.75 nozzle.json @@ -30,5 +30,5 @@ ], "default_print_profile": "1.0 Standard", "printer_settings_id": "re3d_gbx_175", - "setting_id": "re3d_gbx_175" + "setting_id": "ozJ43xjd5bOWGvPH" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 0.8 nozzle.json index d62ce7e6c9a..2d81331c5cb 100644 --- a/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 0.8 nozzle.json @@ -29,5 +29,5 @@ ], "default_print_profile": "0.6 Standard", "printer_settings_id": "re3d_gbx_xlt_08", - "setting_id": "re3d_gbx_xlt_08" + "setting_id": "66tcU44A7VD232wV" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 1.75 nozzle.json b/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 1.75 nozzle.json index 37fd6ca0a9e..63503c01d8c 100644 --- a/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 1.75 nozzle.json +++ b/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 1.75 nozzle.json @@ -30,5 +30,5 @@ ], "default_print_profile": "1.0 Standard", "printer_settings_id": "re3d_gbx_xlt_175", - "setting_id": "re3d_gbx_xlt_175" + "setting_id": "L0PKsbwUEul8gil3" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D Terabot 4 0.4 nozzle.json b/resources/profiles/re3D/machine/re3D Terabot 4 0.4 nozzle.json index bb63aaa995c..105b0f26212 100644 --- a/resources/profiles/re3D/machine/re3D Terabot 4 0.4 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Terabot 4 0.4 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.26 Standard", "printer_settings_id": "re3d_terabot4_04", - "setting_id": "re3d_terabot4_04" + "setting_id": "fjQ7KSytjKq40DSo" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D Terabot 4 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D Terabot 4 0.8 nozzle.json index a9948d83abe..bd83a5ef455 100644 --- a/resources/profiles/re3D/machine/re3D Terabot 4 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Terabot 4 0.8 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.4 Standard", "printer_settings_id": "re3d_terabot4_08", - "setting_id": "re3d_terabot4_08" + "setting_id": "EsfqTpN28Qmlaov3" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D TerabotX 2 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D TerabotX 2 0.8 nozzle.json index f20b8fd8d4a..daa97c2e885 100644 --- a/resources/profiles/re3D/machine/re3D TerabotX 2 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D TerabotX 2 0.8 nozzle.json @@ -29,5 +29,5 @@ ], "default_print_profile": "0.6 Standard", "printer_settings_id": "re3d_tbx2_08", - "setting_id": "re3d_tbx2_08" + "setting_id": "A6jcgezqyq6DE5mi" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D TerabotX 2 1.75 nozzle.json b/resources/profiles/re3D/machine/re3D TerabotX 2 1.75 nozzle.json index 2d5f38fa734..401833977ac 100644 --- a/resources/profiles/re3D/machine/re3D TerabotX 2 1.75 nozzle.json +++ b/resources/profiles/re3D/machine/re3D TerabotX 2 1.75 nozzle.json @@ -30,5 +30,5 @@ ], "default_print_profile": "1.0 Standard", "printer_settings_id": "re3d_tbx2_175", - "setting_id": "re3d_tbx2_175" + "setting_id": "FCcmkG4pnJhjZUBd" } \ No newline at end of file diff --git a/resources/profiles/re3D/process/0.26mm Standard @re3D fdm 0.4.json b/resources/profiles/re3D/process/0.26mm Standard @re3D fdm 0.4.json index 0c26f0c7484..7d443c9730c 100644 --- a/resources/profiles/re3D/process/0.26mm Standard @re3D fdm 0.4.json +++ b/resources/profiles/re3D/process/0.26mm Standard @re3D fdm 0.4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fdm__04_026", + "setting_id": "z8J2jOmdssB8DCBO", "name": "0.26 Standard", "renamed_from": "0.26mm Standard @re3D fdm 0.4", "from": "system", diff --git a/resources/profiles/re3D/process/0.2mm Fine @re3D fdm 0.4.json b/resources/profiles/re3D/process/0.2mm Fine @re3D fdm 0.4.json index a0845ca4022..2734cf33347 100644 --- a/resources/profiles/re3D/process/0.2mm Fine @re3D fdm 0.4.json +++ b/resources/profiles/re3D/process/0.2mm Fine @re3D fdm 0.4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fdm_04_02", + "setting_id": "u9PNexqDf7jWUnnH", "name": "0.2 Fine", "renamed_from": "0.2mm Fine @re3D fdm 0.4", "from": "system", diff --git a/resources/profiles/re3D/process/0.32mm Draft @re3D fdm 0.4.json b/resources/profiles/re3D/process/0.32mm Draft @re3D fdm 0.4.json index 90dbe2bc1e5..3ce98e2e7e1 100644 --- a/resources/profiles/re3D/process/0.32mm Draft @re3D fdm 0.4.json +++ b/resources/profiles/re3D/process/0.32mm Draft @re3D fdm 0.4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fdm_04_032", + "setting_id": "pcKSZbNmByNtOHYX", "name": "0.32 Draft", "renamed_from": "0.32mm Draft @re3D fdm 0.4", "from": "system", diff --git a/resources/profiles/re3D/process/0.3mm Fine @re3D fdm 0.8.json b/resources/profiles/re3D/process/0.3mm Fine @re3D fdm 0.8.json index a6e61edca40..27c2452d195 100644 --- a/resources/profiles/re3D/process/0.3mm Fine @re3D fdm 0.8.json +++ b/resources/profiles/re3D/process/0.3mm Fine @re3D fdm 0.8.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fdm_08_03", + "setting_id": "ChglxET1YwzVuD6a", "name": "0.3 Fine", "renamed_from": "0.2mm Standard @re3D fdm 0.8", "from": "system", diff --git a/resources/profiles/re3D/process/0.4mm Draft @re3D fdm 0.8.json b/resources/profiles/re3D/process/0.4mm Draft @re3D fdm 0.8.json index e75ad362835..d46316ef4ef 100644 --- a/resources/profiles/re3D/process/0.4mm Draft @re3D fdm 0.8.json +++ b/resources/profiles/re3D/process/0.4mm Draft @re3D fdm 0.8.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fdm_08_04", + "setting_id": "hiBgnEuKo4yjK3wp", "name": "0.4 Standard", "renamed_from": "0.4mm Draft @re3D fdm 0.8", "from": "system", diff --git a/resources/profiles/re3D/process/0.6mm Standard @re3D fgf 0.8.json b/resources/profiles/re3D/process/0.6mm Standard @re3D fgf 0.8.json index 801a2b4d281..80cc07b3396 100644 --- a/resources/profiles/re3D/process/0.6mm Standard @re3D fgf 0.8.json +++ b/resources/profiles/re3D/process/0.6mm Standard @re3D fgf 0.8.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fgf_08_06", + "setting_id": "7V7GXJOUd5LT6YNi", "name": "0.6 Standard", "from": "system", "inherits": "fgf_process_re3D_common", diff --git a/resources/profiles/re3D/process/1.0mm Standard @re3D fgf 1.75.json b/resources/profiles/re3D/process/1.0mm Standard @re3D fgf 1.75.json index 35c0c8adedc..5f703baaec1 100644 --- a/resources/profiles/re3D/process/1.0mm Standard @re3D fgf 1.75.json +++ b/resources/profiles/re3D/process/1.0mm Standard @re3D fgf 1.75.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fgf_175_10", + "setting_id": "LKf4K1hjRuLeW7SM", "name": "1.0 Standard", "renamed_from": "1.0mm Standard @re3D fgf 1.75", "from": "system", diff --git a/scripts/assign_vendor_setting_ids.py b/scripts/assign_vendor_setting_ids.py new file mode 100644 index 00000000000..8ed607f5910 --- /dev/null +++ b/scripts/assign_vendor_setting_ids.py @@ -0,0 +1,258 @@ +#!/usr/bin/env python3 +""" +Assign deterministic, globally-unique setting_id to OrcaSlicer system profiles. + +Policy (see AGENTS.md "Critical Constraints"): + * A preset's setting_id is a pure function of its identity: + setting_id = base62_16( uuid5(NAMESPACE, "//") ) + The same value is recomputed on the fly by the C++ app + (Slic3r::generate_preset_setting_id); the two MUST stay byte-identical. The rule + (generate_preset_setting_id, below) is also imported by the validator + (orca_extra_profile_check.py). Uniqueness is therefore automatic: two presets + collide only if they share vendor + type + name, which the validator flags. + * Bambu (BBL) owns the authoritative "G*" id space and is the only reserved vendor: + its ids are never rewritten (preserves backward-compat with Bambu-synced presets). + Every other vendor - including OrcaFilamentLibrary and Custom - follows the + deterministic rule. + * Only instantiated presets (instantiation == "true") carry a setting_id; base / + template profiles do not. + +Only setting_id is rewritten. filament_id is deliberately left untouched: it is a +per-material id, shared across a filament's nozzle variants and inherited from base +templates, so it must not be made per-file unique. + +Run from anywhere: python3 scripts/assign_vendor_setting_ids.py +The script is idempotent: a second run over an unchanged tree produces no diff. +""" + +import json +import os +import re +import sys +import uuid + + +# Deterministic preset setting_id rule. Imported by the validator +# (orca_extra_profile_check.py) and kept byte-identical to the C++ +# Slic3r::generate_preset_setting_id. Dedicated namespace, distinct from the cloud +# namespace (f47ac10b-...) so the two id spaces never coincide; this constant is baked +# into both languages - never change it. +NAMESPACE = uuid.UUID("c1f4d9e2-7a3b-5c8d-9e0f-1a2b3c4d5e6f") +ALPHABET = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" +ID_LENGTH = 16 + + +def generate_preset_setting_id(vendor, type_name, name): + """Deterministic 16-char base62 setting_id for a preset. + + input = f"{vendor}/{type_name}/{name}"; u = uuid5(NAMESPACE, input); + id = the low ID_LENGTH base62 digits of int(u.bytes, "big"), most-significant first. + """ + u = uuid.uuid5(NAMESPACE, f"{vendor}/{type_name}/{name}") + n = int.from_bytes(u.bytes, "big") + digits = [] + for _ in range(ID_LENGTH): + digits.append(ALPHABET[n % 62]) + n //= 62 + return "".join(reversed(digits)) + + +PROFILES_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "resources", "profiles")) + +# Bambu (BBL) is the only reserved vendor: it keeps its authoritative "G*" cloud ids. +RESERVED_VENDORS = {"BBL"} + +PROFILE_SUBDIRS = ("filament", "process", "machine") + + +def iter_profile_files(vendor_dir): + """Yield (json path, type) under a vendor, in a deterministic order. + + type is the subdir name ("filament"/"process"/"machine"), which matches + Preset::get_type_string() on the C++ side. + """ + for sub in PROFILE_SUBDIRS: + base = os.path.join(vendor_dir, sub) + if not os.path.isdir(base): + continue + for root, dirs, files in os.walk(base): + dirs.sort() # deterministic traversal across filesystems + for name in sorted(files): + if name.endswith(".json"): + yield os.path.join(root, name), sub + + +def read_profile(path): + """Return (setting_id, instantiation, name) as present (or None).""" + try: + with open(path, "rb") as f: + data = json.loads(f.read()) + except (ValueError, OSError): + return None, None, None + if not isinstance(data, dict): + return None, None, None + return data.get("setting_id"), data.get("instantiation"), data.get("name") + + +def list_vendors(): + return sorted( + d for d in os.listdir(PROFILES_DIR) + if os.path.isdir(os.path.join(PROFILES_DIR, d)) + ) + + +_JSON_STR = r'"(?:[^"\\]|\\.)*"' + + +def remove_key_line(text, key): + """Remove a top-level `"key": "..."` member, preserving formatting. + + Handles both the common case (member has a trailing comma) and the member + being the LAST in its object (consume the preceding comma instead, so no + dangling comma is left). Returns (new_text, count). + """ + # Member followed by a comma (not the last in the object). + trailing = re.compile( + r'[ \t]*"' + re.escape(key) + r'"[ \t]*:[ \t]*' + _JSON_STR + r'[ \t]*,[ \t]*\r?\n' + ) + new, n = trailing.subn("", text, count=1) + if n: + return new, n + # Member is the last one: drop the preceding comma and the member itself. + leading = re.compile( + r',[ \t]*\r?\n[ \t]*"' + re.escape(key) + r'"[ \t]*:[ \t]*' + _JSON_STR + ) + return leading.subn("", text, count=1) + + +def _remove_key_in_tree(key, should_remove): + """Remove `key` from files where should_remove(sid, inst, text) is True.""" + removed = 0 + for vendor in list_vendors(): + for path, _type in iter_profile_files(os.path.join(PROFILES_DIR, vendor)): + with open(path, "rb") as f: + text = f.read().decode("utf-8") + sid, inst, _name = read_profile(path) + if not should_remove(sid, inst, text): + continue + new_text, n = remove_key_line(text, key) + if n == 0: + raise RuntimeError(f"Could not locate {key} line to remove: {path}") + json.loads(new_text) # fail loudly if removal broke the JSON + with open(path, "wb") as f: + f.write(new_text.encode("utf-8")) + removed += 1 + return removed + + +def remove_misspelled_settings_id(): + """Delete the misspelled "settings_id" key (extra "s") wherever it appears. + + The app never reads that key, so those presets effectively had no setting_id + and get a correct one assigned by the normal pass; here we drop the junk key. + """ + return _remove_key_in_tree( + "settings_id", lambda sid, inst, text: '"settings_id"' in text + ) + + +def strip_base_setting_ids(): + """Remove setting_id from every base profile (instantiation != "true"). + + Convention: only instantiated, user-selectable presets carry a setting_id; + base/template profiles do not. Applied across all vendors. + """ + return _remove_key_in_tree( + "setting_id", lambda sid, inst, text: bool(sid) and inst != "true" + ) + + +def replace_id_value(text, key, new_value): + """Replace the first top-level `"key": "..."` value, preserving all formatting.""" + pattern = re.compile(r'("' + re.escape(key) + r'"\s*:\s*)"(?:[^"\\]|\\.)*"') + repl = lambda m: m.group(1) + json.dumps(new_value, ensure_ascii=False) + new_text, n = pattern.subn(repl, text, count=1) + return new_text, n + + +def insert_setting_id(text, new_id): + """Insert a `"setting_id"` line into a preset that lacks one. + + Placed just before `filament_id` (or, failing that, `instantiation`) so it + matches the canonical key order, reusing that anchor line's indentation and + line ending. Only setting_id is added; filament_id is left untouched. + """ + for key in ("filament_id", "instantiation"): + m = re.search(r'^([ \t]*)"' + key + r'"[ \t]*:.*?(\r?\n)', text, re.MULTILINE) + if m: + line = f'{m.group(1)}"setting_id": {json.dumps(new_id, ensure_ascii=False)},{m.group(2)}' + return text[:m.start()] + line + text[m.start():], 1 + return text, 0 + + +def rewrite_file(path, new_id, has_setting_id): + """Set the preset's setting_id to new_id (replacing or inserting as needed). + + filament_id is intentionally left untouched. Uses binary IO so the file's + original line endings (LF or CRLF) and exact formatting are preserved + byte-for-byte apart from the changed/added line. The result is re-parsed to + guarantee it is still valid JSON. + """ + with open(path, "rb") as f: + text = f.read().decode("utf-8") + if has_setting_id: + text, n = replace_id_value(text, "setting_id", new_id) + else: + text, n = insert_setting_id(text, new_id) + if n == 0: + raise RuntimeError(f"Could not set setting_id on {path}") + json.loads(text) # fail loudly if the edit broke the JSON + with open(path, "wb") as f: + f.write(text.encode("utf-8")) + return True + + +def main(): + # 0. Drop the misspelled "settings_id" key wherever it appears. + typos = remove_misspelled_settings_id() + + # 1. Strip setting_id from base profiles everywhere (only instantiated presets keep one). + stripped = strip_base_setting_ids() + + # 2. Assign the deterministic setting_id to every instantiated preset of every + # non-reserved vendor. + changed = added = 0 + vendors_touched = [] + for vendor in list_vendors(): + if vendor in RESERVED_VENDORS: + continue + vendor_changed = 0 + for path, type_name in iter_profile_files(os.path.join(PROFILES_DIR, vendor)): + sid, inst, name = read_profile(path) + if inst != "true": + continue + if not name: + raise RuntimeError(f"instantiated preset has no \"name\": {path}") + new_id = generate_preset_setting_id(vendor, type_name, name) + if sid == new_id: + continue # already correct - idempotent + rewrite_file(path, new_id, has_setting_id=sid is not None) + changed += 1 + vendor_changed += 1 + if sid is None: + added += 1 + if vendor_changed: + vendors_touched.append((vendor, vendor_changed)) + + print(f"Misspelled settings_id removed : {typos}") + print(f"Base setting_ids stripped : {stripped}") + print(f"Reserved vendors : {sorted(RESERVED_VENDORS)}") + print(f"Vendors updated : {len(vendors_touched)}") + for v, n in vendors_touched: + print(f" {v} ({n} files)") + print(f"Files rewritten : {changed} (of which newly assigned: {added})") + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/scripts/orca_extra_profile_check.py b/scripts/orca_extra_profile_check.py index 7ccc5a1a7f9..cdfc8544a45 100644 --- a/scripts/orca_extra_profile_check.py +++ b/scripts/orca_extra_profile_check.py @@ -3,6 +3,8 @@ import json import argparse from pathlib import Path +from assign_vendor_setting_ids import generate_preset_setting_id + OBSOLETE_KEYS = { "acceleration", "scale", "rotate", "duplicate", "duplicate_grid", "bed_size", "print_center", "g0", "wipe_tower_per_color_wipe", @@ -450,6 +452,101 @@ def check_conflict_keys(profiles_dir, vendor_name): return error_count, warn_count +# Bambu (BBL) keeps its authoritative "G*" cloud ids, which are NOT produced by the +# deterministic formula, so BBL is exempt from the formula match (Rule 2) only. It is +# still checked for presence, uniqueness, base-no-id and the typo key like every other +# vendor. Every other vendor (incl. OrcaFilamentLibrary and Custom) must also match the +# formula. +SETTING_ID_FORMULA_EXEMPT_VENDORS = {"BBL"} +PROFILE_SUBDIRS = ("filament", "process", "machine") + + +def check_setting_id_uniqueness(profiles_dir): + """ + Validate setting_id across every vendor (see scripts/assign_vendor_setting_ids.py): + 1. Every instantiated preset must HAVE a setting_id. (all vendors) + 2. A stored setting_id must equal generate_preset_setting_id(vendor, type, name); a stale + value means the JSON was edited without rerunning assign_vendor_setting_ids.py. + (all vendors EXCEPT the formula-exempt ones, e.g. BBL) + 3. Base profiles (instantiation != "true") must not carry a setting_id. (all vendors) + 4. setting_id must be globally unique - no two files may share one. (all vendors) + 5. No profile may use the misspelled key "settings_id". (all vendors) + Formula-exempt vendors (BBL) keep their authoritative ids, so only Rule 2 is skipped + for them; they are still held to presence, uniqueness, base-no-id and the typo check. + """ + errors = 0 + owners = {} # setting_id -> list of relative_path (every vendor) + for vendor_dir in sorted(profiles_dir.iterdir()): + if not vendor_dir.is_dir(): + continue + vendor = vendor_dir.name + formula_exempt = vendor in SETTING_ID_FORMULA_EXEMPT_VENDORS + for sub in PROFILE_SUBDIRS: + base = vendor_dir / sub + if not base.is_dir(): + continue + for file_path in base.rglob("*.json"): + try: + data = json.loads(file_path.read_bytes()) + except (ValueError, OSError): + continue + if not isinstance(data, dict): + continue + rel = file_path.relative_to(profiles_dir) + # Rule 5: catch the misspelled "settings_id" key. + if "settings_id" in data: + errors += 1 + print_error( + f'profile {rel} uses the misspelled key "settings_id" ' + f'(should be "setting_id"); run assign_vendor_setting_ids.py' + ) + sid = data.get("setting_id") + instantiated = data.get("instantiation") == "true" + if not instantiated: + # Rule 3: base/template profiles must not carry a setting_id. + if sid: + errors += 1 + print_error( + f'base profile {rel} (instantiation != "true") must not have a ' + f'setting_id ("{sid}"); run assign_vendor_setting_ids.py' + ) + continue + # Rule 1: every instantiated preset must have a setting_id. + if not sid: + errors += 1 + print_error( + f"instantiated preset {rel} is missing a setting_id; " + f"run assign_vendor_setting_ids.py" + ) + continue + # Rule 2: the stored id must match the deterministic rule. BBL keeps its + # authoritative G* ids and is exempt from this check only. + if not formula_exempt: + expected = generate_preset_setting_id(vendor, sub, data.get("name", "")) + if sid != expected: + errors += 1 + print_error( + f'setting_id "{sid}" in {rel} does not match the expected ' + f'"{expected}" for {vendor}/{sub}/{data.get("name", "")}; ' + f"run assign_vendor_setting_ids.py" + ) + continue + # Rule 4: collect for the global-uniqueness check below. + owners.setdefault(sid, []).append(rel) + + # Rule 4: a setting_id shared by two files is an error. For managed vendors this means + # a duplicate vendor/type/name; for formula-exempt vendors (BBL) a copy-pasted id. + for sid, locs in sorted(owners.items()): + if len(locs) < 2: + continue + errors += 1 + print_error( + f'setting_id "{sid}" is shared by {len(locs)} files ({sorted(map(str, locs))}); ' + f"setting_id must be globally unique" + ) + return errors + + def main(): parser = argparse.ArgumentParser( description="Check 3D printer profiles for common issues", @@ -505,6 +602,10 @@ def main(): continue run_checks(vendor_dir.name) + # Global (cross-vendor) check: setting_id must be unique and stay in-namespace. + # Runs once over the whole tree regardless of the --vendor filter. + errors_found += check_setting_id_uniqueness(profiles_dir) + # ✨ Output finale in stile "compilatore" print("\n==================== SUMMARY ====================") print_info(f"Checked vendors : {checked_vendor_count}") diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp index 948c779137d..0df49190a75 100644 --- a/src/libslic3r/Preset.cpp +++ b/src/libslic3r/Preset.cpp @@ -39,6 +39,8 @@ #include #include #include +#include +#include #include #include @@ -520,6 +522,39 @@ std::string Preset::get_type_string(Preset::Type type) } } +std::string generate_preset_setting_id(const std::string& vendor, const std::string& type, const std::string& name) +{ + if (vendor.empty() || name.empty()) + return ""; + + // Dedicated namespace for preset setting_ids, distinct from the cloud per-user + // namespace (OrcaCloudServiceAgent). Keep in sync with scripts/assign_vendor_setting_ids.py; + // never change this constant. + static const boost::uuids::uuid vendor_namespace = + boost::uuids::string_generator()("c1f4d9e2-7a3b-5c8d-9e0f-1a2b3c4d5e6f"); + + boost::uuids::name_generator_sha1 gen(vendor_namespace); + boost::uuids::uuid id = gen(vendor + "/" + type + "/" + name); + + // Render the low 16 base62 digits of the 128-bit id, most-significant first. + // Implemented as long-division over the 16 raw (big-endian) bytes so it stays + // portable (no __int128, which MSVC lacks) and matches the Python reference. + static const char ALPHABET[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; + unsigned char bytes[16]; + std::copy(id.begin(), id.end(), bytes); + char out[16]; + for (int pos = 15; pos >= 0; --pos) { + unsigned int rem = 0; + for (int i = 0; i < 16; ++i) { + unsigned int cur = (rem << 8) | bytes[i]; + bytes[i] = static_cast(cur / 62); + rem = cur % 62; + } + out[pos] = ALPHABET[rem]; + } + return std::string(out, 16); +} + std::string Preset::get_iot_type_string(Preset::Type type) { switch (type) { @@ -2196,11 +2231,12 @@ bool PresetCollection::load_user_preset(std::string name, std::mapsecond.empty(); if (preset_inherits_from_parent) { - // This indicates that there is inherits exists but there is no base_id - BOOST_LOG_TRIVIAL(warning) << __FUNCTION__ - << boost::format("can not find base_id, not loading for user preset %1%") % canonical_name; - unlock(); - return false; + // No base_id stored although the preset inherits from a parent. Rather than + // dropping the preset, derive base_id on the fly from the resolved parent's + // setting_id below (the parent is found by its "inherits" name). Only the + // genuinely unresolvable-parent case is skipped, further down. + BOOST_LOG_TRIVIAL(info) << __FUNCTION__ + << boost::format("no base_id for user preset %1%, will derive it from the parent") % canonical_name; } } @@ -2228,6 +2264,11 @@ bool PresetCollection::load_user_preset(std::string name, std::mapdefault_preset_for(cloud_config); if (inherit_preset) { new_config = inherit_preset->config; + // Derive base_id from the resolved parent when it was not supplied. The + // parent's setting_id is itself computed deterministically at load time, so + // this stays stable. Does not affect the preset's own (cloud) setting_id. + if (based_id.empty()) + based_id = inherit_preset->setting_id; if (cloud_filament_id == "null") { cloud_filament_id = inherit_preset->filament_id; } diff --git a/src/libslic3r/Preset.hpp b/src/libslic3r/Preset.hpp index e0d3a52a28e..06534a42ef5 100644 --- a/src/libslic3r/Preset.hpp +++ b/src/libslic3r/Preset.hpp @@ -90,6 +90,16 @@ namespace Slic3r { class AppConfig; class PresetBundle; +// Deterministic preset setting_id: uuid5(vendor/type/name) -> 16 base62 chars. +// Pure function of a system preset's identity, so the value can be assigned by +// scripts/assign_vendor_setting_ids.py and recomputed here when a profile ships +// without it. MUST stay byte-identical to scripts/assign_vendor_setting_ids.py. +// This is NOT the per-user cloud-sync setting_id +// (OrcaCloudServiceAgent::generate_uuid_for_setting_id) - do not conflate them. +std::string generate_preset_setting_id(const std::string& vendor, + const std::string& type, + const std::string& name); + enum ConfigFileType { CONFIG_FILE_TYPE_UNKNOWN, diff --git a/src/libslic3r/PresetBundle.cpp b/src/libslic3r/PresetBundle.cpp index 1ace4db6856..1e2973964b6 100644 --- a/src/libslic3r/PresetBundle.cpp +++ b/src/libslic3r/PresetBundle.cpp @@ -5039,6 +5039,13 @@ std::pair PresetBundle::load_vendor_configs_ loaded.version = current_vendor_profile->config_version; loaded.description = description; loaded.setting_id = setting_id; + // Derive the preset setting_id on the fly when a profile ships without one, + // matching scripts/assign_vendor_setting_ids.py. Only instantiated presets + // carry an id; non-instantiated base profiles return earlier above. This never + // touches the per-user cloud-sync setting_id written into user .info files. + if (loaded.setting_id.empty() && instantiation == "true") + loaded.setting_id = generate_preset_setting_id( + vendor_name, Preset::get_type_string(presets_collection->type()), preset_name); loaded.filament_id = filament_id; loaded.m_from_orca_filament_lib = is_from_lib; BOOST_LOG_TRIVIAL(debug) << __FUNCTION__ << " " << __LINE__ << ", " << loaded.name << " load filament_id: " << filament_id; diff --git a/tests/libslic3r/CMakeLists.txt b/tests/libslic3r/CMakeLists.txt index 9c451e04562..9679168cf3f 100644 --- a/tests/libslic3r/CMakeLists.txt +++ b/tests/libslic3r/CMakeLists.txt @@ -11,6 +11,7 @@ add_executable(${_TEST_NAME}_tests test_clipper_utils.cpp test_config.cpp test_preset_bundle_loading.cpp + test_preset_setting_id.cpp test_elephant_foot_compensation.cpp test_geometry.cpp test_placeholder_parser.cpp diff --git a/tests/libslic3r/test_preset_setting_id.cpp b/tests/libslic3r/test_preset_setting_id.cpp new file mode 100644 index 00000000000..b0e340ead50 --- /dev/null +++ b/tests/libslic3r/test_preset_setting_id.cpp @@ -0,0 +1,41 @@ +#include + +#include "libslic3r/Preset.hpp" + +using namespace Slic3r; + +// Golden vectors from the Python reference generate_preset_setting_id (defined in +// scripts/assign_vendor_setting_ids.py). The C++ generate_preset_setting_id() MUST stay +// byte-identical to it, otherwise app-side on-the-fly ids would diverge from the +// script-assigned ones in the profiles. Regenerate a vector with: +// python3 -c "from assign_vendor_setting_ids import generate_preset_setting_id as g; print(g('Afinia','filament','Afinia ABS @Afinia H400'))" +TEST_CASE("preset setting_id matches the Python reference", "[Preset][setting_id]") { + struct Vec { const char* vendor; const char* type; const char* name; const char* expected; }; + const Vec vectors[] = { + {"Afinia", "filament", "Afinia ABS @Afinia H400", "TL34qSVkppBvMvgH"}, + {"Afinia", "process", "0.20mm Standard @Afinia H400", "FzmtNsy7XQvpd7w0"}, + {"Afinia", "machine", "Afinia H400 0.4 nozzle", "r4FZagW0S8uoaJPd"}, + {"Anycubic", "filament", "Generic PLA @Anycubic Kobra 2", "YIWGGLQ8Oepd30Fv"}, + {"Creality", "process", "0.16mm Optimal @Creality Ender-3 V3", "2Nrbq8PxssUPBLza"}, + {"Elegoo", "machine", "Elegoo Neptune 4 0.4 nozzle", "69QdWuRQwAZk9rFu"}, + }; + + for (const auto& v : vectors) { + const std::string id = generate_preset_setting_id(v.vendor, v.type, v.name); + INFO(v.vendor << "/" << v.type << "/" << v.name); + CHECK(id.size() == 16); + CHECK(id == v.expected); + } +} + +TEST_CASE("preset setting_id is deterministic and identity-sensitive", "[Preset][setting_id]") { + const std::string a = generate_preset_setting_id("VendorX", "filament", "My PLA"); + CHECK(a == generate_preset_setting_id("VendorX", "filament", "My PLA")); // stable + CHECK(a != generate_preset_setting_id("VendorY", "filament", "My PLA")); // vendor matters + CHECK(a != generate_preset_setting_id("VendorX", "process", "My PLA")); // type matters + CHECK(a != generate_preset_setting_id("VendorX", "filament", "My PETG")); // name matters + + // Empty identity yields no id (callers must not assign one). + CHECK(generate_preset_setting_id("", "filament", "My PLA").empty()); + CHECK(generate_preset_setting_id("VendorX", "filament", "").empty()); +}